1
0
mirror of https://github.com/janet-lang/janet synced 2025-12-14 04:28:06 +00:00

Overhaul of poll loop, redo ev/select.

This commit is contained in:
Calvin Rose
2020-10-11 09:07:11 -05:00
parent ea45165db8
commit cb4903fa86
5 changed files with 169 additions and 131 deletions

View File

@@ -826,7 +826,6 @@ struct JanetFiber {
JanetFiber *child; /* Keep linked list of fibers for restarting pending fibers */
#ifdef JANET_EV
JanetListenerState *waiting;
int32_t timeout_index;
uint32_t sched_id; /* Increment everytime fiber is scheduled by event loop */
#endif
};