blob: 8b1ed9b226bb2f8c98faf20ec11a5f31c1ebfca1 [file] [log] [blame]
#ifndef AXIS2_THREAD_MUTEX_WINDOWS_H
#define AXIS2_THREAD_MUTEX_WINDOWS_H
#include <process.h>
#include <windows.h>
typedef enum thread_mutex_type
{
thread_mutex_critical_section,
thread_mutex_unnested_event,
thread_mutex_nested_mutex
} thread_mutex_type;
/* handle applies only to unnested_event on all platforms
* and nested_mutex on Win9x only. Otherwise critical_section
* is used for NT nexted mutexes providing optimal performance.
*/
struct axis2_thread_mutex_t
{
thread_mutex_type type;
HANDLE handle;
CRITICAL_SECTION section;
};
#endif /* AXIS2_THREAD_MUTEX_WINDOWS_H */