kernel: convert some verbose log messages to trace messages

This commit is contained in:
2026-03-21 10:27:23 +00:00
parent 35949fa8db
commit a2c89df195
5 changed files with 19 additions and 6 deletions

View File

@@ -8,8 +8,10 @@
extern kern_status_t sys_task_exit(int status)
{
#if defined(TRACE)
struct task *self = current_task();
printk("%s[%d]: task_exit(%d)", self->t_name, self->t_id, status);
#endif
task_exit(status);
return KERN_FATAL_ERROR;
}