diff options
Diffstat (limited to '')
-rw-r--r-- | sys-utils/ipcmk.1 | 88 | ||||
-rw-r--r-- | sys-utils/ipcmk.1.adoc | 61 |
2 files changed, 149 insertions, 0 deletions
diff --git a/sys-utils/ipcmk.1 b/sys-utils/ipcmk.1 new file mode 100644 index 0000000..c434347 --- /dev/null +++ b/sys-utils/ipcmk.1 @@ -0,0 +1,88 @@ +'\" t +.\" Title: ipcmk +.\" Author: [see the "AUTHOR(S)" section] +.\" Generator: Asciidoctor 2.0.15 +.\" Date: 2022-05-11 +.\" Manual: User Commands +.\" Source: util-linux 2.38.1 +.\" Language: English +.\" +.TH "IPCMK" "1" "2022-05-11" "util\-linux 2.38.1" "User Commands" +.ie \n(.g .ds Aq \(aq +.el .ds Aq ' +.ss \n[.ss] 0 +.nh +.ad l +.de URL +\fI\\$2\fP <\\$1>\\$3 +.. +.als MTO URL +.if \n[.g] \{\ +. mso www.tmac +. am URL +. ad l +. . +. am MTO +. ad l +. . +. LINKSTYLE blue R < > +.\} +.SH "NAME" +ipcmk \- make various IPC resources +.SH "SYNOPSIS" +.sp +\fBipcmk\fP [options] +.SH "DESCRIPTION" +.sp +\fBipcmk\fP allows you to create System V inter\-process communication (IPC) objects: shared memory segments, message queues, and semaphore arrays. +.SH "OPTIONS" +.sp +Resources can be specified with these options: +.sp +\fB\-M\fP, \fB\-\-shmem\fP \fIsize\fP +.RS 4 +Create a shared memory segment of \fIsize\fP bytes. The \fIsize\fP argument may be followed by the multiplicative suffixes KiB (=1024), MiB (=1024*1024), and so on for GiB, etc. (the "iB" is optional, e.g., "K" has the same meaning as "KiB") or the suffixes KB (=1000), MB (=1000*1000), and so on for GB, etc. +.RE +.sp +\fB\-Q\fP, \fB\-\-queue\fP +.RS 4 +Create a message queue. +.RE +.sp +\fB\-S\fP, \fB\-\-semaphore\fP \fInumber\fP +.RS 4 +Create a semaphore array with \fInumber\fP of elements. +.RE +.sp +Other options are: +.sp +\fB\-p\fP, \fB\-\-mode\fP \fImode\fP +.RS 4 +Access permissions for the resource. Default is 0644. +.RE +.sp +\fB\-h\fP, \fB\-\-help\fP +.RS 4 +Display help text and exit. +.RE +.sp +\fB\-V\fP, \fB\-\-version\fP +.RS 4 +Print version and exit. +.RE +.SH "AUTHORS" +.sp +.MTO "hayden.james\(atgmail.com" "Hayden A. James" "" +.SH "SEE ALSO" +.sp +\fBipcrm\fP(1), +\fBipcs\fP(1), +\fBsysvipc\fP(7) +.SH "REPORTING BUGS" +.sp +For bug reports, use the issue tracker at \c +.URL "https://github.com/util\-linux/util\-linux/issues" "" "." +.SH "AVAILABILITY" +.sp +The \fBipcmk\fP command is part of the util\-linux package which can be downloaded from \c +.URL "https://www.kernel.org/pub/linux/utils/util\-linux/" "Linux Kernel Archive" "."
\ No newline at end of file diff --git a/sys-utils/ipcmk.1.adoc b/sys-utils/ipcmk.1.adoc new file mode 100644 index 0000000..605b928 --- /dev/null +++ b/sys-utils/ipcmk.1.adoc @@ -0,0 +1,61 @@ +//po4a: entry man manual +//// +Copyright 2008 Hayden A. James (hayden.james@gmail.com) +May be distributed under the GNU General Public License +//// += ipcmk(1) +:doctype: manpage +:man manual: User Commands +:man source: util-linux {release-version} +:page-layout: base +:command: ipcmk + +== NAME + +ipcmk - make various IPC resources + +== SYNOPSIS + +*ipcmk* [options] + +== DESCRIPTION + +*ipcmk* allows you to create System V inter-process communication (IPC) objects: shared memory segments, message queues, and semaphore arrays. + +== OPTIONS + +Resources can be specified with these options: + +*-M*, *--shmem* _size_:: +Create a shared memory segment of _size_ bytes. The _size_ argument may be followed by the multiplicative suffixes KiB (=1024), MiB (=1024*1024), and so on for GiB, etc. (the "iB" is optional, e.g., "K" has the same meaning as "KiB") or the suffixes KB (=1000), MB (=1000*1000), and so on for GB, etc. + +*-Q*, *--queue*:: +Create a message queue. + +*-S*, *--semaphore* _number_:: +Create a semaphore array with _number_ of elements. + +Other options are: + +*-p*, *--mode* _mode_:: +Access permissions for the resource. Default is 0644. + +include::man-common/help-version.adoc[] + +== AUTHORS + +mailto:hayden.james@gmail.com[Hayden A. James] + +== SEE ALSO + +*ipcrm*(1), +*ipcs*(1), +*sysvipc*(7) + +include::man-common/bugreports.adoc[] + +include::man-common/footer.adoc[] + +ifdef::translation[] +include::man-common/translation.adoc[] +endif::[] |