Searched refs:shmaddr (Results 1 – 2 of 2) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/sysvipc/ |
A D | shm.c | 36 _syscall3(void *, shmat, int, shmid, const void *,shmaddr, int, shmflg) in _syscall3() argument 41 void * shmat (int shmid, const void *shmaddr, int shmflg) in _syscall3() 46 retval = __syscall_ipc(IPCOP_shmat, shmid, shmflg, (int) &raddr, (void *) shmaddr, 0); in _syscall3() 74 _syscall1(int, shmdt, const void *, shmaddr) 76 int shmdt (const void *shmaddr) 78 return __syscall_ipc(IPCOP_shmdt, 0, 0, 0, (void *) shmaddr, 0);
|
/l4re-core-master/libc_backends/lib/misc/ |
A D | misc.c | 443 void *shmat(int shmid, const void *shmaddr, int shmflg) in shmat() argument 445 printf("%s(%d, %p, %d)\n", __func__, shmid, shmaddr, shmflg); in shmat() 457 int shmdt(const void *shmaddr) in shmdt() argument 459 printf("%s(%p)\n", __func__, shmaddr); in shmdt()
|
Completed in 3 milliseconds