1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

sys/ps: ignore IST_STACKSIZE if it is == 0 (undefined)

This commit is contained in:
Kaspar Schleiser 2019-01-14 17:51:35 +01:00
parent f88fa2e3f2
commit b2278b64a8

View File

@ -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();