diff options
author | ed <ed@FreeBSD.org> | 2009-07-02 18:24:37 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2009-07-02 18:24:37 +0000 |
commit | f11b84cef6b1e82b2663f5944efa8e2802efe20e (patch) | |
tree | 933489045c189c54d72428dec3d1247ca2986f8e /sys/amd64 | |
parent | 350f96b4bfb4f448e5d1daefbab2238552c76cf9 (diff) | |
download | FreeBSD-src-f11b84cef6b1e82b2663f5944efa8e2802efe20e.zip FreeBSD-src-f11b84cef6b1e82b2663f5944efa8e2802efe20e.tar.gz |
Enable POSIX semaphores on all non-embedded architectures by default.
More applications (including Firefox) seem to depend on this nowadays,
so not having this enabled by default is a bad idea.
Proposed by: miwi
Patch by: Florian Smeets <flo kasimir com>
Approved by: re (kib)
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/conf/GENERIC | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index be68876d..43b3960 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -65,6 +65,7 @@ options STACK # stack(9) support options SYSVSHM # SYSV-style shared memory options SYSVMSG # SYSV-style message queues options SYSVSEM # SYSV-style semaphores +options P1003_1B_SEMAPHORES # POSIX-style semaphores options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions options PRINTF_BUFR_SIZE=128 # Prevent printf output being interspersed. options KBD_INSTALL_CDEV # install a CDEV entry in /dev |