mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Update concurrent.md
This commit is contained in:
parent
97fac74858
commit
ef0970a769
1 changed files with 2 additions and 2 deletions
|
@ -51,9 +51,9 @@ All other objects must be explicitly shared before they can be safely used by mu
|
|||
|
||||
(make-shared obj)
|
||||
|
||||
Return a reference to an object that can be safely shared by many threads.
|
||||
Return an object that can be safely shared by many threads.
|
||||
|
||||
If the given object is atomic or already shared it it simply returned. Otherwise it is necessary to create a copy of the object.
|
||||
If the given object is already shared it it simply returned. Otherwise it is necessary to create a copy of the object.
|
||||
|
||||
Note this function may trigger a minor GC if a thread-local pair or vector is passed.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue