Title: ip_panic()


ip_panic() (for the case where the system is not "CRAMPED") is #define'd as follows:

#define ip_panic(print_list) (panic0(this_file, __LINE__), printf print_list, panic())

panic0() simply prints out an error message indicating where the panic was called and panic() does a stacktrace before calling sys_abort() to bring the system down.