mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
[client,x11] remove x11 lock log messages
This commit is contained in:
@@ -830,16 +830,12 @@ void xf_minimize(xfContext* xfc)
|
||||
|
||||
void xf_lock_x11_(xfContext* xfc, const char* fkt)
|
||||
{
|
||||
|
||||
if (!xfc->UseXThreads)
|
||||
(void)WaitForSingleObject(xfc->mutex, INFINITE);
|
||||
else
|
||||
XLockDisplay(xfc->display);
|
||||
|
||||
xfc->locked++;
|
||||
#ifdef WITH_DEBUG_X11
|
||||
WLog_VRB(TAG, "[%" PRIu32 "] from %s", xfc->locked, fkt);
|
||||
#endif
|
||||
}
|
||||
|
||||
void xf_unlock_x11_(xfContext* xfc, const char* fkt)
|
||||
@@ -849,10 +845,6 @@ void xf_unlock_x11_(xfContext* xfc, const char* fkt)
|
||||
else
|
||||
xfc->locked--;
|
||||
|
||||
#ifdef WITH_DEBUG_X11
|
||||
WLog_VRB(TAG, "[%" PRIu32 "] from %s", xfc->locked, fkt);
|
||||
#endif
|
||||
|
||||
if (!xfc->UseXThreads)
|
||||
(void)ReleaseMutex(xfc->mutex);
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user