| ... | ... | @@ -2618,7 +2618,6 @@ fn batchAwaitAsync(userdata: ?*anyopaque, b: *Io.Batch) Io.Cancelable!void { |
| 2618 | 2618 | poll_buffer[poll_len] = .{ |
| 2619 | 2619 | .fd = o.file.handle, |
| 2620 | 2620 | .events = posix.POLL.IN | posix.POLL.ERR, |
| 2621 | | .revents = 0, |
| 2622 | 2621 | }; |
| 2623 | 2622 | poll_len += 1; |
| 2624 | 2623 | }, |
| ... | ... | @@ -2626,7 +2625,6 @@ fn batchAwaitAsync(userdata: ?*anyopaque, b: *Io.Batch) Io.Cancelable!void { |
| 2626 | 2625 | poll_buffer[poll_len] = .{ |
| 2627 | 2626 | .fd = o.file.handle, |
| 2628 | 2627 | .events = posix.POLL.OUT | posix.POLL.ERR, |
| 2629 | | .revents = 0, |
| 2630 | 2628 | }; |
| 2631 | 2629 | poll_len += 1; |
| 2632 | 2630 | }, |
| ... | ... | @@ -2634,7 +2632,6 @@ fn batchAwaitAsync(userdata: ?*anyopaque, b: *Io.Batch) Io.Cancelable!void { |
| 2634 | 2632 | poll_buffer[poll_len] = .{ |
| 2635 | 2633 | .fd = o.file.handle, |
| 2636 | 2634 | .events = posix.POLL.OUT | posix.POLL.IN | posix.POLL.ERR, |
| 2637 | | .revents = 0, |
| 2638 | 2635 | }; |
| 2639 | 2636 | poll_len += 1; |
| 2640 | 2637 | }, |
| ... | ... | @@ -2642,7 +2639,6 @@ fn batchAwaitAsync(userdata: ?*anyopaque, b: *Io.Batch) Io.Cancelable!void { |
| 2642 | 2639 | poll_buffer[poll_len] = .{ |
| 2643 | 2640 | .fd = o.socket_handle, |
| 2644 | 2641 | .events = posix.POLL.IN | posix.POLL.ERR, |
| 2645 | | .revents = 0, |
| 2646 | 2642 | }; |
| 2647 | 2643 | poll_len += 1; |
| 2648 | 2644 | }, |
| ... | ... | @@ -2650,7 +2646,6 @@ fn batchAwaitAsync(userdata: ?*anyopaque, b: *Io.Batch) Io.Cancelable!void { |
| 2650 | 2646 | poll_buffer[poll_len] = .{ |
| 2651 | 2647 | .fd = o.socket_handle, |
| 2652 | 2648 | .events = posix.POLL.OUT | posix.POLL.ERR, |
| 2653 | | .revents = 0, |
| 2654 | 2649 | }; |
| 2655 | 2650 | poll_len += 1; |
| 2656 | 2651 | }, |
| ... | ... | @@ -2658,7 +2653,6 @@ fn batchAwaitAsync(userdata: ?*anyopaque, b: *Io.Batch) Io.Cancelable!void { |
| 2658 | 2653 | poll_buffer[poll_len] = .{ |
| 2659 | 2654 | .fd = o.socket_handle, |
| 2660 | 2655 | .events = posix.POLL.IN | posix.POLL.ERR, |
| 2661 | | .revents = 0, |
| 2662 | 2656 | }; |
| 2663 | 2657 | poll_len += 1; |
| 2664 | 2658 | }, |
| ... | ... | @@ -2666,7 +2660,6 @@ fn batchAwaitAsync(userdata: ?*anyopaque, b: *Io.Batch) Io.Cancelable!void { |
| 2666 | 2660 | poll_buffer[poll_len] = .{ |
| 2667 | 2661 | .fd = o.socket_handle, |
| 2668 | 2662 | .events = posix.POLL.OUT | posix.POLL.ERR, |
| 2669 | | .revents = 0, |
| 2670 | 2663 | }; |
| 2671 | 2664 | poll_len += 1; |
| 2672 | 2665 | }, |
| ... | ... | @@ -2811,7 +2804,6 @@ fn batchAwaitConcurrent(userdata: ?*anyopaque, b: *Io.Batch, timeout: Io.Timeout |
| 2811 | 2804 | storage.slice[len] = .{ |
| 2812 | 2805 | .fd = fd, |
| 2813 | 2806 | .events = events, |
| 2814 | | .revents = 0, |
| 2815 | 2807 | }; |
| 2816 | 2808 | storage.len = len + 1; |
| 2817 | 2809 | } |