From a2feba2d918db861ea85d22887f73993c173e742 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Sun, 23 Mar 2025 00:17:59 +0000 Subject: Reorganize source, create basic threading and server Need to create main world loop and have it message with web server --- thread/thread.rhm | 20 ++++++++++++++++++++ thread/thread.rkt | 10 ++++++++++ 2 files changed, 30 insertions(+) create mode 100644 thread/thread.rhm create mode 100644 thread/thread.rkt (limited to 'thread') 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} diff --git a/thread/thread.rkt b/thread/thread.rkt new file mode 100644 index 0000000..bf7d8eb --- /dev/null +++ b/thread/thread.rkt @@ -0,0 +1,10 @@ +#lang racket + +(provide thread + thread-send + thread-receive + thread-receive-evt + thread-wait + sleep + sync/timeout + current-thread) -- cgit v1.2.3