aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/ipcs/ipc.h
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of the requirement to include SysV IPC headers with _KERNELBrooks Davis2018-02-161-0/+3
| | | | | | | | | | | defined in ipcrm by introducing _WANT_SYSVxxx_INTERNALS defines. Reviewed by: jhb Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D14271 Notes: svn path=/head/; revision=329348
* various: general adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-1/+3
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. No functional change intended. Notes: svn path=/head/; revision=326276
* ipcs: fix builds that use gccEitan Adler2015-04-141-3/+0
| | | | | | | | | | gcc gets annoyed by duplicate declarations Reported by: sbruno Reviewed by: sbruno Notes: svn path=/head/; revision=281517
* ipcs: fix warnings (WARNS=1 -> WARNS=6)Eitan Adler2015-04-131-1/+1
| | | | | | | | | | | | - fix shadow warnings - change type from off_t to size_t which is more correct and avoids signed/unsigned compare - use new initializer format to avoid "missing values" warning Reviewed by: jhb Notes: svn path=/head/; revision=281501
* Spelling fixes for usr.bin/Ulrich Spörlein2011-12-301-1/+1
| | | | Notes: svn path=/head/; revision=228992
* Add the ability to clean up all shared memory segments which areEdwin Groothuis2007-12-251-0/+71
unused in one go. From the original PR: I've observed that linux apps running under the linuxulator have a habit of leaving behind shared memory segments which are unused, but which eventually cause the system to run out of free segments and these apps will stop working. ipcrm(1) currently only allows removal of unused message queues, shared memory segments and semaphores on an individual basis, or those having a matching (non-zero) key. However it would often be convenient to just do a complete cleanup of everything, usually as root. PR: bin/118292 Submitted by: Callum Gibson <callumgibson@optusnet.com.au> Not reviewed by: grog@ Approved by: grog@ Notes: svn path=/head/; revision=174891