mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 20:45:06 +02:00
Sync files from heap-dev
This commit is contained in:
parent
6145f40f45
commit
29877f68e9
1 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,7 @@ Cyclone implements the Scheme language as documented by the [R<sup>7</sup>RS Sch
|
||||||
|
|
||||||
A [R<sup>7</sup>RS Compliance Chart](Scheme-Language-Compliance) lists differences between the specification and Cyclone's implementation.
|
A [R<sup>7</sup>RS Compliance Chart](Scheme-Language-Compliance) lists differences between the specification and Cyclone's implementation.
|
||||||
|
|
||||||
[API Documentation](API) is available for the libraries provide by Cyclone.
|
[API Documentation](API) is available for the libraries provided by Cyclone.
|
||||||
|
|
||||||
# Multithreaded Programming
|
# Multithreaded Programming
|
||||||
|
|
||||||
|
@ -143,7 +143,7 @@ Due to how Cyclone's garbage collector is implemented, objects are relocated in
|
||||||
|
|
||||||
Finally, note there are some objects that are not relocated so the above does not apply:
|
Finally, note there are some objects that are not relocated so the above does not apply:
|
||||||
|
|
||||||
- Characters are stored using value types and do not need to be garbage collected.
|
- Characters and integers are stored using value types and do not need to be garbage collected.
|
||||||
- Symbols are stored in a global table rather than the stack/heap.
|
- Symbols are stored in a global table rather than the stack/heap.
|
||||||
- Mutexes are always allocated on the heap since by definition they are used by more than one thread.
|
- Mutexes are always allocated on the heap since by definition they are used by more than one thread.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue