HomeSort by relevance Sort by last modified time
    Searched refs:IPC_RMID (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/strace/xlat/
msgctl_flags.in 2 IPC_RMID 0
shmctl_flags.in 2 IPC_RMID 0
semctl_flags.in 2 IPC_RMID 0
msgctl_flags.h 6 #if defined(IPC_RMID) || (defined(HAVE_DECL_IPC_RMID) && HAVE_DECL_IPC_RMID)
8 static_assert((IPC_RMID) == (0), "IPC_RMID != 0");
11 # define IPC_RMID 0
69 XLAT(IPC_RMID),
shmctl_flags.h 6 #if defined(IPC_RMID) || (defined(HAVE_DECL_IPC_RMID) && HAVE_DECL_IPC_RMID)
8 static_assert((IPC_RMID) == (0), "IPC_RMID != 0");
11 # define IPC_RMID 0
83 XLAT(IPC_RMID),
semctl_flags.h 6 #if defined(IPC_RMID) || (defined(HAVE_DECL_IPC_RMID) && HAVE_DECL_IPC_RMID)
8 static_assert((IPC_RMID) == (0), "IPC_RMID != 0");
11 # define IPC_RMID 0
116 XLAT(IPC_RMID),
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/sys/shm_h/
12-1-buildonly.c 15 * IPC_RMID
38 #ifndef IPC_RMID
39 #error IPC_RMID not defined
  /external/ltp/testcases/kernel/containers/sysvipc/
sem_comm.c 72 semctl(id, 0, IPC_RMID);
84 semctl(id, 0, IPC_RMID);
94 semctl(id, 0, IPC_RMID);
116 semctl(id, 0, IPC_RMID);
131 semctl(id, 0, IPC_RMID);
142 semctl(id, 0, IPC_RMID);
shm_comm.c 72 shmctl(id, IPC_RMID, NULL);
88 shmctl(id, IPC_RMID, NULL);
105 shmctl(id, IPC_RMID, NULL);
117 shmctl(id, IPC_RMID, NULL);
msg_comm.c 79 msgctl(id, IPC_RMID, NULL);
91 msgctl(id, IPC_RMID, NULL);
102 msgctl(id, IPC_RMID, NULL);
121 msgctl(id, IPC_RMID, NULL);
128 msgctl(id, IPC_RMID, NULL);
  /external/ltp/testcases/kernel/syscalls/ipc/msgctl/
msgctl03.c 19 * msgctl13 - test for IPC_RMID
34 TEST(msgctl(msg_q, IPC_RMID, NULL));
36 tst_res(TFAIL | TTERRNO, "msgctl(IPC_RMID) failed");
40 tst_res(TPASS, "msgctl(IPC_RMID)");
msgctl04.c 58 {&msg_id3, IPC_RMID, NULL, EPERM},
100 SAFE_MSGCTL(msg_id1, IPC_RMID, NULL);
103 SAFE_MSGCTL(msg_id2, IPC_RMID, NULL);
107 SAFE_MSGCTL(msg_id3, IPC_RMID, NULL);
  /external/linux-kselftest/tools/testing/selftests/vm/
hugepage-shm.c 71 shmctl(shmid, IPC_RMID, NULL);
94 shmctl(shmid, IPC_RMID, NULL);
98 shmctl(shmid, IPC_RMID, NULL);
  /external/ltp/testcases/kernel/mem/hugetlb/hugeshmat/
hugeshmat05.c 73 shmctl(shmid, IPC_RMID, NULL);
82 shmctl(shmid, IPC_RMID, NULL);
86 shmctl(shmid, IPC_RMID, NULL);
hugeshmat04.c 70 shmctl(shmid, IPC_RMID, NULL);
81 shmctl(shmid, IPC_RMID, NULL);
  /external/ltp/testcases/kernel/syscalls/ipc/shmctl/
shmctl05.c 47 SAFE_SHMCTL(id, IPC_RMID, NULL);
58 tst_syscall(__NR_shmctl, 0xF00F, IPC_RMID, NULL);
103 shmctl(0xF00F, IPC_RMID, NULL);
  /bionic/tests/headers/posix/
sys_ipc_h.c 56 MACRO(IPC_RMID);
  /external/compiler-rt/test/asan/TestCases/Linux/
shmctl.cc 20 assert(-1 != shmctl(id, IPC_RMID, 0));
  /external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/
ptrace-tm-spr.c 143 shmctl(shm_id, IPC_RMID, NULL);
144 shmctl(shm_id1, IPC_RMID, NULL);
151 shmctl(shm_id, IPC_RMID, NULL);
152 shmctl(shm_id1, IPC_RMID, NULL);
  /external/ltp/testcases/kernel/syscalls/ipc/msgsnd/
msgsnd06.c 74 SAFE_MSGCTL(queue_id, IPC_RMID, NULL);
87 SAFE_MSGCTL(queue_id, IPC_RMID, NULL);
  /bionic/tests/
sys_sem_test.cpp 37 if (semctl(-1, 0, IPC_RMID) == -1 && errno == ENOSYS) {
74 ASSERT_EQ(0, semctl(id, 0, IPC_RMID));
85 ASSERT_EQ(-1, semctl(-1, 0, IPC_RMID));
  /external/ltp/testcases/kernel/syscalls/ipc/lib/
libipc.c 89 if (msgctl(queue_id, IPC_RMID, NULL) == -1) {
131 if (semctl(sem_id, 0, IPC_RMID, arr) == -1) {
167 if (shmctl(shm_id, IPC_RMID, NULL) == -1) {
  /external/toybox/toys/pending/
ipcrm.c 62 if (ipc == 1) ret = shmctl(id, IPC_RMID, NULL);
63 else if (ipc == 2) ret = msgctl(id, IPC_RMID, NULL);
64 else if (ipc == 3) ret = semctl(id, 0, IPC_RMID, NULL);
  /bionic/libc/kernel/uapi/linux/
ipc.h 38 #define IPC_RMID 0
  /external/kernel-headers/original/uapi/linux/
ipc.h 39 #define IPC_RMID 0 /* remove resource */

Completed in 313 milliseconds

1 2 3 4 5 6