apoch / epoch-language

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

Handles are not recycled #76

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
String, buffer, and structure handles are currently allocated monotonically and 
never recycled. This can lead to overflow and/or handle exhaustion issues in 
combination with a high rate of garbage turnover.

Implement a generic system that can be used for allocating and recycling 
resource handles internally.

Original issue reported on code.google.com by don.ap...@gmail.com on 5 Dec 2010 at 1:02

GoogleCodeExporter commented 9 years ago
Handle allocator is now in place and stress-tested with a low maximum handle to 
ensure that allocation patterns aren't (too) pathological under heavy load.

Original comment by don.ap...@gmail.com on 2 Jun 2011 at 7:51