Memory Analyzer
Memory Analyzer
What would you all recommend as a good Memory Analyzer to check your OS kernel file ? I have seen many out there, but I really hadn't seen one that stands out above the rest. I am wanting to verify leaks in the kernel file. I am wanting to make sure its solid.
Re: Memory Analyzer
Since this is a kernel land, you'll have to make your own logging memory allocator(s).
Learn to read.
Re: Memory Analyzer
dozniak wrote:Since this is a kernel land, you'll have to make your own logging memory allocator(s).
Yea I was afraid of that. I was looking for the "quick fix". I should know better then that. Thanks for the reply.
Re: Memory Analyzer
If you want to do a little bit of ahead-of-time analysis, then look into "static code analyzer" like clang static-analyzer, PVS-Studio or Coverity. They are able to spot most logic errors in memory management before you even run your code.Kortath wrote:Yea I was afraid of that. I was looking for the "quick fix". I should know better then that. Thanks for the reply.
It isn't a panacea, but very useful debugging tool anyway.
Learn to read.
Re: Memory Analyzer
dozniak wrote:If you want to do a little bit of ahead-of-time analysis, then look into "static code analyzer" like clang static-analyzer, PVS-Studio or Coverity. They are able to spot most logic errors in memory management before you even run your code.Kortath wrote:Yea I was afraid of that. I was looking for the "quick fix". I should know better then that. Thanks for the reply.
It isn't a panacea, but very useful debugging tool anyway.
Haha, goddess of healing. I love it.
Yea I have heard of coverity, never tried it. Static Code Analyzer. That sounds more like what I am after. Cool beans !!