aboutsummaryrefslogtreecommitdiff
path: root/docs/threads.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-05 00:40:52 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-03-05 00:40:52 -0500
commit899e2cd3f1ea5f598947c7862d8f76378191b369 (patch)
treea590027864b899b22bcc9eb921a55910f50de6f2 /docs/threads.md
parent9a3162633d358c9dc698b2733027981203514dc9 (diff)
Further shorten docs
Diffstat (limited to 'docs/threads.md')
-rw-r--r--docs/threads.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/threads.md b/docs/threads.md
index 4d8f8962..3bd2dd0f 100644
--- a/docs/threads.md
+++ b/docs/threads.md
@@ -14,7 +14,6 @@ through [mutex-guarded datastructures](mutexed.md).
### `cancel`
Requests the cancellation of a specified thread.
-**Signature:**
```tomo
func cancel(thread: Thread)
```
@@ -34,7 +33,6 @@ Nothing.
### `detach`
Detaches a specified thread, allowing it to run independently.
-**Signature:**
```tomo
func detach(thread: Thread)
```
@@ -51,7 +49,6 @@ Nothing.
### `join`
Waits for a specified thread to terminate.
-**Signature:**
```tomo
func join(thread: Thread)
```
@@ -71,7 +68,6 @@ Nothing.
### `new`
Creates a new thread to execute a specified function.
-**Signature:**
```tomo
func new(fn: func(->Void) -> Thread)
```