Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Commit cb4b2be

Browse files
authored
Fix
1 parent 73f8a5d commit cb4b2be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/core/process.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ void switch_proc(Process* next_proc) {
9898
cswitch((cpu_state_t*)(next_proc->ksp));
9999
}
100100

101-
void schedule() {
101+
void scheduler(void) {
102102
int npid = (cproc->pid + 1) % 256;
103103

104104
for (int i = 0; i < 256; i++) {

0 commit comments

Comments
 (0)