|
|
|
|
|
by amelius
663 days ago
|
|
An OS has the job of managing resources, such as CPU, disk and memory. It is easy to understand how it has grown historically, but the fact that every process still manages its own memory is a little absurd. If your program __wants__ to manage its own memory, then that is simple: allocate a large (gc'd) blob of memory and run an allocator in it. The problem is that the current view has it backwards. |
|