summaryrefslogtreecommitdiff
path: root/kernel/src/scheduler/scheduler.c
blob: 263c11adc9b47468bd6d32966e7a383c2eb90346 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <types.h>
#include <scheduler.h>
#include <libk/list.h>
#include <process.h>

process_t *scheduler(void)
{
	process_t *pos = curr_process;
	process_t *next_process = list_next_entry(pos, list);

	return next_process;
}