2024-11-02 11:31:51 +00:00
|
|
|
#ifndef MANGO_PRINTK_H_
|
|
|
|
|
#define MANGO_PRINTK_H_
|
2023-02-03 20:26:02 +00:00
|
|
|
|
2024-11-02 11:31:51 +00:00
|
|
|
#include <mango/console.h>
|
2023-02-04 19:03:45 +00:00
|
|
|
|
2023-03-20 20:41:39 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2026-02-08 12:48:33 +00:00
|
|
|
#ifdef TRACE
|
|
|
|
|
#define tracek(...) printk(__VA_ARGS__)
|
|
|
|
|
#else
|
|
|
|
|
#define tracek(...)
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-04-12 20:17:11 +01:00
|
|
|
extern void early_printk_init(struct console *con);
|
2023-02-03 20:26:02 +00:00
|
|
|
extern int printk(const char *format, ...);
|
|
|
|
|
|
2023-03-20 20:41:39 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-02-03 20:26:02 +00:00
|
|
|
#endif
|