Changeset 122 for trunk/IPs/systemC/Environment/Common/include
- Timestamp:
- Jun 3, 2009, 10:15:51 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/Environment/Common/include/Debug.h
r117 r122 3 3 4 4 #define DEBUG_true true 5 #define DEBUG_ENVIRONMENT true6 #define DEBUG_CACHE true7 #define DEBUG_DATA true8 #define DEBUG_ENDIANNESS true9 #define DEBUG_QUEUE true10 #define DEBUG_RAMLOCK true11 #define DEBUG_SIM2OS true12 #define DEBUG_TTY true5 #define DEBUG_ENVIRONMENT false 6 #define DEBUG_CACHE false 7 #define DEBUG_DATA false 8 #define DEBUG_ENDIANNESS false 9 #define DEBUG_QUEUE false 10 #define DEBUG_RAMLOCK false 11 #define DEBUG_SIM2OS false 12 #define DEBUG_TTY false 13 13 14 14 #define MSG_ENVIRONMENT "[ENVIRONMENT]" … … 17 17 do \ 18 18 { \ 19 fprintf(stdout,str); \ 20 } \ 19 if (DEBUG_ ## component == true ) \ 20 { \ 21 fprintf(stdout,str); \ 22 } \ 23 } \ 21 24 while(0) 22 25
Note: See TracChangeset
for help on using the changeset viewer.