Home | History | Annotate | Download | only in xml

Lines Matching full:program

35 detecting memory errors in your program with Memcheck.  For full
42 <sect1 id="quick-start.prepare" xreflabel="Preparing your program">
43 <title>Preparing your program</title>
45 <para>Compile your program with <option>-g</option> to include debugging
61 <sect1 id="quick-start.mcrun" xreflabel="Running your program under Memcheck">
62 <title>Running your program under Memcheck</title>
64 <para>If you normally run your program like this:</para>
75 <para>Your program will run much slower (eg. 20 to 30 times) than
85 <para>Here's an example C program, in a file called a.c, with a memory error
129 error it is. Here, the program wrote to some memory it should not
175 <para>"definitely lost": your program is leaking memory -- fix
179 <para>"probably lost": your program is leaking memory, unless you're
213 <para>Memcheck cannot detect every memory error your program has.
216 errors that could crash your program (eg. cause a segmentation
219 <para>Try to make your program so clean that Memcheck reports no
221 changes to the program cause Memcheck to report new errors.