Detecting kernel memory leaks
Detecting kernel memory leaks
Posted Jun 29, 2009 6:56 UTC (Mon) by nix (subscriber, #2304)In reply to: Detecting kernel memory leaks by dlang
Parent article: Detecting kernel memory leaks
The garbage collector doesn't have to do that everywhere, but on the C
stack, it does. It can often rely on alignment requirements because humans
cannot dictate the layout of the stack: only the compiler can. (On many
architectures, e.g. SPARC, they're hard requirements anyway.)
stack, it does. It can often rely on alignment requirements because humans
cannot dictate the layout of the stack: only the compiler can. (On many
architectures, e.g. SPARC, they're hard requirements anyway.)