Home
last modified time | relevance | path

Searched refs:_cond (Results 1 – 4 of 4) sorted by relevance

/titanic_41/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) argument
264 #define DbgBreakIfAll(_cond) do {\ argument
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_STRIPP…
282 #define DbgBreakIfAll(_cond) do {\ argument
283 if(_cond) \
285 DbgMessage(NULL, FATAL, "DEBUG BREAK! Condition failed: if("#_cond##")\n"); \
295 #define DbgBreakIfAll(_cond) do {\ argument
296 if(_cond) \
[all …]
/titanic_41/usr/src/uts/common/io/bnxe/
H A Dbnxe_debug.h89 #define DbgBreakIf(_cond) \ argument
90 if (_cond) \
92 cmn_err(CE_PANIC, "%s(%d): Condition Failed! - if ("#_cond")", \
120 #define BnxeDbgBreakIf(_c, _cond) \ argument
121 if (_cond) \
123 cmn_err(CE_PANIC, "%s: %s(%d): Condition Failed! - if ("#_cond")", \
131 #define BnxeDbgBreakIfFastPath(_c, _cond) BnxeDbgBreakIf(_c, _cond) argument
/titanic_41/usr/src/cmd/lms/SyncLib/src/
H A DEventUnix.cpp52 pthread_cond_init(&_cond, NULL); in OSEvent_s()
58 pthread_cond_destroy(&_cond); in ~OSEvent_s()
63 pthread_cond_t _cond; member in OSEvent_s
131 retcode = pthread_cond_timedwait(&_osEvent->_ose->_cond, in wait()
150 pthread_cond_wait(&_osEvent->_ose->_cond, &_osEvent->_ose->_mut); in wait()
163 pthread_cond_signal(&_osEvent->_ose->_cond); in set()
173 pthread_cond_destroy(&_osEvent->_ose->_cond); in reset()
174 pthread_cond_init(&_osEvent->_ose->_cond, NULL); in reset()
H A DThreadUnix.cpp50 pthread_cond_t _cond; member in OSThread
67 pthread_cond_signal(&t->_osThread->_cond); in threadFunc()
79 pthread_cond_init(&_osThread->_cond, NULL); in Thread()
86 pthread_cond_destroy(&_osThread->_cond); in ~Thread()
112 retcode = pthread_cond_timedwait(&_osThread->_cond, &_osThread->_mut, &timeout); in wait()
125 pthread_cond_wait(&_osThread->_cond, &_osThread->_mut); in wait()