From 6328909e43a6a169f58ac8f41d5117115a6fbe7b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 1 Apr 2025 20:59:20 -0400 Subject: [PATCH] Tweak threads code --- examples/pthreads/pthreads.tm | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/examples/pthreads/pthreads.tm b/examples/pthreads/pthreads.tm index cfb58aa..975b981 100644 --- a/examples/pthreads/pthreads.tm +++ b/examples/pthreads/pthreads.tm @@ -60,25 +60,28 @@ struct pthread_t(; extern, opaque): thread } - func join(p:@pthread_t): inline C { pthread_join(*_$p, NULL); } - func cancel(p:@pthread_t): inline C { pthread_cancel(*_$p); } - func detatch(p:@pthread_t): inline C { pthread_detach(*_$p); } + func join(p:pthread_t): inline C { pthread_join(_$p, NULL); } + func cancel(p:pthread_t): inline C { pthread_cancel(_$p); } + func detatch(p:pthread_t): inline C { pthread_detach(_$p); } struct IntQueue(_queue:@[Int], _mutex:@pthread_mutex_t, _cond:@pthread_cond_t): func new(initial=[:Int] -> IntQueue): return IntQueue(@initial, pthread_mutex_t.new(), pthread_cond_t.new()) func give(q:IntQueue, n:Int): - do: q._mutex:lock(); defer: q._mutex:unlock() + do: q._mutex:lock() q._queue:insert(n) + q._mutex:unlock() q._cond:signal() func take(q:IntQueue -> Int): - do: q._mutex:lock(); defer: q._mutex:unlock() - repeat: - if n := q._queue:pop(1): - return n + do: q._mutex:lock() + n := q._queue:pop(1) + while not n: q._cond:wait(q._mutex) + n = q._queue:pop(1) + q._mutex:unlock() + return n! fail("Unreachable") func main(): @@ -87,8 +90,9 @@ func main(): say_mutex := pthread_mutex_t.new() announce := func(speaker:Text, text:Text): - do: say_mutex:lock(); defer: say_mutex:unlock() + do: say_mutex:lock() say("$\033[2m[$speaker]$\033[m $text") + say_mutex:unlock() worker := pthread_t.new(func(): say("I'm in the thread!")