missing fn stub

This commit is contained in:
Tenari
2026-07-20 07:40:27 -05:00
parent 2e5c6cc808
commit 59d4f44ea8
+5
View File
@@ -372,6 +372,11 @@ fn HumanTime osHumanTimeFromMicroseconds(u64 micros) {
return result;
}
fn void osBarrierWait(Barrier barrier) {
assert(false && "Not Implemented yet");
return;
}
// poll() shim using select() on windows
int poll(struct pollfd *fds, nfds_t nfds, int timeout) {
assert(nfds <= FD_SETSIZE);