
We've had support for using unnamed POSIX semaphores instead of System V semaphores for quite some time, but it was not used by default on any platform. Since many systems have rather small limits on the number of SysV semaphores allowed, it seems desirable to switch to POSIX semaphores where they're available and don't create performance or kernel resource problems. Experimentation by me shows that unnamed POSIX semaphores are at least as good as SysV semaphores on Linux, and we previously had a report from Maksym Sobolyev that FreeBSD is significantly worse with SysV semaphores than POSIX ones. So adjust those two platforms to use unnamed POSIX semaphores, if configure can find the necessary library functions. If this goes well, we may switch other platforms as well, but it would be advisable to test them individually first. It's not currently contemplated that we'd encourage users to select a semaphore API for themselves, but anyone who wants to experiment can add PREFERRED_SEMAPHORES=UNNAMED_POSIX (or NAMED_POSIX, or SYSV) to their configure command line to do so. I also tweaked configure to report which API it's selected, mainly so that we can tell that from buildfarm reports. I did not touch the user documentation's discussion about semaphores; that will need some adjustment once the dust settles. Discussion: <8536.1475704230@sss.pgh.pa.us>
36 lines
986 B
Plaintext
36 lines
986 B
Plaintext
# src/template/linux
|
|
|
|
# Prefer unnamed POSIX semaphores if available, unless user overrides choice
|
|
if test x"$PREFERRED_SEMAPHORES" = x"" ; then
|
|
PREFERRED_SEMAPHORES=UNNAMED_POSIX
|
|
fi
|
|
|
|
# Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise
|
|
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
|
|
|
|
# If --enable-profiling is specified, we need -DLINUX_PROFILE
|
|
PLATFORM_PROFILE_FLAGS="-DLINUX_PROFILE"
|
|
|
|
if test "$SUN_STUDIO_CC" = "yes" ; then
|
|
CC="$CC -Xa" # relaxed ISO C mode
|
|
CFLAGS="-v" # -v is like gcc -Wall
|
|
if test "$enable_debug" != yes; then
|
|
CFLAGS="$CFLAGS -O" # any optimization breaks debug
|
|
fi
|
|
|
|
# Pick the right test-and-set (TAS) code for the Sun compiler.
|
|
# We would like to use in-line assembler, but the compiler
|
|
# requires *.il files to be on every compile line, making
|
|
# the build system too fragile.
|
|
case $host_cpu in
|
|
sparc)
|
|
need_tas=yes
|
|
tas_file=sunstudio_sparc.s
|
|
;;
|
|
i?86|x86_64)
|
|
need_tas=yes
|
|
tas_file=sunstudio_x86.s
|
|
;;
|
|
esac
|
|
fi
|