about summary refs log tree commit diff
path: root/sysdeps/mach/hurd/bits
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-02-09 22:44:08 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-02-10 01:03:54 +0000
commit5e77ec7c6e64d67f048caa5d4dd81f10fca3dffc (patch)
tree1cd030eb9cda30d4dd7cf0e7533ee4fe0c0063f0 /sysdeps/mach/hurd/bits
parent819bb5e660bc18fe8b39c5ffd4b9b37f6e69f4cb (diff)
downloadglibc-5e77ec7c6e64d67f048caa5d4dd81f10fca3dffc.tar.gz
glibc-5e77ec7c6e64d67f048caa5d4dd81f10fca3dffc.tar.xz
glibc-5e77ec7c6e64d67f048caa5d4dd81f10fca3dffc.zip
htl: Add support for semaphore maximum value
Diffstat (limited to 'sysdeps/mach/hurd/bits')
-rw-r--r--sysdeps/mach/hurd/bits/local_lim.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/mach/hurd/bits/local_lim.h b/sysdeps/mach/hurd/bits/local_lim.h
index 348eee74bb..8e781e4965 100644
--- a/sysdeps/mach/hurd/bits/local_lim.h
+++ b/sysdeps/mach/hurd/bits/local_lim.h
@@ -41,3 +41,6 @@
 
 /* The number of threads per process.  */
 #define _POSIX_THREAD_THREADS_MAX	64
+
+/* Maximum value the semaphore can have.  */
+#define SEM_VALUE_MAX   (2147483647)