Home
last modified time | relevance | path

Searched refs:shmctl (Results 1 – 4 of 4) sorted by relevance

/DragonOS/user/apps/test_shm/
H A Dtest_info.c58 if (shmctl(shmid, IPC_STAT, &shminfo2) == -1) in main()
70 if (shmctl(shmid, IPC_INFO, &shmmetainfo) == -1) in main()
85 if (shmctl(shmid, SHM_INFO, &shm_info) == -1) in main()
101 if (shmctl(shmid, SHM_STAT, &shminfo0) == -1) in main()
111 if (shmctl(shmid, SHM_STAT_ANY, &shminfo1) == -1) in main()
129 if (shmctl(shmid, IPC_SET, &shminfo) == -1) in main()
138 if (shmctl(shmid, IPC_RMID, NULL) == -1) in main()
147 if (shmctl(shmid, SHM_LOCK, NULL) == -1) in main()
156 if (shmctl(shmid, SHM_UNLOCK, NULL) == -1) in main()
H A Dsender.c45 shmctl(shmid, IPC_RMID, NULL); in main()
/DragonOS/kernel/src/ipc/
H A Dsyscall.rs478 pub fn shmctl( in shmctl() method
/DragonOS/kernel/src/syscall/
H A Dmod.rs1151 Self::shmctl(id, cmd, user_buf, from_user) in handle()