2012-05-29 22:14:26 +04:00
|
|
|
/**
|
|
|
|
* WinPR: Windows Portable Runtime
|
|
|
|
* Synchronization Functions
|
|
|
|
*
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-02-16 12:08:00 +03:00
|
|
|
#include <winpr/config.h>
|
2012-08-15 01:20:53 +04:00
|
|
|
|
2012-12-14 09:58:48 +04:00
|
|
|
#include <winpr/windows.h>
|
2012-05-29 22:14:26 +04:00
|
|
|
|
2012-12-14 09:58:48 +04:00
|
|
|
#include <winpr/synch.h>
|
2012-09-18 20:57:19 +04:00
|
|
|
|
2019-02-08 13:46:02 +03:00
|
|
|
#include "../log.h"
|
2021-03-24 20:32:43 +03:00
|
|
|
#include "../thread/apc.h"
|
|
|
|
#include "../thread/thread.h"
|
|
|
|
#include "../synch/pollset.h"
|
2019-02-08 13:46:02 +03:00
|
|
|
|
|
|
|
#define TAG WINPR_TAG("synch.sleep")
|
|
|
|
|
2012-09-19 02:36:13 +04:00
|
|
|
#ifndef _WIN32
|
|
|
|
|
2012-12-14 09:58:48 +04:00
|
|
|
#include <time.h>
|
|
|
|
|
2021-09-08 16:37:45 +03:00
|
|
|
#if defined(__clang__)
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wreserved-id-macro"
|
|
|
|
#endif
|
|
|
|
|
2023-01-10 16:30:23 +03:00
|
|
|
#ifdef WINPR_HAVE_UNISTD_H
|
2019-11-06 17:24:51 +03:00
|
|
|
#ifndef _XOPEN_SOURCE
|
|
|
|
#define _XOPEN_SOURCE 500
|
|
|
|
#endif
|
2012-12-14 09:58:48 +04:00
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2021-09-08 16:37:45 +03:00
|
|
|
#if defined(__clang__)
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
#endif
|
|
|
|
|
2012-09-18 20:57:19 +04:00
|
|
|
VOID Sleep(DWORD dwMilliseconds)
|
|
|
|
{
|
2012-12-14 09:58:48 +04:00
|
|
|
usleep(dwMilliseconds * 1000);
|
2012-09-18 20:57:19 +04:00
|
|
|
}
|
2012-05-29 22:14:26 +04:00
|
|
|
|
2012-09-18 20:57:19 +04:00
|
|
|
DWORD SleepEx(DWORD dwMilliseconds, BOOL bAlertable)
|
|
|
|
{
|
2021-03-24 20:32:43 +03:00
|
|
|
WINPR_THREAD* thread = winpr_GetCurrentThread();
|
|
|
|
WINPR_POLL_SET pollset;
|
|
|
|
int status;
|
|
|
|
DWORD ret = WAIT_FAILED;
|
|
|
|
BOOL autoSignalled;
|
|
|
|
|
2023-03-03 17:45:15 +03:00
|
|
|
if (thread)
|
2021-03-24 20:32:43 +03:00
|
|
|
{
|
2023-03-03 17:45:15 +03:00
|
|
|
/* treat re-entrancy if a completion is calling us */
|
|
|
|
if (thread->apc.treatingCompletions)
|
|
|
|
bAlertable = FALSE;
|
2021-03-24 20:32:43 +03:00
|
|
|
}
|
2023-03-03 17:45:15 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* called from a non WinPR thread */
|
2021-03-24 20:32:43 +03:00
|
|
|
bAlertable = FALSE;
|
2023-03-03 17:45:15 +03:00
|
|
|
}
|
2021-03-24 20:32:43 +03:00
|
|
|
|
|
|
|
if (!bAlertable || !thread->apc.length)
|
|
|
|
{
|
|
|
|
usleep(dwMilliseconds * 1000);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pollset_init(&pollset, thread->apc.length))
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "unable to initialize pollset");
|
|
|
|
return WAIT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!apc_collectFds(thread, &pollset, &autoSignalled))
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "unable to APC file descriptors");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!autoSignalled)
|
|
|
|
{
|
|
|
|
/* we poll and wait only if no APC member is ready */
|
|
|
|
status = pollset_poll(&pollset, dwMilliseconds);
|
|
|
|
if (status < 0)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "polling of apc fds failed");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (apc_executeCompletions(thread, &pollset, 0))
|
|
|
|
{
|
|
|
|
ret = WAIT_IO_COMPLETION;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* according to the spec return value is 0 see
|
|
|
|
* https://docs.microsoft.com/en-us/windows/win32/api/synchapi/nf-synchapi-sleepex*/
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
pollset_uninit(&pollset);
|
|
|
|
return ret;
|
2012-09-18 20:57:19 +04:00
|
|
|
}
|
2012-09-19 02:36:13 +04:00
|
|
|
|
|
|
|
#endif
|
2012-12-14 09:58:48 +04:00
|
|
|
|
|
|
|
VOID USleep(DWORD dwMicroseconds)
|
|
|
|
{
|
|
|
|
#ifndef _WIN32
|
|
|
|
usleep(dwMicroseconds);
|
|
|
|
#else
|
2021-04-28 16:02:54 +03:00
|
|
|
static LARGE_INTEGER freq = { 0 };
|
|
|
|
LARGE_INTEGER t1 = { 0 };
|
|
|
|
LARGE_INTEGER t2 = { 0 };
|
2012-12-14 09:58:48 +04:00
|
|
|
|
2013-06-25 18:33:40 +04:00
|
|
|
QueryPerformanceCounter(&t1);
|
2012-12-14 09:58:48 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
if (freq.QuadPart == 0)
|
|
|
|
{
|
2013-06-25 18:33:40 +04:00
|
|
|
QueryPerformanceFrequency(&freq);
|
2012-12-14 09:58:48 +04:00
|
|
|
}
|
2013-06-25 18:33:40 +04:00
|
|
|
|
|
|
|
// in order to save cpu cyles we use Sleep() for the large share ...
|
2019-11-06 17:24:51 +03:00
|
|
|
if (dwMicroseconds >= 1000)
|
|
|
|
{
|
|
|
|
Sleep(dwMicroseconds / 1000);
|
2013-06-25 18:33:40 +04:00
|
|
|
}
|
|
|
|
// ... and busy loop until all the requested micro seconds have passed
|
2019-11-06 17:24:51 +03:00
|
|
|
do
|
|
|
|
{
|
2013-06-25 18:33:40 +04:00
|
|
|
QueryPerformanceCounter(&t2);
|
2019-11-06 17:24:51 +03:00
|
|
|
} while (((t2.QuadPart - t1.QuadPart) * 1000000) / freq.QuadPart < dwMicroseconds);
|
2012-12-14 09:58:48 +04:00
|
|
|
#endif
|
|
|
|
}
|