Stack traces: Difference between revisions

m
→‎Using no extensions: cut lines that are too long to be read on small screens
(→‎{{header|D}}: keep the app running)
m (→‎Using no extensions: cut lines that are too long to be read on small screens)
Line 279:
 
typedef struct stack_trace_frame_s {
const char *file_name; int file_line; const char *proc_name; void *proc_addr; struct stack_trace_frame_s *down, *up;
int file_line;
const char *proc_name;
void *proc_addr;
struct stack_trace_frame_s *down, *up;
} stack_trace_frame_t;