0e2a7a9730
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.
15 lines
310 B
C
15 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 */
|