mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
Documentation for thread-terminate changes
This commit is contained in:
parent
3db92dc3c2
commit
923806650f
2 changed files with 3 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
Bug Fixes
|
||||
|
||||
- Yorick Hardy modified the runtime to allow `thread-terminate!` to take a thread object as an argument, per SRFI 18.
|
||||
- @nmeum fixed `open_memstream`/`fmemopen` feature detection with GCC >= 14.
|
||||
- Fixed a bug in `apply` where an error may be raised when processing quoted sub-expressions. For example the following would throw an error: `(apply cons '(5 (1 2)))`. Thanks to @srgx for the bug report!
|
||||
- Fixed a beta expansion optimization bug where code such as the following would cause the compiler to hang. Thanks to Yorick Hardy for the bug report:
|
||||
|
|
|
@ -92,9 +92,9 @@ The current thread exits the running state as if its quantum had expired.
|
|||
|
||||
# thread-terminate!
|
||||
|
||||
(thread-terminate!)
|
||||
(thread-terminate! thread)
|
||||
|
||||
Immediately abort the current thread.
|
||||
Immediately abort the given thread.
|
||||
|
||||
# thread-join!
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue