apoch / epoch-language

Home of the Epoch Programming Language Project
Other
72 stars 3 forks source link

Garbage collection is thoroughly non-thread-safe #85

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The garbage collector currently operates on a "stop the world" basis, but only 
stops the current thread. Develop and deploy a strategy for handling concurrent 
garbage collection.

Original issue reported on code.google.com by don.ap...@gmail.com on 20 Dec 2010 at 6:37

GoogleCodeExporter commented 9 years ago
Moving forward, we'll be employing a green-thread and isolated thread model 
where GC does not need to operate across more than one thread/task at a time. 
This obviates the need for stopping the world.

Original comment by don.ap...@gmail.com on 11 Apr 2013 at 6:10