Remove $FreeBSD$: one-line bare tagRemove /^\s*\$FreeBSD\$$\n/
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: one-line .h patternRemove /^\s*\*+\s*\$FreeBSD\$.*$\n/
semget(): Check for [EEXIST] error first.Although POSIX literally permits failing with [EINVAL] if IPC_CREAT andIPC_EXCL were both passed, the semaphore set already exists and has fewersemaphores
semget(): Check for [EEXIST] error first.Although POSIX literally permits failing with [EINVAL] if IPC_CREAT andIPC_EXCL were both passed, the semaphore set already exists and has fewersemaphores than nsems, this does not allow an application to retry safely:if the [EINVAL] is actually because of the semmsl limit, an infinite loopwould result.PR: 206927
show more ...
NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn't a simple mechanical change, and will
NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn't a simple mechanical change, and will beaddressed in a future commit.
According to shared memory man pages, advice including <sys/types.h>instead of <sys/param.h>
The NetBSD Foundation has granted permission to remove clause 3 and 4 fromtheir software.Obtained from: NetBSD
Start the dreaded NOFOO -> NO_FOO conversion.OK'ed by: core
For variables that are only checked with defined(), don't provideany fake value.
Add regression tests for sysvipc.Submitted by: Hiten Pandya <hiten@uk.FreeBSD.org>Obtained from: NetBSD