From b2278b64a833870e1f01a8cbeb06b87e90be275b Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Mon, 14 Jan 2019 17:51:35 +0100 Subject: [PATCH] sys/ps: ignore IST_STACKSIZE if it is == 0 (undefined) --- sys/ps/ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ps/ps.c b/sys/ps/ps.c index 3007ebc2a1..c251953cc7 100644 --- a/sys/ps/ps.c +++ b/sys/ps/ps.c @@ -75,7 +75,7 @@ void ps(void) #endif "state"); -#if defined(DEVELHELP) && defined(ISR_STACKSIZE) +#if defined(DEVELHELP) && ISR_STACKSIZE int isr_usage = thread_isr_stack_usage(); void *isr_start = thread_isr_stack_start(); void *isr_sp = thread_isr_stack_pointer();