Recent content by JulsSmile

  1. J

    Prevent memory leakage from coding

    Thanks for the advice. But even in Java garbage collector does not solve the problem with memory leaks completely.
  2. J

    Prevent memory leakage from coding

    I am very grateful! Many thanks to ScottSalley! Your explanation I printed and hung at the computer!
  3. J

    Prevent memory leakage from coding

    Thanks for answers. I have already finished my researches. But I have a new question - how to avoid memory leaks in my code? I read about memory management and there are a few tips. I'm interested in what you are doing to avoid leaks?
  4. J

    Prevent memory leakage from coding

    How about vld. Is there someone who use it?
  5. J

    Prevent memory leakage from coding

    Oh! I know valgrind - the best tool for Linux! I want to know debuggers for windows ))
  6. J

    Prevent memory leakage from coding

    Thanks for the answers! I'm curious to know what you prefer debuggers for Linux and for Windows? Perhaps you prefer another methods?
  7. J

    Fix Memory Leak in C Program w/ Matrix Multiplication

    I can recommend valgrind)) windetector is not bad
  8. J

    Prevent memory leakage from coding

    I am studying a problem releated to memory leakage. Now, there are many tools to check memory leak at run-time (dynamic analysis), and some tools can check memory leakage at compile-time (static analysis). But I have some questions: How do you think to prevent memory leakage from coding phase...
  9. J

    Fix Memory Leak in C Program w/ Matrix Multiplication

    To find where the leak is necessary to use a debugger. For windows deleaker is good .
Back
Top