Revert "debug.h: check stacksize fixed"

This commit is contained in:
Martine Lenders 2015-03-31 22:38:04 +02:00
parent f1becc6870
commit 5214e14e66

View File

@ -50,7 +50,7 @@ extern "C" {
#include "cpu-conf.h"
#define DEBUG_PRINT(...) \
do { \
if ((sched_active_thread == NULL) || (sched_active_thread->stack_size >= KERNEL_CONF_STACKSIZE_PRINTF)) { \
if ((sched_active_thread == NULL) || (sched_active_thread->stack_size > KERNEL_CONF_STACKSIZE_PRINTF)) { \
printf(__VA_ARGS__); \
} \
else { \