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

9
kernel/sys/time.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef _KERNEL_SYS_TIME_H
#define _KERNEL_SYS_TIME_H
#include <libk/std.h>
/* May take a timer peripheral lock! */
void sleep_micro (size_t us);
#endif // _KERNEL_SYS_TIME_H