mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
Zig calls it aarch64. Linux calls it arm64. Currently lib/libc/include has both arm64 and aarch64, which is quite confusing. tools/update-linux-headers.zig was executed against the latest stable linux patch version, therefore some other minor header updates. I will update the wiki on how to do it once this PR is accepted.
10 lines
No EOL
267 B
C
Vendored
10 lines
No EOL
267 B
C
Vendored
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef __ASM_MMAN_H
|
|
#define __ASM_MMAN_H
|
|
|
|
#include <asm-generic/mman.h>
|
|
|
|
#define PROT_BTI 0x10 /* BTI guarded page */
|
|
#define PROT_MTE 0x20 /* Normal Tagged mapping */
|
|
|
|
#endif /* ! _UAPI__ASM_MMAN_H */ |