Home
last modified time | relevance | path

Searched refs:SEM_VALUE_MAX (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython3/Modules/_multiprocessing/
Dmultiprocessing.h23 # define SEM_VALUE_MAX LONG_MAX macro
43 #ifndef SEM_VALUE_MAX
45 # define SEM_VALUE_MAX sysconf(_SC_SEM_VALUE_MAX) macro
47 # define SEM_VALUE_MAX _SEM_VALUE_MAX macro
49 # define SEM_VALUE_MAX _POSIX_SEM_VALUE_MAX macro
51 # define SEM_VALUE_MAX INT_MAX macro
Dmultiprocessing.c178 if ((int)(SEM_VALUE_MAX) < (0)) in PyInit__multiprocessing()
181 py_sem_value_max = PyLong_FromLong(SEM_VALUE_MAX); in PyInit__multiprocessing()
/external/python/cpython2/Modules/_multiprocessing/
Dmultiprocessing.h29 # define SEM_VALUE_MAX LONG_MAX macro
53 #ifndef SEM_VALUE_MAX
55 # define SEM_VALUE_MAX sysconf(_SC_SEM_VALUE_MAX) macro
57 # define SEM_VALUE_MAX _SEM_VALUE_MAX macro
59 # define SEM_VALUE_MAX _POSIX_SEM_VALUE_MAX macro
61 # define SEM_VALUE_MAX INT_MAX macro
Dmultiprocessing.c286 if ((int)(SEM_VALUE_MAX) < 0) in init_multiprocessing()
289 py_sem_value_max = PyLong_FromLong(SEM_VALUE_MAX); in init_multiprocessing()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_init/
D6-1.c28 int counter = SEM_VALUE_MAX; in main()
30 if (SEM_VALUE_MAX >= INT_MAX) { in main()
/external/python/cpython2/Lib/multiprocessing/
Dsynchronize.py66 SEM_VALUE_MAX = _multiprocessing.SemLock.SEM_VALUE_MAX variable
111 SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX)
Dqueues.py60 maxsize = _multiprocessing.SemLock.SEM_VALUE_MAX
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_open/
D5-1.c30 int counter = SEM_VALUE_MAX; in main()
Dcoverage.txt23 minimum value has been tested, but not the greater than SEM_VALUE_MAX.
/external/python/cpython3/Lib/multiprocessing/
Dsynchronize.py40 SEM_VALUE_MAX = _multiprocessing.SemLock.SEM_VALUE_MAX variable
126 SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX, ctx=ctx)
Dqueues.py39 from .synchronize import SEM_VALUE_MAX as maxsize
/external/toybox/toys/posix/
Dgetconf.c109 CONF(SEM_NSEMS_MAX), CONF(SEM_VALUE_MAX), CONF(SIGQUEUE_MAX),
/external/python/cpython2/Misc/NEWS.d/
D2.6rc1.rst390 multiprocessing fails to compiel on solaris 10 due to missing SEM_VALUE_MAX.
D2.7a1.rst3323 Add additional protect around SEM_VALUE_MAX for multiprocessing.
/external/python/cpython3/Misc/
DHISTORY16384 SEM_VALUE_MAX.