Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/panic.h

    r06737a0 ra000878c  
    11/*
    2  * Copyright (c) 2010 Jakub Jermar
     2 * Copyright (c) 2001-2004 Jakub Jermar
    33 * All rights reserved.
    44 *
     
    3737
    3838#include <typedefs.h>
     39#include <stacktrace.h>
     40#include <print.h>
    3941
    40 #define panic(fmt, ...) \
    41         panic_common(PANIC_OTHER, NULL, 0, 0, fmt, ##__VA_ARGS__)
    42 
    43 #define panic_assert(fmt, ...) \
    44         panic_common(PANIC_ASSERT, NULL, 0, 0, fmt, ##__VA_ARGS__)
    45 
    46 #define panic_badtrap(istate, n, fmt, ...) \
    47         panic_common(PANIC_BADTRAP, istate, 0, n, fmt, ##__VA_ARGS__)
    48 
    49 #define panic_memtrap(istate, access, addr, fmt, ...) \
    50         panic_common(PANIC_MEMTRAP, istate, access, addr, fmt, ##__VA_ARGS__)
    51 
    52 typedef enum {
    53         PANIC_OTHER,
    54         PANIC_ASSERT,
    55         PANIC_BADTRAP,
    56         PANIC_MEMTRAP
    57 } panic_category_t;
    58 
    59 struct istate;
     42#ifdef CONFIG_DEBUG
     43#       define panic(format, ...) \
     44                do { \
     45                        silent = false; \
     46                        printf("Kernel panic in %s() at %s:%u.\n", \
     47                            __func__, __FILE__, __LINE__); \
     48                        stack_trace(); \
     49                        panic_printf("Panic message: " format "\n", \
     50                            ##__VA_ARGS__);\
     51                } while (0)
     52#else
     53#       define panic(format, ...) \
     54                do { \
     55                        silent = false; \
     56                        panic_printf("Kernel panic: " format "\n", ##__VA_ARGS__); \
     57                } while (0)
     58#endif
    6059
    6160extern bool silent;
    6261
    63 extern void panic_common(panic_category_t, struct istate *, int,
    64     uintptr_t, const char *, ...) __attribute__ ((noreturn));
     62extern void panic_printf(const char *fmt, ...) __attribute__((noreturn));
    6563
    6664#endif
Note: See TracChangeset for help on using the changeset viewer.