Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion fsw/pc-linux/src/cfe_psp_exception.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ void CFE_PSP_AttachExceptions(void)
* by calling it once we ensure that it is loaded and therefore
* it is safe to use in a signal handler.
*/
backtrace(Addr, 1);
int bt_retvalue = backtrace(Addr, 1);
OS_printf("Number of addresses returned by backtrace = %d\n", bt_retvalue);

OS_printf("CFE_PSP: %s called\n", __func__);

Expand Down
Loading