kernel: remove support for sending kernel handles via port/channel

This commit is contained in:
2026-02-26 20:50:34 +00:00
parent b59d0d8948
commit 634f4517c8
17 changed files with 231 additions and 370 deletions

View File

@@ -4,6 +4,6 @@
kern_status_t sys_kern_log(const char *s)
{
struct task *task = current_task();
printk("%s: %s", task->t_name, s);
printk("%s[%d]: %s", task->t_name, task->t_id, s);
return KERN_OK;
}