當前位置: 首頁>>代碼示例>>Python>>正文


Python win32event.CreateMutex方法代碼示例

本文整理匯總了Python中win32event.CreateMutex方法的典型用法代碼示例。如果您正苦於以下問題:Python win32event.CreateMutex方法的具體用法?Python win32event.CreateMutex怎麽用?Python win32event.CreateMutex使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在win32event的用法示例。


在下文中一共展示了win32event.CreateMutex方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __acquire

# 需要導入模塊: import win32event [as 別名]
# 或者: from win32event import CreateMutex [as 別名]
def __acquire(self):
        '''
        Attempts to acquire the mutex
        @raise MutexAlreadyAcquired
        '''

        mutex = win32event.CreateMutex(None, 1, self.MUTEX_NAME)
        if win32api.GetLastError() == winerror.ERROR_ALREADY_EXISTS:
            raise MutexAlreadyAcquired()

        return mutex


# ================================================================
# = MutexAlreadyAcquired Exception Class
# =============================================================== 
開發者ID:sithis993,項目名稱:Crypter,代碼行數:18,代碼來源:Mutex.py

示例2: create

# 需要導入模塊: import win32event [as 別名]
# 或者: from win32event import CreateMutex [as 別名]
def create(self):
        obtain_mutex = 1
        mutex = win32event.CreateMutex(None, obtain_mutex, app_name)

        # prevent the PyHANDLE from going out of scope, ints are fine
        self.mutex = int(mutex)
        mutex.Detach()

        lasterror = win32api.GetLastError()
        
        if lasterror == winerror.ERROR_ALREADY_EXISTS:
            takeover = 0

            try:
                # if the mutex already exists, discover which port to connect to.
                # if something goes wrong with that, tell us to take over the
                # role of master
                takeover = self.discover_sic_socket()
            except:
                pass
            
            if not takeover:
                raise BTFailure(_("Global mutex already created."))

        self.master = 1

        # lazy free port code
        port_limit = 50000
        while self.port < port_limit:
            try:
                controlsocket = self.rawserver.create_serversocket(self.port,
                                                                   '127.0.0.1')
                self.controlsocket = controlsocket
                break
            except socket.error, e:
                self.port += 1 
開發者ID:kenorb-contrib,項目名稱:BitTorrent,代碼行數:38,代碼來源:IPC.py

示例3: __init__

# 需要導入模塊: import win32event [as 別名]
# 或者: from win32event import CreateMutex [as 別名]
def __init__(self):
        obtain_mutex = False
        self.mutex = win32event.CreateMutex(None, obtain_mutex, app_name)
        self.lasterror = win32api.GetLastError() 
開發者ID:kenorb-contrib,項目名稱:BitTorrent,代碼行數:6,代碼來源:IPC.py

示例4: __init__

# 需要導入模塊: import win32event [as 別名]
# 或者: from win32event import CreateMutex [as 別名]
def __init__(self):
        self.mutexname = "testmutex_{D0E858DF-985E-4907-B7FB-8D732C3FC3B9}"
        self.mutex = CreateMutex(None, False, self.mutexname)
        self.lasterror = GetLastError() 
開發者ID:Jackeriss,項目名稱:Email_My_PC,代碼行數:6,代碼來源:singleinstance.py


注:本文中的win32event.CreateMutex方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。