1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

ipcmk: add page (#2973)

This commit is contained in:
lbonanomi 2019-05-05 08:21:50 -04:00 committed by Starbeamrainbowlabs
parent 9a117bd74a
commit be3f9bb817

19
pages/linux/ipcmk.md Normal file
View file

@ -0,0 +1,19 @@
# ipcmk
> Create IPC (Inter-process Communication) resources.
- Create a shared memory segment:
`ipcmk --shmem {{segment_size_in_bytes}}`
- Create a semaphore:
`ipcmk --semaphore {{element_size}}`
- Create a message queue:
`ipcmk --queue`
- Create a shared memory segment with specific permissions (default is 0644):
`ipcmk --shmem {{segment_size_in_bytes}} {{octal_permissons}}`