Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/lib/libc/emscripten_yield_stub.c
7086 views
1
/*
2
* Copyright 2026 The Emscripten Authors. All rights reserved.
3
* Emscripten is available under two separate licenses, the MIT license and the
4
* University of Illinois/NCSA Open Source License. Both these licenses can be
5
* found in the LICENSE file.
6
*/
7
8
#include <features.h>
9
10
static void dummy(double now) {
11
}
12
13
weak_alias(dummy, _emscripten_check_timers);
14
15
void _emscripten_yield(double now) {
16
_emscripten_check_timers(now);
17
}
18
19