mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 21:59:16 +02:00
24 lines
588 B
Markdown
24 lines
588 B
Markdown
# SRFI 18 - Multithreading support
|
|
|
|
The `(srfi 18)` library provides multithreading support. See the [SRFI document](http://srfi.schemers.org/srfi-18/srfi-18.html) for more information.
|
|
|
|
- `thread?`
|
|
- `make-thread`
|
|
- `thread-name`
|
|
- `thread-specific`
|
|
- `thread-specific-set!`
|
|
- `thread-start!`
|
|
- `thread-sleep!`
|
|
- `thread-yield!`
|
|
- `thread-terminate!`
|
|
- `mutex?`
|
|
- `make-mutex`
|
|
- `mutex-lock!`
|
|
- `mutex-unlock!`
|
|
- `condition-variable?`
|
|
- `make-condition-variable`
|
|
- `condition-variable-wait!`
|
|
- `condition-variable-signal!`
|
|
- `condition-variable-broadcast!`
|
|
- `->heap`
|
|
- `Cyc-minor-gc`
|