From ee18efcc7904a47a4a32aea70284074d0e4d9346 Mon Sep 17 00:00:00 2001 From: pommicket Date: Tue, 30 Sep 2025 11:51:56 -0400 Subject: Fix issue with inotify event reading --- ted-internal.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ted-internal.h') 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 { -- cgit v1.2.3