diff options
author | pommicket <pommicket@gmail.com> | 2025-09-30 11:51:56 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-30 11:51:56 -0400 |
commit | ee18efcc7904a47a4a32aea70284074d0e4d9346 (patch) | |
tree | edf4fbf65712cb3aa542a107c8419ebddfd4361a /ted-internal.h | |
parent | f029ca734af1b4e16b7320ae2f85b3cb41b06324 (diff) |
Fix issue with inotify event reading
Diffstat (limited to 'ted-internal.h')
-rw-r--r-- | ted-internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ted-internal.h b/ted-internal.h index bf05f91..7c7a61c 100644 --- a/ted-internal.h +++ b/ted-internal.h @@ -452,6 +452,8 @@ struct Ted { u64 edit_notify_id; EditNotifyInfo *edit_notifys; + // 16384 = default inotify queue size + char inotify_event_buf[16384 * sizeof(struct inotify_event)]; }; typedef struct { |