mirror of
https://github.com/janet-lang/janet
synced 2025-06-20 23:44:13 +00:00
Fix windows swallowing IOCP events in many cases.
This fixes windows hanging on "failed" IO operations.
This commit is contained in:
parent
fbe3849b4b
commit
634219da2c
@ -1024,11 +1024,8 @@ void janet_loop1_impl(int has_timeout, JanetTimestamp to) {
|
|||||||
}
|
}
|
||||||
BOOL result = GetQueuedCompletionStatus(janet_vm_iocp, &num_bytes_transfered, &completionKey, &overlapped, (DWORD) waittime);
|
BOOL result = GetQueuedCompletionStatus(janet_vm_iocp, &num_bytes_transfered, &completionKey, &overlapped, (DWORD) waittime);
|
||||||
|
|
||||||
if (!result) {
|
if (result || overlapped) {
|
||||||
if (!has_timeout) {
|
if (0 == completionKey) {
|
||||||
/* queue emptied */
|
|
||||||
}
|
|
||||||
} else if (0 == completionKey) {
|
|
||||||
/* Custom event */
|
/* Custom event */
|
||||||
JanetSelfPipeEvent *response = (JanetSelfPipeEvent *)(overlapped);
|
JanetSelfPipeEvent *response = (JanetSelfPipeEvent *)(overlapped);
|
||||||
response->cb(response->msg);
|
response->cb(response->msg);
|
||||||
@ -1053,6 +1050,7 @@ void janet_loop1_impl(int has_timeout, JanetTimestamp to) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#elif defined(JANET_EV_EPOLL)
|
#elif defined(JANET_EV_EPOLL)
|
||||||
|
|
||||||
@ -1545,7 +1543,7 @@ JanetAsyncStatus ev_machine_read(JanetListenerState *s, JanetAsyncEvent event) {
|
|||||||
janet_mark(janet_wrap_buffer(state->buf));
|
janet_mark(janet_wrap_buffer(state->buf));
|
||||||
break;
|
break;
|
||||||
case JANET_ASYNC_EVENT_CLOSE:
|
case JANET_ASYNC_EVENT_CLOSE:
|
||||||
janet_cancel(s->fiber, janet_cstringv("stream closed"));
|
janet_schedule(s->fiber, janet_wrap_nil());
|
||||||
return JANET_ASYNC_STATUS_DONE;
|
return JANET_ASYNC_STATUS_DONE;
|
||||||
#ifdef JANET_WINDOWS
|
#ifdef JANET_WINDOWS
|
||||||
case JANET_ASYNC_EVENT_COMPLETE: {
|
case JANET_ASYNC_EVENT_COMPLETE: {
|
||||||
|
@ -524,9 +524,6 @@ static Janet os_proc_close(int32_t argc, Janet *argv) {
|
|||||||
if (proc->flags & JANET_PROC_OWNS_STDOUT) janet_file_close(proc->out);
|
if (proc->flags & JANET_PROC_OWNS_STDOUT) janet_file_close(proc->out);
|
||||||
if (proc->flags & JANET_PROC_OWNS_STDERR) janet_file_close(proc->err);
|
if (proc->flags & JANET_PROC_OWNS_STDERR) janet_file_close(proc->err);
|
||||||
#endif
|
#endif
|
||||||
proc->in = NULL;
|
|
||||||
proc->out = NULL;
|
|
||||||
proc->err = NULL;
|
|
||||||
proc->flags &= ~(JANET_PROC_OWNS_STDIN | JANET_PROC_OWNS_STDOUT | JANET_PROC_OWNS_STDERR);
|
proc->flags &= ~(JANET_PROC_OWNS_STDIN | JANET_PROC_OWNS_STDOUT | JANET_PROC_OWNS_STDERR);
|
||||||
if (proc->flags & (JANET_PROC_WAITED | JANET_PROC_WAITING)) {
|
if (proc->flags & (JANET_PROC_WAITED | JANET_PROC_WAITING)) {
|
||||||
return janet_wrap_nil();
|
return janet_wrap_nil();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user