annotate include/TaskManager/error.h @ 47:8266445bdac2
*** empty log message ***
author |
gongo |
date |
Fri, 15 Feb 2008 13:09:58 +0900 |
parents |
db136fb5c21d |
children |
7927e00fb8e2 |
rev |
line source |
30
|
1 #ifdef DEBUG
|
|
2 # include <stdio.h>
|
|
3 # define __debug(...) do { \
|
|
4 printf(__VA_ARGS__); \
|
|
5 } while (0)
|
|
6 #else /* DEBUG */
|
|
7 # define __debug(...)
|
|
8 #endif
|
42
|
9
|
|
10 #ifdef _PPE_DEBUG
|
|
11 # include <stdio.h>
|
|
12 # define __debug_ppe(...) do { \
|
|
13 printf(__VA_ARGS__); \
|
|
14 } while (0)
|
|
15 #else /* DEBUG */
|
43
|
16 # define __debug_ppe(...)
|
42
|
17 #endif
|
|
18
|