Home | Forums | What's new | Resources | |
Memory allocator : bget or slob ? |
cafe-alpha - Apr 21, 2015 |
mrkotfw | Jun 18, 2015 | |||
In reference to LoC? SLOB has less AFAIK. There are fancier features in BGET. One key difference is that the pools of memory are statically allocated for SLOB, but it looks like you have the ability to expand the size of the pools during run-time. My thought process is that if you're at the point where the statically allocated pool is too small, either resize it in the headers, or rethink about your memory consumption. The key is that we don't have paged memory and a kernel to manage it all. |