Searched defs:shmid (Results 1 - 4 of 4) sorted by relevance

/external/fio/
H A Dbackend.c1578 static int fork_main(int shmid, int offset) argument
1584 data = shmat(shmid, NULL, 0);
/external/stressapptest/src/
H A Dos.cc447 int shmid; local
450 if ((shmid = shmget(2, length,
461 shmaddr = shmat(shmid, NULL, NULL);
468 if (shmctl(shmid, IPC_RMID, NULL) < 0) {
478 shmid_ = shmid;
481 shmid, shmaddr);
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc1137 DECLARE_REAL(int, shmctl, int shmid, int cmd, void *buf)
1139 INTERCEPTOR(void *, shmat, int shmid, const void *shmaddr, int shmflg) { argument
1141 void *p = REAL(shmat)(shmid, shmaddr, shmflg);
1144 int res = REAL(shmctl)(shmid, shmctl_ipc_stat, &ds);
/external/fio/os/windows/
H A Dposix.c562 void *shmat(int shmid, const void *shmaddr, int shmflg) argument
566 mapAddr = MapViewOfFile(fileMappings[shmid], FILE_MAP_ALL_ACCESS, 0, 0, 0);
596 int shmctl(int shmid, int cmd, struct shmid_ds *buf) argument
599 fileMappings[shmid] = INVALID_HANDLE_VALUE;

Completed in 232 milliseconds