HomeSort by relevance Sort by last modified time
    Searched refs:SEM_VALUE_MAX (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
sem_init.c 76 * 'value' >= SEM_VALUE_MAX
96 else if (value > (unsigned int)SEM_VALUE_MAX)
137 (long) SEM_VALUE_MAX, /* Maximum value */
sem_destroy.c 110 * s->value to SEM_VALUE_MAX below does force a fall-through.
116 s->value = SEM_VALUE_MAX;
123 * routines. Due to the SEM_VALUE_MAX value, if sem_post or
sem_post.c 94 if (s->value < SEM_VALUE_MAX)
sem_post_multiple.c 98 if (s->value <= (SEM_VALUE_MAX - count))
pthread.h 499 * SEM_VALUE_MAX
536 #undef SEM_VALUE_MAX
537 #define SEM_VALUE_MAX INT_MAX
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
local_lim.h 100 #define SEM_VALUE_MAX (2147483647)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
local_lim.h 100 #define SEM_VALUE_MAX (2147483647)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 66 SEM_VALUE_MAX = _multiprocessing.SemLock.SEM_VALUE_MAX
111 SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX)
queues.py 60 maxsize = _multiprocessing.SemLock.SEM_VALUE_MAX
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 66 SEM_VALUE_MAX = _multiprocessing.SemLock.SEM_VALUE_MAX
111 SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX)
queues.py 60 maxsize = _multiprocessing.SemLock.SEM_VALUE_MAX

Completed in 157 milliseconds