Ignore:
File:
1 edited

Legend:

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

    r263bda2 r31198c12  
    5555        do { \
    5656                if (!(expr)) \
    57                         panic_assert("%s", #expr); \
     57                        panic("Assertion failed (%s)", #expr); \
    5858        } while (0)
    5959
     
    7272        do { \
    7373                if (!(expr)) \
    74                         panic_assert("%s, %s", #expr, msg); \
     74                        panic("Assertion failed (%s, %s)", #expr, msg); \
    7575        } while (0)
    7676
     
    9393#define LOG(format, ...) \
    9494        do { \
    95                 printf("%s() from %s at %s:%u: " format "\n", __func__, \
    96                     symtab_fmt_name_lookup(CALLER), __FILE__, __LINE__, \
    97                     ##__VA_ARGS__); \
     95                printf("%s->%s() at %s:%u: " format "\n", symtab_fmt_name_lookup(CALLER), \
     96                    __func__, __FILE__, __LINE__, ##__VA_ARGS__); \
    9897        } while (0)
    9998
    100 extern void __cyg_profile_func_enter(void *, void *);
    101 extern void __cyg_profile_func_exit(void *, void *);
     99/** Extensive logging execute macro
     100 *
     101 * If CONFIG_LOG is set, the LOG_EXEC() macro
     102 * will print an information about calling a given
     103 * function and call it.
     104 *
     105 */
     106#define LOG_EXEC(fnc) \
     107        do { \
     108                printf("%s->%s() at %s:%u: " #fnc "\n", symtab_fmt_name_lookup(CALLER), \
     109                    __func__, __FILE__, __LINE__); \
     110                fnc; \
     111        } while (0)
    102112
    103113#else /* CONFIG_LOG */
    104114
    105115#define LOG(format, ...)
     116#define LOG_EXEC(fnc)     fnc
    106117
    107 #endif /* CONFIG_LOG */
     118#endif /* CONFOG_LOG */
    108119
    109120#endif
Note: See TracChangeset for help on using the changeset viewer.