Files
mango/sched/runqueue.c

9 lines
158 B
C
Raw Normal View History

2023-03-17 20:07:49 +00:00
#include <socks/sched.h>
#include <socks/percpu.h>
void runqueue_init(struct runqueue *rq)
{
memset(rq, 0x00, sizeof *rq);
rq->rq_lock = SPIN_LOCK_INIT;
}