# HG changeset patch # User Sebastien Decugis # Date 1243325983 -32400 # Node ID 8fdd47ce352a11c9cdf7a282383872fdbcb389c2 # Parent 3591d0486a2c442c6c89ccd603c6859845f17b9f Fix compilation errors diff -r 3591d0486a2c -r 8fdd47ce352a extensions/rt_any/rt_any.c --- a/extensions/rt_any/rt_any.c Tue May 26 17:17:05 2009 +0900 +++ b/extensions/rt_any/rt_any.c Tue May 26 17:19:43 2009 +0900 @@ -40,8 +40,11 @@ #define IN_EXTENSION #define DECLARE_API_POINTERS +#define DEFINE_DEBUG_MACRO rt_any #include +static int rt_any_verbosity = 1; + /* give positive score to all messages */ static int cb_any_out(void * data, msg_t * msg, rt_dpl_t * list ) { diff -r 3591d0486a2c -r 8fdd47ce352a extensions/rt_debug/rt_debug.c --- a/extensions/rt_debug/rt_debug.c Tue May 26 17:17:05 2009 +0900 +++ b/extensions/rt_debug/rt_debug.c Tue May 26 17:19:43 2009 +0900 @@ -40,6 +40,7 @@ #define IN_EXTENSION #define DECLARE_API_POINTERS +#define DEFINE_DEBUG_MACRO rt_debug #include #include @@ -49,6 +50,8 @@ #define DUMP_CMDFL_str "%c%c%c%c" #define DUMP_CMDFL_val(_val) (_val & CMD_FLAG_REQUEST)?'R':'-' , (_val & CMD_FLAG_PROXIABLE)?'P':'-' , (_val & CMD_FLAG_ERROR)?'E':'-' , (_val & CMD_FLAG_RETRANSMIT)?'T':'-' +static int rt_debug_verbosity = 1; + static rt_out_hdl_t * norm = NULL; static rt_out_hdl_t * late = NULL; static rt_fwd_hdl_t * req = NULL;