diff options
Diffstat (limited to 'src/bun.js/event_loop.zig')
-rw-r--r-- | src/bun.js/event_loop.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bun.js/event_loop.zig b/src/bun.js/event_loop.zig index 4c36f1c05..76206de54 100644 --- a/src/bun.js/event_loop.zig +++ b/src/bun.js/event_loop.zig @@ -519,7 +519,7 @@ pub const Poller = struct { const FileBlobLoader = JSC.WebCore.FileBlobLoader; const FileSink = JSC.WebCore.FileSink; const Subprocess = JSC.Subprocess; - + const BufferedInput = Subprocess.BufferedInput; /// epoll only allows one pointer /// We unfortunately need two pointers: one for a function call and one for the context /// We use a tagged pointer union and then call the function with the context pointer @@ -527,6 +527,7 @@ pub const Poller = struct { FileBlobLoader, FileSink, Subprocess, + BufferedInput, }); const Kevent = std.os.Kevent; const kevent = std.c.kevent; |