view TaskManager/include/error.h @ 1270:a67d25aec253 draft

remove Eratosthenes
author Daichi Toma <toma@cr.ie.u-ryukyu.ac.jp>
date Sun, 20 Nov 2011 08:09:26 +0900
parents 1b225972ae88
children df397764c51e
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