Mercurial > hg > Members > kono > Cerium
comparison include/TaskManager/error.h @ 109:5c194c71eca8
Cerium cvs version
author | gongo@gendarme.local |
---|---|
date | Wed, 12 Nov 2008 17:39:33 +0900 |
parents | 7927e00fb8e2 |
children | 2ddf79a7c5fb |
comparison
equal
deleted
inserted
replaced
108:6f3b3dd3c095 | 109:5c194c71eca8 |
---|---|
8 #endif | 8 #endif |
9 | 9 |
10 #ifdef _PPE_DEBUG | 10 #ifdef _PPE_DEBUG |
11 # include <stdio.h> | 11 # include <stdio.h> |
12 # define __debug_ppe(...) do { \ | 12 # define __debug_ppe(...) do { \ |
13 printf(__VA_ARGS__); \ | 13 printf("[PPE] "); printf(__VA_ARGS__); \ |
14 } while (0) | 14 } while (0) |
15 #else /* DEBUG */ | 15 #else /* DEBUG */ |
16 # define __debug_ppe(...) | 16 # define __debug_ppe(...) |
17 #endif | 17 #endif |
18 | 18 |
19 #ifdef _PPE_DEBUG | |
20 # include <stdio.h> | |
21 # define __debug_spe(...) do { \ | |
22 printf("[SPE] "); printf(__VA_ARGS__); \ | |
23 } while (0) | |
24 #else /* DEBUG */ | |
25 # define __debug_ppe(...) | |
26 #endif | |
27 |