blob: 7ea7b61cdcb75502d38013ad4e6fe3bf0c778d7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//===---------- Linux implementation of the Linux pkey_mprotect function --===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "src/__support/macros/properties/architectures.h"
#if defined(LIBC_TARGET_ARCH_IS_X86_64)
#include "src/sys/mman/linux/x86_64/pkey_common.h"
#else
#include "src/sys/mman/linux/generic/pkey_common.h"
#endif
|