OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SEMAPHORE
(Results
1 - 2
of
2
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py
36
'Lock', 'RLock', '
Semaphore
', 'BoundedSemaphore', 'Condition', 'Event'
65
RECURSIVE_MUTEX,
SEMAPHORE
= range(2)
105
#
Semaphore
108
class
Semaphore
(SemLock):
111
SemLock.__init__(self,
SEMAPHORE
, value, SEM_VALUE_MAX)
121
return '<
Semaphore
(value=%s)>' % value
124
# Bounded
semaphore
127
class BoundedSemaphore(
Semaphore
):
130
SemLock.__init__(self,
SEMAPHORE
, value, value)
147
SemLock.__init__(self,
SEMAPHORE
, 1, 1
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py
36
'Lock', 'RLock', '
Semaphore
', 'BoundedSemaphore', 'Condition', 'Event'
65
RECURSIVE_MUTEX,
SEMAPHORE
= range(2)
105
#
Semaphore
108
class
Semaphore
(SemLock):
111
SemLock.__init__(self,
SEMAPHORE
, value, SEM_VALUE_MAX)
121
return '<
Semaphore
(value=%s)>' % value
124
# Bounded
semaphore
127
class BoundedSemaphore(
Semaphore
):
130
SemLock.__init__(self,
SEMAPHORE
, value, value)
147
SemLock.__init__(self,
SEMAPHORE
, 1, 1
[
all
...]
Completed in 41 milliseconds