|
|
|
|
|
by friendzis
1751 days ago
|
|
Problems with memory addressing are bound to happen with asynchronous memory manipulation: threads in C/C++ or concurrent GC in go.
The biggest issue here is that memory manipulation happens behind the scenes and the runtime does not offer effective tools to synchronise memory state manipulations. |
|
The GC only operates on “dead” allocations (afaik it remains non-moving) so it’s not a concern for now.