⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 critsect.h

📁 The library provides supports for run-time loaded plugin classes in C++
💻 H
字号:
#ifndef CRITSECT_H#define CRITSECT_H// A fast critical section / mutex class// It will work under Gcc using AtomicAdd or under// Windows using InterlockedIncrement. For other platforms// a replacement for this atomic increment must be found.class CritSect {public:	// If using the crit sect statically or globally, 	// set do_construct to false, then it can be used	// correctly without init (it works well from the	// zero state)	CritSect( bool do_construct=true );	void Enter( );	void Leave( );	bool TryEnter( );protected:	int m_cnt;	// Allocated count.	int m_thid;	// Thread ID of owner};class CritSectLocker {public:	CritSectLocker( CritSect &cs ) : m_cs(cs) { m_cs.Enter(); }	~CritSectLocker( ) { m_cs.Leave(); }	CritSect &m_cs;};// Should have this name reallytypedef CritSect piCritSect;// For backwards compatibility#ifdef WXWIDGETStypedef CritSect wxCritSect;typedef CritSectLocker wxCritSectLocker;#endif#endif // CRITSECT_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -