done merging draw thread with update thread

This commit is contained in:
2025-09-10 01:41:59 +01:00
parent dc3009bf54
commit 6961a76471
8 changed files with 68 additions and 78 deletions

View File

@@ -1,2 +1,2 @@
structure MailboxType =
struct datatype t = DRAW of DrawMsg.t | SEARCH of LineGap.t * string * Time.time end
struct datatype t = DRAW of DrawMsg.t | SEARCH of SearchMsg.t end

View File

@@ -0,0 +1 @@
structure SearchMsg = struct type t = LineGap.t * string * Time.time end