feat: introduced stream to separate actual io and other tasks

This commit is contained in:
2021-03-02 21:56:37 +01:00
parent 76792dd6fd
commit c9102fbc65
6 changed files with 234 additions and 11 deletions

View File

@@ -13,4 +13,8 @@ typedef void (*kprint_handler)(const char *);
void kprint_register(kprint_handler);
void kprint(const char *msg);
void kprint(const char *msg);
void kprint_init();
void kprint_start_task();