Home
last modified time | relevance | path

Searched refs:py_sem_value_max (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/_multiprocessing/
Dmultiprocessing.c172 PyObject *py_sem_value_max; in PyInit__multiprocessing() local
179 py_sem_value_max = PyLong_FromLong(INT_MAX); in PyInit__multiprocessing()
181 py_sem_value_max = PyLong_FromLong(SEM_VALUE_MAX); in PyInit__multiprocessing()
182 if (py_sem_value_max == NULL) in PyInit__multiprocessing()
185 py_sem_value_max); in PyInit__multiprocessing()
/external/python/cpython2/Modules/_multiprocessing/
Dmultiprocessing.c283 PyObject *py_sem_value_max; in init_multiprocessing() local
287 py_sem_value_max = PyLong_FromLong(INT_MAX); in init_multiprocessing()
289 py_sem_value_max = PyLong_FromLong(SEM_VALUE_MAX); in init_multiprocessing()
290 if (py_sem_value_max == NULL) in init_multiprocessing()
293 py_sem_value_max); in init_multiprocessing()