ultimatepp/upptst/TimedSemaphoreCV/TimedSemaphoreCV.cpp
cxl d0d553a655 .upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@13772 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2019-12-19 12:10:18 +00:00

15 lines
204 B
C++

#include <Core/Core.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
// this is just compilation check:
Semaphore s;
s.Wait(1000);
Mutex m;
ConditionVariable cv;
cv.Wait(m, 1000);
}