FIX: Race condition causing applications to print to serial out instead of the CLI

This commit is contained in:
boreddevnl
2026-04-16 22:12:20 +02:00
parent 7116de4152
commit 7f510c6aa5
2 changed files with 4 additions and 5 deletions

View File

@@ -69,7 +69,7 @@ typedef struct {
void process_init(void);
process_t* process_create(void (*entry_point)(void), bool is_user);
process_t* process_create_elf(const char* filepath, const char* args_str);
process_t* process_create_elf(const char* filepath, const char* args_str, bool terminal_proc, int tty_id);
process_t* process_get_current(void);
void process_set_current_for_cpu(uint32_t cpu_id, process_t* p);
process_t* process_get_current_for_cpu(uint32_t cpu_id);