[BACK]Return to debug.h CVS log [TXT][DIR] Up to [local] / prex-old / sys / include

Diff for /prex-old/sys/include/debug.h between version 1.1.1.1 and 1.1.1.1.2.1

version 1.1.1.1, 2008/06/03 10:38:45 version 1.1.1.1.2.1, 2008/08/13 17:12:30
Line 30 
Line 30 
 #ifndef _DEBUG_H  #ifndef _DEBUG_H
 #define _DEBUG_H  #define _DEBUG_H
   
 #define MSGBUFSZ        128     /* Size of one kernel message */  #define LOGBUF_SIZE     CONFIG_LOGBUF_SIZE
   #define DBGMSG_SIZE     128     /* Size of one kernel message */
   
 /*  
  * BREAKPOINT()  
  *  
  * Break into debugger.  
  * This works only with a debug version, and only when debugger  
  * is attached.  
  */  
 #ifdef DEBUG  #ifdef DEBUG
 #define BREAKPOINT()    breakpoint()  #define BREAKPOINT()    breakpoint()
 #else  #define DPRINTF(a)      printf a
 #define BREAKPOINT()    do {} while (0)  
 #endif  
   
 /*  
  * printk()  
  *  
  * Print out kernel message to the debug port.  
  * The message is enabled only when DEBUG build.  
  */  
 #ifdef DEBUG  
 extern void printk(const char *fmt, ...);  
 #else  
 #define printk(fmt...)  do {} while (0)  
 #endif  
   
 /*  
  * panic()  
  *  
  * Reset CPU for fatal error.  
  * If debugger is attached, break into it.  
  */  
 #ifdef DEBUG  
 extern void panic(const char *fmt, ...);  
 #else  
 extern void machine_reset(void);  
 #define panic(fmt...)   machine_reset()  
 #endif  
   
 /*  
  * ASSERT(exp)  
  *  
  * If exp is false(zero), stop with source info.  
  * This is enabled only when DEBUG build. An asserion check  
  * should be used only for invalid kernel condition.  
  * It can not be used to check the input argument from user  
  * mode because kernel must not do panic for it. The kernel  
  * should return an appropriate error code in such case.  
  */  
 #ifdef DEBUG  
 extern void assert(const char *file, int line, const char *exp);  
 #define ASSERT(exp)     do { if (!(exp)) \  #define ASSERT(exp)     do { if (!(exp)) \
     assert(__FILE__, __LINE__, #exp); } while (0)                               assert(__FILE__, __LINE__, #exp); } while (0)
 #else  #else
   #define BREAKPOINT()    do {} while (0)
   #define DPRINTF(a)      do {} while (0)
 #define ASSERT(exp)     do {} while (0)  #define ASSERT(exp)     do {} while (0)
   #define panic(x)        machine_reset()
 #endif  #endif
   
 /*  /*
Line 100 
Line 57 
  */   */
 #define DUMP_THREAD     1  #define DUMP_THREAD     1
 #define DUMP_TASK       2  #define DUMP_TASK       2
 #define DUMP_OBJECT     3  #define DUMP_VM         3
 #define DUMP_TIMER      4  
 #define DUMP_IRQ        5  
 #define DUMP_DEVICE     6  
 #define DUMP_VM         7  
 #define DUMP_MSGLOG     8  
 #define DUMP_TRACE      9  
   
 #ifdef DEBUG  #ifdef DEBUG
 extern void      boot_dump(void);  extern void     printf(const char *, ...);
 extern int       log_get(char **, size_t *);  extern void     panic(const char *);
   extern int      debug_dump(int);
   extern void     debug_attach(void (*)(char *));
   extern void     assert(const char *, int, const char *);
   extern int      debug_getlog(char *);
 #endif  #endif
 extern int       debug_dump(int);  
 extern void      debug_attach(void (*)(char *));  
   
 #endif /* !_DEBUG_H */  #endif /* !_DEBUG_H */

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.1.2.1

CVSweb