Generic sleep_micro() function

This commit is contained in:
2025-12-22 21:14:58 +01:00
parent 849df9c27d
commit 1fd6f4890d
4 changed files with 22 additions and 3 deletions

7
kernel/amd64/time.c Normal file
View File

@@ -0,0 +1,7 @@
#include <libk/std.h>
#include <sys/time.h>
#include <amd64/hpet.h>
void sleep_micro (size_t us) {
amd64_hpet_sleep_micro (us);
}