aboutsummaryrefslogtreecommitdiff
path: root/docs/threads.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-01-02 16:29:21 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-01-02 16:29:21 -0500
commit1a4a7250bb25a843dc977d0c6cdf65ce0df0e6c5 (patch)
tree05a1da5e11951f13d1f9f3d36d512829319cf9f0 /docs/threads.md
parentbe384c0caa92cb152c264125fb265373e6a50440 (diff)
Add some light docs for mutexed access
Diffstat (limited to 'docs/threads.md')
-rw-r--r--docs/threads.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/threads.md b/docs/threads.md
index 44f5967e..4d91e8bd 100644
--- a/docs/threads.md
+++ b/docs/threads.md
@@ -2,7 +2,7 @@
Tomo supports POSIX threads (pthreads) through the `Thread` type. The
recommended practice is to have each thread interact with other threads only
-through mutex-guarded datastructures.
+through [mutex-guarded datastructures](mutexed.md).
## Thread Methods