Documentation fixes to stdlib (#2026)

This commit is contained in:
Pavel Punegov
2018-09-10 18:51:21 +03:00
committed by Nikolay Igotti
parent 78aac03c10
commit db8555b561
30 changed files with 411 additions and 227 deletions
+3 -2
View File
@@ -78,12 +78,13 @@
<a name="detach"></a>
## Object subgraph detachment
An object subgraph without external references can be disconnected using `detachObjectGraph` to
An object subgraph without external references can be disconnected using `DetachedObjectGraph<T>` to
a `COpaquePointer` value, which could be stored in `void*` data, so the disconnected object subgraphs
can be stored in a C data structure, and later attached back with `attachObjectGraph<T>` in an arbitrary thread
can be stored in a C data structure, and later attached back with `DetachedObjectGraph<T>.attach()` in an arbitrary thread
or a worker. Combining it with [raw memory sharing](#shared) it allows side channel object transfer between
concurrent threads, if the worker mechanisms are insufficient for a particular task.
<a name="shared"></a>
## Raw shared memory