Revert "Add EV_EOF and EV_CLEAR to selfpipe for kqueue"

This reverts commit 5442c8e86d.
This commit is contained in:
Calvin Rose 2023-10-08 13:13:58 -05:00
parent 5442c8e86d
commit d71c100ca7
1 changed files with 1 additions and 1 deletions

View File

@ -1900,7 +1900,7 @@ void janet_ev_init(void) {
janet_vm.timer_enabled = 0;
if (janet_vm.kq == -1) goto error;
struct kevent event;
EV_SETx(&event, janet_vm.selfpipe[0], EVFILT_READ, EV_ADD | EV_ENABLE | EV_EOF | EV_CLEAR, 0, 0, janet_vm.selfpipe);
EV_SETx(&event, janet_vm.selfpipe[0], EVFILT_READ, EV_ADD | EV_ENABLE, 0, 0, janet_vm.selfpipe);
add_kqueue_events(&event, 1);
return;
error: