annotate include/TaskManager/error.h @ 50:7927e00fb8e2
*** empty log message ***
author |
gongo |
date |
Fri, 15 Feb 2008 19:36:08 +0900 |
parents |
db136fb5c21d |
children |
5c194c71eca8 |
rev |
line source |
30
|
1 #ifdef DEBUG
|
|
2 # include <stdio.h>
|
|
3 # define __debug(...) do { \
|
50
|
4 fprintf(stderr, __VA_ARGS__); \
|
30
|
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
|