# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT class SemLock(object): """ Semaphore/Mutex type """ SEM_VALUE_MAX = 2147483647 def _after_fork(self): """ rezero the net acquisition count after fork() """ pass def _count(self): """ num of `acquire()`s minus num of `release()`s for this process """ pass def _get_value(self): """ get the value of the semaphore """ pass def _is_mine(self): """ whether the lock is owned by this thread """ pass def _is_zero(self): """ returns whether semaphore has value zero """ pass def _rebuild(self): """ """ pass def acquire(self): """ acquire the semaphore/lock """ pass handle = None kind = None maxvalue = None def release(self): """ release the semaphore/lock """ pass __doc__ = None __file__ = '/home/shared/src/ide/build-files/build-temp/runtimes-release/__os__/linux-x64/runtime-python3.3/lib/python3.3/lib-dynload/_multiprocessing.cpython-33m.so' __loader__ = None __name__ = '_multiprocessing' __package__ = '' flags = {}