Skip to content
Snippets Groups Projects
Commit 2a177ea6 authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

sys/ps: adapt to COREIF_NG removal

parent 86665b71
No related branches found
No related tags found
No related merge requests found
...@@ -73,9 +73,9 @@ void ps(void) ...@@ -73,9 +73,9 @@ void ps(void)
"state"); "state");
#if defined(DEVELHELP) && defined(ISR_STACKSIZE) #if defined(DEVELHELP) && defined(ISR_STACKSIZE)
int isr_usage = thread_arch_isr_stack_usage(); int isr_usage = thread_isr_stack_usage();
void *isr_start = thread_arch_isr_stack_start(); void *isr_start = thread_isr_stack_start();
void *isr_sp = thread_arch_isr_stack_pointer(); void *isr_sp = thread_isr_stack_pointer();
printf("\t - | isr_stack | - - |" printf("\t - | isr_stack | - - |"
" - | %6i (%5i) | %10p | %10p\n", ISR_STACKSIZE, isr_usage, isr_start, isr_sp); " - | %6i (%5i) | %10p | %10p\n", ISR_STACKSIZE, isr_usage, isr_start, isr_sp);
overall_stacksz += ISR_STACKSIZE; overall_stacksz += ISR_STACKSIZE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment