summaryrefslogtreecommitdiff
path: root/kernel/syscalls/msleep.c
blob: 9880b6375002c386c7cad1fb3a5b15fe935a20ba (plain)
1
2
3
4
5
6
7
8
9
#include <drivers/pit.h>
#include <syscalls.h>
#include <sched/scheduler.h>
#include <stdio.h>

void syscall_msleep(u32 ms) {
  get_current_task()->sleep_until = pit_num_ms() + ms;
  switch_task();
}