Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/arch/arm64/include/uapi/asm/mman.h
26299 views
1
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2
#ifndef TOOLS_ARCH_ARM64_UAPI_ASM_MMAN_FIX_H
3
#define TOOLS_ARCH_ARM64_UAPI_ASM_MMAN_FIX_H
4
#include <uapi/asm-generic/mman.h>
5
/* MAP_32BIT is undefined on arm64, fix it for perf */
6
#define MAP_32BIT 0
7
#endif
8
9