mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
15 lines
204 B
C++
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);
|
|
}
|