minix/kernel/debug.h
Jorrit Herder 0e2a7a9730 Kernel cleanup.
Reduced kernel size by 512KB by moving private buffer into cstart() function.
Replaced assertions with erroneous return values. Removed assertions relating
to isuserp(rp), since all processes should become user processes; system
processes are now treated similar to other processes.
2005-06-07 12:34:25 +00:00

16 lines
310 B
C

#ifndef DEBUG_H
#define DEBUG_H
#include <minix/config.h>
#if ENABLE_LOCK_TIMING
_PROTOTYPE( void timer_start, (int cat, char *name) );
_PROTOTYPE( void timer_end, (int cat) );
#endif
#if ENABLE_K_DEBUGGING /* debugging */
_PROTOTYPE( void check_runqueues, (char *when) );
#endif
#endif /* DEBUG_H */