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

sys/ps: adapt to COREIF_NG removal

This commit is contained in:
Kaspar Schleiser 2017-10-20 17:26:25 +02:00
parent 86665b71bf
commit 2a177ea6c8

View File

@ -73,9 +73,9 @@ void ps(void)
"state");
#if defined(DEVELHELP) && defined(ISR_STACKSIZE)
int isr_usage = thread_arch_isr_stack_usage();
void *isr_start = thread_arch_isr_stack_start();
void *isr_sp = thread_arch_isr_stack_pointer();
int isr_usage = thread_isr_stack_usage();
void *isr_start = thread_isr_stack_start();
void *isr_sp = thread_isr_stack_pointer();
printf("\t - | isr_stack | - - |"
" - | %6i (%5i) | %10p | %10p\n", ISR_STACKSIZE, isr_usage, isr_start, isr_sp);
overall_stacksz += ISR_STACKSIZE;