diff options
| author | 2025-08-02 18:19:19 -0500 | |
|---|---|---|
| committer | 2025-08-02 18:19:39 -0500 | |
| commit | f00d3199c30f0a9fcef16850d55a57f24454375c (patch) | |
| tree | b7f6c59267cf558ce0c629c83e4748c5b7e65ea3 /src | |
| parent | Merge pull request #1615 from ifreund/net-server-datagram (diff) | |
Fix #1609 Remove sigaction if JANET_NO_EV defined.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/os.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/os.c b/src/core/os.c index 741ccc57..12802a9a 100644 --- a/src/core/os.c +++ b/src/core/os.c @@ -2863,8 +2863,10 @@ void janet_lib_os(JanetTable *env) { JANET_CORE_REG("os/proc-kill", os_proc_kill), JANET_CORE_REG("os/proc-close", os_proc_close), JANET_CORE_REG("os/getpid", os_proc_getpid), +#ifdef JANET_EV JANET_CORE_REG("os/sigaction", os_sigaction), #endif +#endif /* high resolution timers */ JANET_CORE_REG("os/clock", os_clock), |
