view TaskManager/include/error.h @ 736:31d0a5baafdf

cut printf
author hiroki@localhost.localdomain
date Sun, 27 Dec 2009 20:39:33 +0900
parents 09f33c51a204
children
line wrap: on
line source

#ifndef CERIUM_ERR
#define CERIUM_ERR

#ifdef DEBUG
#  include <stdio.h>
#  define __debugs(s, ...) do { \
	s->printf(__VA_ARGS__);		\
    } while (0)
#else /* DEBUG */
#  define __debug(...)
#endif

#ifdef DEBUG
#  include <stdio.h>
#  define __debugs_ppe(s, ...) do { \
	s->printf("[PPE] ", __VA_ARGS__);	\
    } while (0)
#else /* DEBUG */
#  define __debug_ppe(...)
#endif

#ifdef DEBUG
#  include <stdio.h>
#  define __debugs_spe(s, ...) do { \
	s->printf("[SPE] ", __VA_ARGS__);	\
    } while (0)
#else /* DEBUG */
#  define __debug_spe(...)
#endif
#endif