2019-05-04 09:49:20 -04:00
|
|
|
# ipcrm
|
|
|
|
|
|
|
|
> Delete IPC (Inter-process Communication) resources.
|
2021-09-02 15:33:49 -03:00
|
|
|
> More information: <https://manned.org/ipcrm>.
|
2019-05-04 09:49:20 -04:00
|
|
|
|
|
|
|
- Delete a shared memory segment by ID:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`ipcrm {{[-m|--shmem-id]}} {{shmem_id}}`
|
2019-05-04 09:49:20 -04:00
|
|
|
|
|
|
|
- Delete a shared memory segment by key:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`ipcrm {{[-M|--shmem-key]}} {{shmem_key}}`
|
2019-05-04 09:49:20 -04:00
|
|
|
|
|
|
|
- Delete an IPC queue by ID:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`ipcrm {{[-q|--queue-id]}} {{ipc_queue_id}}`
|
2019-05-04 09:49:20 -04:00
|
|
|
|
|
|
|
- Delete an IPC queue by key:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`ipcrm {{[-Q|--queue-key]}} {{ipc_queue_key}}`
|
2019-05-04 09:49:20 -04:00
|
|
|
|
|
|
|
- Delete a semaphore by ID:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`ipcrm {{[-s|--semaphore-id]}} {{semaphore_id}}`
|
2019-05-04 09:49:20 -04:00
|
|
|
|
|
|
|
- Delete a semaphore by key:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`ipcrm {{[-S|--semaphore-key]}} {{semaphore_key}}`
|
2019-05-04 09:49:20 -04:00
|
|
|
|
|
|
|
- Delete all IPC resources:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`ipcrm {{[-a|--all]}}`
|