diff options
author | 2022-09-22 03:06:48 -0700 | |
---|---|---|
committer | 2022-09-22 03:06:48 -0700 | |
commit | 0968fd339f252e056b83f1591951ee6655652f9b (patch) | |
tree | 24d0033ec1991f2b79a17592dc5602eae539045c /src | |
parent | 2ca1861a54e831c44dae0044097726fd32e80725 (diff) | |
download | bun-0968fd339f252e056b83f1591951ee6655652f9b.tar.gz bun-0968fd339f252e056b83f1591951ee6655652f9b.tar.zst bun-0968fd339f252e056b83f1591951ee6655652f9b.zip |
Add epoll to list of syscalls that can fail
Diffstat (limited to 'src')
-rw-r--r-- | src/bun.js/node/syscall.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bun.js/node/syscall.zig b/src/bun.js/node/syscall.zig index cc34fc463..edb6937f5 100644 --- a/src/bun.js/node/syscall.zig +++ b/src/bun.js/node/syscall.zig @@ -98,6 +98,7 @@ pub const Tag = enum(u8) { kevent, kqueue, + epoll_ctl, pub var strings = std.EnumMap(Tag, JSC.C.JSStringRef).initFull(null); }; const PathString = @import("../../global.zig").PathString; |