summaryrefslogtreecommitdiffstats
path: root/winsup/cygserver/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygserver/process.h')
-rw-r--r--winsup/cygserver/process.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygserver/process.h b/winsup/cygserver/process.h
index 282586e8d..a084fb12d 100644
--- a/winsup/cygserver/process.h
+++ b/winsup/cygserver/process.h
@@ -82,12 +82,12 @@ public:
bool is_active () const { return _exit_status == STILL_ACTIVE; }
void _hold (const char *file, int line) {
- _log (file, line, LOG_DEBUG, "Try hold(%lu)", _cygpid);
+ _debug (file, line, "Try hold(%lu)", _cygpid);
EnterCriticalSection (&_access);
- _log (file, line, LOG_DEBUG, "holding (%lu)", _cygpid);
+ _debug (file, line, "holding (%lu)", _cygpid);
}
void _release (const char *file, int line) {
- _log (file, line, LOG_DEBUG, "leaving (%lu)", _cygpid);
+ _debug (file, line, "leaving (%lu)", _cygpid);
LeaveCriticalSection (&_access);
}