A wrapping function, free the shared memory with interrupt disabled. */
| 255 | |
| 256 | /* A wrapping function, free the shared memory with interrupt disabled. */ |
| 257 | int lwp_shmrm(int id) |
| 258 | { |
| 259 | int ret = 0; |
| 260 | |
| 261 | ret = _lwp_shmrm(id); |
| 262 | |
| 263 | return ret; |
| 264 | } |
| 265 | |
| 266 | /* Map the shared memory specified by 'id' to the specified virtual address. */ |
| 267 | static void *_lwp_shmat(int id, void *shm_vaddr) |
no test coverage detected