HomeSort by: relevance | last modified time | path
    Searched refs:IPC_CREAT (Results 1 - 14 of 14) sorted by relevancy

  /src/tests/lib/libc/sys/
t_msgget.c 76 id = msgget(MSG_KEY, IPC_CREAT | 0600);
83 if (msgget(MSG_KEY, IPC_CREAT | IPC_EXCL | 0600) != -1)
92 id = msgget(MSG_KEY, IPC_CREAT | 0600);
123 if (msgget(MSG_KEY, IPC_CREAT | IPC_EXCL | 0600) == -1)
165 id = msgget(MSG_KEY, IPC_CREAT | 0600);
213 buf[i] = msgget(MSG_KEY + i, IPC_CREAT | IPC_EXCL | 0600);
229 buf[i] = msgget(MSG_KEY + i, IPC_CREAT | IPC_EXCL | 0600);
267 id = msgget(MSG_KEY, IPC_CREAT | IPC_EXCL | (int)mode[i]);
298 id = msgget(MSG_KEY, IPC_CREAT | 0600);
t_msgsnd.c 85 id = msgget(MSG_KEY, IPC_CREAT | 0600);
137 id = msgget(MSG_KEY, IPC_CREAT | 0600);
181 id = msgget(MSG_KEY, IPC_CREAT | 0600);
226 id = msgget(MSG_KEY, IPC_CREAT | 0600);
275 id = msgget(MSG_KEY, IPC_CREAT | 0600);
346 id = msgget(MSG_KEY, IPC_CREAT | 0600);
t_msgrcv.c 85 id = msgget(MSG_KEY, IPC_CREAT | 0600);
115 id = msgget(MSG_KEY, IPC_CREAT | 0600);
161 id = msgget(MSG_KEY, IPC_CREAT | 0600);
214 id = msgget(MSG_KEY, IPC_CREAT | 0600);
253 id = msgget(MSG_KEY, IPC_CREAT | 0600);
314 id = msgget(MSG_KEY, IPC_CREAT | 0600);
349 id = msgget(MSG_KEY, IPC_CREAT | 0600);
t_msgctl.c 85 id = msgget(MSG_KEY, IPC_CREAT | 0600);
125 id = msgget(MSG_KEY, IPC_CREAT | 0600);
199 id = msgget(MSG_KEY, IPC_CREAT | 0600);
265 id = msgget(MSG_KEY, IPC_CREAT | 0600);
312 id = msgget(MSG_KEY, IPC_CREAT | 0600);
367 id = msgget(MSG_KEY, IPC_CREAT | 0600);
t_mincore.c 292 id = shmget(IPC_PRIVATE, page, IPC_CREAT | S_IRUSR | S_IWUSR);
318 IPC_CREAT | S_IRUSR | S_IWUSR);
  /src/sys/sys/
ipc.h 90 #define IPC_CREAT 001000 /* create entry if key does not exist */
  /src/tests/kernel/
t_semtimedop.c 64 semid = semget(key, 1, IPC_CREAT | 0600);
117 semid = semget(key, 1, IPC_CREAT | 0600);
178 semid = semget(key, 1, IPC_CREAT | 0600);
248 int semid = semget(key, 1, IPC_CREAT | 0600);
t_sysv.c 206 sender_msqid = msgget(msgkey, IPC_CREAT | 0640);
427 sender_semid = semget(semkey, 1, IPC_CREAT | 0640);
634 IPC_CREAT | 0640)) != -1,
  /src/sys/kern/
sysv_shm.c 628 if ((SCARG(uap, shmflg) & (IPC_CREAT | IPC_EXCL)) ==
629 (IPC_CREAT | IPC_EXCL))
676 if ((SCARG(uap, shmflg) & IPC_CREAT) == 0) {
sysv_msg.c 621 if ((msgflg & IPC_CREAT) && (msgflg & IPC_EXCL)) {
637 if (key == IPC_PRIVATE || (msgflg & IPC_CREAT)) {
sysv_sem.c 739 if ((semflg & IPC_CREAT) && (semflg & IPC_EXCL)) {
749 if (key == IPC_PRIVATE || (semflg & IPC_CREAT)) {
  /src/sys/compat/ultrix/
ultrix_misc.c 676 & (IPC_CREAT|IPC_EXCL|IPC_NOWAIT);
  /src/tests/lib/libpthread/
t_cancellation.c 393 RL(msgid = msgget(IPC_PRIVATE, IPC_CREAT));
406 RL(msgid = msgget(IPC_PRIVATE, IPC_CREAT));
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 1302 int id = shmget(IPC_PRIVATE, 4096, 0644 | IPC_CREAT);
1341 int id = shmget(IPC_PRIVATE, kShmSize, 0644 | IPC_CREAT);

Completed in 23 milliseconds