Searched refs:_cond (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/io/bnxe/
H A Dbnxe_debug.h89 #define DbgBreakIf(_cond) \
90 if (_cond) \
92 cmn_err(CE_PANIC, "%s(%d): Condition Failed! - if ("#_cond")", \
120 #define BnxeDbgBreakIf(_c, _cond) \
121 if (_cond) \
123 cmn_err(CE_PANIC, "%s: %s(%d): Condition Failed! - if ("#_cond")", \
131 #define BnxeDbgBreakIfFastPath(_c, _cond) BnxeDbgBreakIf(_c, _cond)
/illumos-gate/usr/src/cmd/lms/SyncLib/src/
H A DEventUnix.cpp52 pthread_cond_init(&_cond, NULL);
58 pthread_cond_destroy(&_cond);
63 pthread_cond_t _cond; member in class:OSEvent_s
90 pthread_cond_init(&_osEvent->ose->_cond, NULL);
100 _osEvent->_cond = rhs._osEvent->_cond;
107 pthread_cond_destroy(&_osEvent->ose->_cond);
129 // this, &_osEvent->_ose->_cond, _osEvent->_ose->_set, msecs_p);
131 retcode = pthread_cond_timedwait(&_osEvent->_ose->_cond,
148 // this, &_osEvent->_ose->_cond, _osEven
[all...]
H A DThreadUnix.cpp50 pthread_cond_t _cond; member in class:OSThread
67 pthread_cond_signal(&t->_osThread->_cond);
79 pthread_cond_init(&_osThread->_cond, NULL);
86 pthread_cond_destroy(&_osThread->_cond);
112 retcode = pthread_cond_timedwait(&_osThread->_cond, &_osThread->_mut, &timeout);
125 pthread_cond_wait(&_osThread->_cond, &_osThread->_mut);
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/include/
H A Ddebug.h92 #define DBG_BREAK_ON(_cond) (GET_FLAGS(g_dbg_flags, _cond) != 0)
264 #define DbgBreakIfAll(_cond) do {\
265 if(_cond) \
267 printf("DEBUG BREAK! Condition failed: if("#_cond##")\n"); \
269 log_message("DEBUG BREAK! Condition failed: if("#_cond##") at file %s (line %4d)\n", __FILE_STRIPPED__, __LINE__); \
282 #define DbgBreakIfAll(_cond) do {\
283 if(_cond) \
285 DbgMessage(NULL, FATAL, "DEBUG BREAK! Condition failed: if("#_cond##")\n"); \
295 #define DbgBreakIfAll(_cond) d
[all...]
/illumos-gate/usr/src/uts/common/io/sfxge/common/
H A Defx.h42 #define EFX_STATIC_ASSERT(_cond) \
43 ((void)sizeof(char[(_cond) ? 1 : -1]))

Completed in 59 milliseconds