Exemplo n.º 1
0
 def __init__(self, *, ctx):
     SemLock.__init__(self, RECURSIVE_MUTEX, 1, 1, ctx=ctx)
Exemplo n.º 2
0
 def __init__(self, value=1, *, ctx):
     SemLock.__init__(self, SEMAPHORE, value, value, ctx=ctx)
Exemplo n.º 3
0
 def __init__(self, *, ctx):
     SemLock.__init__(self, SEMAPHORE, 1, 1, ctx=ctx)
Exemplo n.º 4
0
 def __init__(self, value=1):
     SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX)
Exemplo n.º 5
0
 def __init__(self, value=1, *, ctx):
     SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX, ctx=ctx)
Exemplo n.º 6
0
 def __init__(self):
     SemLock.__init__(self, SEMAPHORE, 1, 1)
Exemplo n.º 7
0
 def __init__(self):
     SemLock.__init__(self, RECURSIVE_MUTEX, 1, 1)
Exemplo n.º 8
0
 def __init__(self, *, ctx):
     SemLock.__init__(self, RECURSIVE_MUTEX, 1, 1, ctx=ctx)
Exemplo n.º 9
0
 def __init__(self, value=1):
     SemLock.__init__(self, SEMAPHORE, value, value)
Exemplo n.º 10
0
 def __init__(self, value=1, *, ctx):
     SemLock.__init__(self, SEMAPHORE, value, value, ctx=ctx)
Exemplo n.º 11
0
 def __init__(self, *, ctx):
     SemLock.__init__(self, SEMAPHORE, 1, 1, ctx=ctx)
Exemplo n.º 12
0
 def __init__(self, value=1, *, ctx):
     SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX, ctx=ctx)
Exemplo n.º 13
0
 def __init__(self):
     SemLock.__init__(self, RECURSIVE_MUTEX, 1, 1)
Exemplo n.º 14
0
 def __init__(self):
     SemLock.__init__(self, SEMAPHORE, 1, 1)
Exemplo n.º 15
0
 def __init__(self, value=1):
     SemLock.__init__(self, SEMAPHORE, value, value)
Exemplo n.º 16
0
 def __init__(self, value=1):
     SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX)