📄 umc_semaphore.h
字号:
/*//// INTEL CORPORATION PROPRIETARY INFORMATION// This software is supplied under the terms of a license agreement or// nondisclosure agreement with Intel Corporation and may not be copied// or disclosed except in accordance with the terms of that agreement.// Copyright(c) 2003-2005 Intel Corporation. All Rights Reserved.//*/#ifndef __UMC_SEMAPHORE_H#define __UMC_SEMAPHORE_H#include "vm_debug.h"#include "vm_semaphore.h"#include "umc_structures.h"namespace UMC{class Semaphore{public: // Default constructor Semaphore(void); // Destructor virtual ~Semaphore(void); // Initialize semaphore Status Init(int iInitCount); // Check semaphore state bool IsValid(void); // Try to obtain semaphore Status TryWait(void); // Wait until semaphore is signaled Status Wait(unsigned int msec); // Infinitely wait until semaphore is signaled Status Wait(void); // Set semaphore to signaled state Status Signal(void);protected: vm_semaphore m_handle; // (vm_semaphore) handle to system semaphore};inlinebool Semaphore::IsValid(void){ return vm_semaphore_is_valid(&m_handle) ? true : false;} // bool Semaphore::IsValid(void)inlineStatus Semaphore::TryWait(void){ return vm_semaphore_try_wait(&m_handle);} // Status Semaphore::TryWait(void)inlineStatus Semaphore::Wait(unsigned int msec){ return vm_semaphore_timedwait(&m_handle, msec);} // Status Semaphore::Wait(unsigned int msec)inlineStatus Semaphore::Wait(void){ return vm_semaphore_wait(&m_handle);} // Status Semaphore::Wait(void)inlineStatus Semaphore::Signal(void){ return vm_semaphore_post(&m_handle);} // Status Semaphore::Signal(void)} // namespace UMC#endif // __UMC_SEMAPHORE_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -