/src/sys/sys/ |
lockdebug.h | 83 #define LOCKDEBUG_FREE(dodebug, lock) \ 84 if (dodebug) lockdebug_free(__func__, __LINE__, lock) 85 #define LOCKDEBUG_WANTLOCK(dodebug, lock, where, s) \ 86 if (dodebug) lockdebug_wantlock(__func__, __LINE__, lock, where, s) 87 #define LOCKDEBUG_LOCKED(dodebug, lock, al, where, s) \ 88 if (dodebug) lockdebug_locked(__func__, __LINE__, lock, al, where, s) 89 #define LOCKDEBUG_UNLOCKED(dodebug, lock, where, s) \ 90 if (dodebug) lockdebug_unlocked(__func__, __LINE__, lock, where, s) 99 #define LOCKDEBUG_FREE(dodebug, lock) /* nothing */ 100 #define LOCKDEBUG_WANTLOCK(dodebug, lock, where, s) /* nothing * [all...] |
/src/sys/arch/hppa/include/ |
mutex.h | 120 MUTEX_INITIALIZE_SPIN(struct kmutex *mtx, bool dodebug, int ipl) 123 mtx->mtx_dodebug = dodebug; 129 MUTEX_INITIALIZE_ADAPTIVE(struct kmutex *mtx, bool dodebug) 131 mtx->mtx_dodebug = dodebug;
|
/src/sys/kern/ |
kern_mutex.c | 191 #define MUTEX_INITIALIZE_ADAPTIVE(mtx, dodebug) \ 193 if (!dodebug) \ 197 #define MUTEX_INITIALIZE_SPIN(mtx, dodebug, ipl) \ 200 if (!dodebug) \ 357 bool dodebug; local in function:_mutex_init 366 dodebug = LOCKDEBUG_ALLOC(mtx, lockops, return_address); 367 MUTEX_INITIALIZE_ADAPTIVE(mtx, dodebug); 371 dodebug = LOCKDEBUG_ALLOC(mtx, lockops, return_address); 372 MUTEX_INITIALIZE_SPIN(mtx, dodebug, ipl);
|
/src/sbin/shutdown/ |
shutdown.c | 94 static int dodebug, dosilent, doverbose; variable in typeref:typename:int 157 dodebug = 1; 399 if (dodebug)
|