diff --git a/core/src/thread.zig b/core/src/thread.zig index 7632eca..bd02e36 100644 --- a/core/src/thread.zig +++ b/core/src/thread.zig @@ -108,7 +108,7 @@ pub fn createThreadControlBlock(allocator: *pmm.FrameAllocator) !*ThreadControlB thread.mapper = null; thread.regs = std.mem.zeroes(@TypeOf(thread.regs)); thread.state = .Inactive; - thread.user_priority = 0; + thread.user_priority = 127; return thread; }