mirror of https://github.com/FreeRDP/FreeRDP
Fixed SleepEx return value and added log messages for unimplemented features.
This commit is contained in:
parent
c7b7d527f3
commit
a16813d237
|
@ -25,6 +25,10 @@
|
|||
|
||||
#include <winpr/synch.h>
|
||||
|
||||
#include "../log.h"
|
||||
|
||||
#define TAG WINPR_TAG("synch.sleep")
|
||||
|
||||
#ifndef _WIN32
|
||||
|
||||
#include <time.h>
|
||||
|
@ -43,8 +47,11 @@ VOID Sleep(DWORD dwMilliseconds)
|
|||
|
||||
DWORD SleepEx(DWORD dwMilliseconds, BOOL bAlertable)
|
||||
{
|
||||
usleep(dwMilliseconds * 1000);
|
||||
return TRUE;
|
||||
/* TODO: Implement bAlertable support */
|
||||
if (bAlertable)
|
||||
WLog_WARN(TAG, "%s does not support bAlertable", __FUNCTION__);
|
||||
Sleep(dwMilliseconds);
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue