aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/include
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2023-10-07 12:07:05 -0700
committerCalvin Rose <calsrose@gmail.com>2023-10-07 12:07:05 -0700
commite8c013a778eb751cf3c88845ee544c8225381264 (patch)
tree155403c0c5ae6d0297e38be0a9894aaffa25ccc6 /src/include
parentReuse overlapped overhead on windows for something useful. (diff)
Remove some extra fiber state and use a flag.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/janet.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/janet.h b/src/include/janet.h
index 7288938d..d365721d 100644
--- a/src/include/janet.h
+++ b/src/include/janet.h
@@ -927,7 +927,6 @@ struct JanetFiber {
JanetStream *ev_stream; /* which stream we are waiting on */
void *ev_state; /* Extra data for ev callback state. On windows, first element must be OVERLAPPED. */
void *supervisor_channel; /* Channel to push self to when complete */
- int ev_in_flight; /* If overlapped operation is in flight */
#endif
};