Skip to content

Commit

Permalink
ipcrm: add page (#2974)
Browse files Browse the repository at this point in the history
  • Loading branch information
lbonanomi authored and sbrl committed May 4, 2019
1 parent 97066cf commit f1043cc
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pages/linux/ipcrm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# ipcrm

> Delete IPC (Inter-process Communication) resources.
- Delete a shared memory segment by ID:

`ipcrm --shmem-id {{shmem_id}}`

- Delete a shared memory segment by key:

`ipcrm --shmem-key {{shmem_key}}`

- Delete an IPC queue by ID:

`ipcrm --queue-id {{ipc_queue_id}}`

- Delete an IPC queue by key:

`ipcrm --queue-key {{ipc_queue_key}}`

- Delete a semaphore by ID:

`ipcrm --semaphore-id {{semaphore_id}}`

- Delete a semaphore by key:

`ipcrm --semaphore-key {{semaphore_key}}`

- Delete all IPC resources:

`ipcrm --all`

0 comments on commit f1043cc

Please sign in to comment.