summaryrefslogtreecommitdiff
path: root/userland/libc/unistd/msleep.c
blob: 0b016c66238982a5ce8944f4f790421a3726ec49 (plain)
1
2
3
4
5
6
// Not standard, but it feels like it should be.
#include <syscall.h>
#include <unistd.h>
#include <stdint.h>

void msleep(uint32_t ms) { syscall(SYS_MSLEEP, (void *)ms, 0, 0, 0, 0); }