MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / lwp_shmrm

Function lwp_shmrm

components/lwp/lwp_shm.c:257–264  ·  view source on GitHub ↗

A wrapping function, free the shared memory with interrupt disabled. */

Source from the content-addressed store, hash-verified

255
256/* A wrapping function, free the shared memory with interrupt disabled. */
257int 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. */
267static void *_lwp_shmat(int id, void *shm_vaddr)

Callers 1

sys_shmrmFunction · 0.85

Calls 1

_lwp_shmrmFunction · 0.85

Tested by

no test coverage detected