Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/debug.cc')
-rw-r--r--winsup/cygwin/debug.cc15
1 files changed, 7 insertions, 8 deletions
diff --git a/winsup/cygwin/debug.cc b/winsup/cygwin/debug.cc
index b885a9fc4..ad493cd9d 100644
--- a/winsup/cygwin/debug.cc
+++ b/winsup/cygwin/debug.cc
@@ -31,19 +31,19 @@ details. */
class lock_debug
{
- static muto *locker;
+ static muto locker;
bool acquired;
public:
lock_debug () : acquired (0)
{
- if (locker && !exit_state)
- acquired = !!locker->acquire (INFINITE);
+ if (locker.name && !exit_state)
+ acquired = !!locker.acquire (INFINITE);
}
void unlock ()
{
- if (locker && acquired)
+ if (locker.name && acquired)
{
- locker->release ();
+ locker.release ();
acquired = false;
}
}
@@ -51,15 +51,14 @@ class lock_debug
friend void debug_init ();
};
-muto NO_COPY *lock_debug::locker = NULL;
+muto NO_COPY lock_debug::locker;
static bool __stdcall mark_closed (const char *, int, HANDLE, const char *, bool);
void
debug_init ()
{
- muto *debug_lock_muto;
- lock_debug::locker = new_muto (debug_lock_muto);
+ lock_debug::locker.init ("debug_lock");
}
/* Find a registered handle in the linked list of handles. */