Searched refs:condition (Results 1 – 5 of 5) sorted by relevance
| /TaskScheduler/Scheduler/Include/ |
| H A D | MTDebug.h | 30 #define MT_REPORT_ASSERT_IMPL( condition, description, file, line ) MT::Diagnostic::ReportAssert(#c… argument 37 #define MT_ASSERT( condition, description ) { if ( !(condition) ) { MT_REPORT_ASSERT_IMPL( #conditi… argument 41 #define MT_VERIFY( condition, description, operation ) { if ( !(condition) ) { { MT_REPORT_ASSERT_I… argument 51 #define MT_ASSERT( condition, description ) argument 55 #define MT_VERIFY( condition, description, operation ) { if ( !(condition) ) { operation; } } argument
|
| H A D | MTAppInterop.h | 88 …MT_NORETURN static void ReportAssert(const char* condition, const char* description, const char* s…
|
| /TaskScheduler/Scheduler/Include/Platform/Windows/ |
| H A D | MTEventUser.h | 39 ::MW_CONDITION_VARIABLE condition; 91 ::InitializeConditionVariable( &condition ); in Create() 107 ::WakeAllConditionVariable( &condition ); in Signal() 110 ::WakeConditionVariable( &condition ); in Signal() 143 MW_BOOL ret = ::SleepConditionVariableCS(&condition, &criticalSection, (MW_DWORD)milliseconds); in Wait()
|
| /TaskScheduler/Scheduler/Include/Platform/Posix/ |
| H A D | MTEvent.h | 45 pthread_cond_t condition; variable 86 int res = pthread_cond_destroy( &condition ); in ~Event() 106 res = pthread_cond_init( &condition, nullptr ); in Create() 128 res = pthread_cond_broadcast( &condition ); in Signal() 133 res = pthread_cond_signal( &condition ); in Signal() 195 ret = pthread_cond_timedwait( &condition, &mutex, &ts ); in Wait()
|
| /TaskScheduler/Scheduler/Source/ |
| H A D | MTDefaultAppInterop.cpp | 178 …void Diagnostic::ReportAssert(const char* condition, const char* description, const char* sourceFi… in ReportAssert() argument 180 …on failed : %s. File %s, line %d. Condition %s\n", description, sourceFile, sourceLine, condition); in ReportAssert()
|