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

Get IOCP reworked event loop passing tests.

This commit is contained in:
Calvin Rose
2023-09-25 15:19:39 -07:00
parent 81f35f5dd1
commit 1ee98e1e66
3 changed files with 19 additions and 6 deletions

View File

@@ -627,6 +627,8 @@ struct JanetListenerState {
#ifdef JANET_WINDOWS
void *tag; /* Used to associate listeners with an overlapped structure */
int bytes; /* Used to track how many bytes were transfered. */
#else
uint32_t index; /* Used for poll implentation */
#endif
};
#endif