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

Commit 73f8a5d

Browse files
authored
Fix
1 parent dd21e50 commit 73f8a5d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

kernel/core/process.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ Process* process_create(char* name, int ppid, Domain domain, u32 entry, u32 stac
3636
void process_destroy(Process* proc);
3737

3838

39-
void process_switch();
40-
void scheduler();
39+
void scheduler(void);
4140

4241
extern Process* cproc;
4342
extern Process* processes[256]; // TODO: Dynamic.. For now we shouldn't need more than this. (who tf has 256 proccesses open)

0 commit comments

Comments
 (0)