rename termio thread message struct

This commit is contained in:
Mitchell Hashimoto
2022-11-05 19:34:41 -07:00
parent cd705359e8
commit 8f1fcc64e8
4 changed files with 43 additions and 43 deletions

View File

@@ -14,7 +14,7 @@ const log = std.log.scoped(.io_thread);
/// The type used for sending messages to the IO thread. For now this is
/// hardcoded with a capacity. We can make this a comptime parameter in
/// the future if we want it configurable.
const Mailbox = BlockingQueue(termio.message.IO, 64);
const Mailbox = BlockingQueue(termio.Message, 64);
/// The main event loop for the thread. The user data of this loop
/// is always the allocator used to create the loop. This is a convenience