Gropu log_queue members

This commit is contained in:
Kitaiti Makoto 2026-05-23 01:26:48 +09:00
parent 620a78aaa0
commit 2864933f8b
1 changed files with 1 additions and 2 deletions

View File

@ -46,12 +46,11 @@ typedef struct ruby_whisper_log {
typedef struct ruby_whisper_log_queue {
rb_nativethread_lock_t lock;
rb_nativethread_cond_t cond;
bool is_active;
size_t head;
size_t tail;
size_t size;
bool is_active;
ruby_whisper_log *logs;
} ruby_whisper_log_queue;