mirror of https://github.com/schoebel/mars
38 lines
1.0 KiB
C
38 lines
1.0 KiB
C
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
|
|
#ifndef BRICK_SAY_H
|
|
#define BRICK_SAY_H
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// printk() replacements
|
|
|
|
#define MAX_SAY_CLASS 2
|
|
|
|
extern const char *proc_say_get(int class, int *len);
|
|
extern void proc_say_commit(void);
|
|
|
|
extern void check_open(const char *filename, bool must_exist);
|
|
extern void check_close(const char *filename, bool force, bool re_open);
|
|
|
|
extern void say(int class, const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
|
|
extern void say_mark(void);
|
|
|
|
extern void brick_say(int class, bool dump, const char *prefix, const char *file, int line, const char *func, const char *fmt, ...) __attribute__ ((format (printf, 7, 8)));
|
|
|
|
extern void init_say(void);
|
|
extern void exit_say(void);
|
|
|
|
#ifdef CONFIG_DEBUG_KERNEL
|
|
#define INLINE static inline
|
|
//#define INLINE __attribute__((__noinline__))
|
|
extern void brick_dump_stack(void);
|
|
|
|
#else // CONFIG_DEBUG_KERNEL
|
|
|
|
#define INLINE static inline
|
|
#define brick_dump_stack() /*empty*/
|
|
|
|
#endif // CONFIG_DEBUG_KERNEL
|
|
|
|
#endif
|