Documentation for thread-terminate changes

This commit is contained in:
Justin Ethier 2025-01-20 07:59:05 -08:00
parent 3db92dc3c2
commit 923806650f
2 changed files with 3 additions and 2 deletions

View file

@ -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:

View file

@ -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!