In a multi threaded application, is there a way to ensure that a Critical Section is initialized only once except for putting the code in DLL main() ??
|
|
I'd suggest wrapping the CRITICAL_SECTION with a class that will handle the initialization and uninitialization of the critical section object in its constructor and destructor. This way, you'll be thread safe in most cases (you'll have to make sure noone accesses the object before its constructor completes, but that's relatively easy). There are several common wrappers for CRITICAL_SECTION you can use. MFC's CCriticalSection is the obvious choise, but you can create your own as well. |
||
|
|
|
|
You can initialize a global critical section in |
||
|
|
|
|
On Windows Vista you can use the one-time initialization functions. Using One-Time Initialization shows how to use them to make sure an event is initialized only once. |
||
|
|
|
You can also use a wrapper class and declare a global object of that class. The constructor of the global object will be invoked only once at the startup. |
||
|
|
|
|
Sure there are many many ways.
and so on. This is no different from any other question of trying to create a single instance of some thing in your code. |
||
|
|
