diff options
author | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2025-03-23 00:17:59 +0000 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2025-03-23 00:17:59 +0000 |
commit | a2feba2d918db861ea85d22887f73993c173e742 (patch) | |
tree | 7027dc2ded85a2ef0f8982e75099434f68c4a0d8 /thread/thread.rhm | |
parent | bca429dd94dafc49cf9134040dfdfb6baf0de10c (diff) |
Reorganize source, create basic threading and server
Need to create main world loop and have it message with web server
Diffstat (limited to 'thread/thread.rhm')
-rw-r--r-- | thread/thread.rhm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/thread/thread.rhm b/thread/thread.rhm new file mode 100644 index 0000000..a0c1b18 --- /dev/null +++ b/thread/thread.rhm @@ -0,0 +1,20 @@ +#lang rhombus/static + +import "thread.rkt" open + +export: + thread + thread_send + thread_receive + thread_receive_evt + thread_wait + sleep + sync_timeout + current_thread + +def thread_send: #{thread-send} +def thread_receive: #{thread-receive} +def thread_receive_evt: #{thread-receive-evt} +def thread_wait: #{thread-wait} +def sync_timeout: #{sync/timeout} +def current_thread: #{current-thread} |