X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/2236410f4582ab45ae8c384dd6eeeef5d10aab15..b60166b327a9108b07e3069fa6568a451529ffd9:/lunaix-os/includes/lunaix/syslog.h diff --git a/lunaix-os/includes/lunaix/syslog.h b/lunaix-os/includes/lunaix/syslog.h index b372daa..423823c 100644 --- a/lunaix-os/includes/lunaix/syslog.h +++ b/lunaix-os/includes/lunaix/syslog.h @@ -29,6 +29,7 @@ } #define DEBUG(fmt, ...) kprintf(KDEBUG fmt, ##__VA_ARGS__) +#define INFO(fmt, ...) kprintf(KINFO fmt, ##__VA_ARGS__) #define WARN(fmt, ...) kprintf(KWARN fmt, ##__VA_ARGS__) #define ERROR(fmt, ...) kprintf(KERROR fmt, ##__VA_ARGS__) #define FATAL(fmt, ...) \ @@ -39,23 +40,4 @@ void kprintf_m(const char* component, const char* fmt, va_list args); - -// TODO need more thought on it - -// struct klog_chunk -// { -// void* log_entry; -// size_t max_len; -// size_t len; -// }; - -// struct klog_chunk* -// kprintf_lcstart_m(const char* component, size_t size); - -// void -// kprintf_lcappend_m(struct klog_chunk*, const char* fmt, va_list args); - -// void -// kprintf_lcdone_m(struct klog_chunk*); - #endif /* __LUNAIX_SYSLOG_H */