Home
last modified time | relevance | path

Searched refs:SHM_EXEC (Results 1 – 7 of 7) sorted by relevance

/external/strace/xlat/
Dshm_flags.h6 #if defined(SHM_EXEC) || (defined(HAVE_DECL_SHM_EXEC) && HAVE_DECL_SHM_EXEC)
8 static_assert((SHM_EXEC) == (0100000), "SHM_EXEC != 0100000");
11 # define SHM_EXEC 0100000
33 XLAT(SHM_EXEC),
Dshm_flags.in4 SHM_EXEC 0100000
/external/strace/tests-mx32/
Dshmxt.c21 #ifndef SHM_EXEC
22 # define SHM_EXEC 0100000 macro
72 shmaddr = shmat(id, NULL, SHM_RDONLY|SHM_EXEC); in main()
/external/strace/tests-m32/
Dshmxt.c21 #ifndef SHM_EXEC
22 # define SHM_EXEC 0100000 macro
72 shmaddr = shmat(id, NULL, SHM_RDONLY|SHM_EXEC); in main()
/external/strace/tests/
Dshmxt.c21 #ifndef SHM_EXEC
22 # define SHM_EXEC 0100000 macro
72 shmaddr = shmat(id, NULL, SHM_RDONLY|SHM_EXEC); in main()
/external/kernel-headers/original/uapi/linux/
Dshm.h81 #define SHM_EXEC 0100000 /* execution access */ macro
/external/strace/
DChangeLog10710 Provide fallback definitions for SHM_EXEC constant.
10711 Although SHM_EXEC is available in <linux/shm.h> since kernel commit
10713 provide SHM_EXEC until commit glibc-2.10~238.
10715 * xlat/shm_flags.in (SHM_EXEC): Add fallback definition.
10716 * tests/shmxt.c (SHM_EXEC): Likewise.
10721 * xlat/shm_flags.in: Add SHM_EXEC introduced by kernel commit
10727 * tests/shmxt.c (main): Update expected output, check SHM_EXEC decoding.