blob: 4bf911ebb091a26582b949346f20d2fd23e5d644 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#lang rhombus/static
import "thread.rkt" open
export:
thread
thread_send
thread_receive
thread_receive_evt
thread_wait
sleep
sync_timeout
current_thread
current_timestamp
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}
def current_timestamp: #{current-inexact-monotonic-milliseconds}
|