mirror of
https://github.com/janet-lang/janet
synced 2024-11-05 08:16:16 +00:00
Merge branch 'master' of github.com:janet-lang/janet
This commit is contained in:
commit
ffadf673cf
@ -2216,6 +2216,10 @@ JanetAsyncStatus ev_machine_read(JanetListenerState *s, JanetAsyncEvent event) {
|
|||||||
} else
|
} else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
|
/* Some handles (not all) read from the offset in lopOverlapped
|
||||||
|
* if its not set before calling `ReadFile` these streams will always read from offset 0 */
|
||||||
|
state->overlapped.Offset = (DWORD) state->bytes_read;
|
||||||
|
|
||||||
status = ReadFile(s->stream->handle, state->chunk_buf, chunk_size, NULL, &state->overlapped);
|
status = ReadFile(s->stream->handle, state->chunk_buf, chunk_size, NULL, &state->overlapped);
|
||||||
if (!status && (ERROR_IO_PENDING != WSAGetLastError())) {
|
if (!status && (ERROR_IO_PENDING != WSAGetLastError())) {
|
||||||
if (WSAGetLastError() == ERROR_BROKEN_PIPE) {
|
if (WSAGetLastError() == ERROR_BROKEN_PIPE) {
|
||||||
|
@ -305,9 +305,9 @@
|
|||||||
(setdyn :redef true)
|
(setdyn :redef true)
|
||||||
(def dynamicdef2 0)
|
(def dynamicdef2 0)
|
||||||
(defn dynamicdef2-inc [] (+ 1 dynamicdef2))
|
(defn dynamicdef2-inc [] (+ 1 dynamicdef2))
|
||||||
(assert (= 1 (dynamicdef2-inc)) "before redefinition with dyn :redefs")
|
(assert (= 1 (dynamicdef2-inc)) "before redefinition with dyn :redef")
|
||||||
(def dynamicdef2 1)
|
(def dynamicdef2 1)
|
||||||
(assert (= 2 (dynamicdef2-inc)) "after redefinition with dyn :redefs")
|
(assert (= 2 (dynamicdef2-inc)) "after redefinition with dyn :redef")
|
||||||
(setdyn :redef nil)
|
(setdyn :redef nil)
|
||||||
|
|
||||||
# Denormal tables and structs
|
# Denormal tables and structs
|
||||||
|
Loading…
Reference in New Issue
Block a user