diff options
author | Marvin Borner | 2021-06-09 20:12:53 +0200 |
---|---|---|
committer | Marvin Borner | 2021-06-09 20:12:53 +0200 |
commit | f60ab15600bc58233eec659eb3a76c5432fde69a (patch) | |
tree | 369bc24d9c3537709b873fd4fca9957c828c6ad6 /libs/libc/inc | |
parent | 24ce56cccb6f179f8c6ed9ad82e6afb871aabf80 (diff) |
Better stack tracing
Diffstat (limited to 'libs/libc/inc')
-rw-r--r-- | libs/libc/inc/print.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/libc/inc/print.h b/libs/libc/inc/print.h index bc1b7b0..6997796 100644 --- a/libs/libc/inc/print.h +++ b/libs/libc/inc/print.h @@ -24,7 +24,8 @@ NORETURN void err(int code, const char *format, ...) NONNULL; #else #include <proc.h> int print_prefix(void); -void print_trace(u32 count); +void print_trace_custom(u32 stack, u32 count); +void print_trace(void); #endif #endif |