|
From: Nicholas N. <nj...@cs...> - 2005-03-01 20:25:41
|
CVS commit by nethercote: fix typo M +1 -1 valgrind-quick-start 1.3 --- devel-home/valgrind/valgrind-quick-start #1.2:1.3 @@ -25,5 +25,5 @@ Use this command line: - valgrind --tool=memcheck --num-callers=40 --leak-check=yes myprog arg2 arg2 + valgrind --tool=memcheck --num-callers=40 --leak-check=yes myprog arg1 arg2 The --tool option invokes Memcheck. The --num-callers option asks for big |
|
From: Nicholas N. <nj...@cs...> - 2005-03-02 23:41:00
|
CVS commit by nethercote: memory wibble M +3 -2 valgrind-quick-start 1.4 --- devel-home/valgrind/valgrind-quick-start #1.3:1.4 @@ -31,6 +31,7 @@ option turns on the memory leak detector. -Your program will run much slower (eg. 20 to 30 times) than normal. -Memcheck will issue messages about memory errors and leaks that it detects. +Your program will run much slower (eg. 20 to 30 times) than normal, and use +a lot more memory. Memcheck will issue messages about memory errors and +leaks that it detects. |
|
From: Nicholas N. <nj...@cs...> - 2005-03-04 05:34:26
|
CVS commit by nethercote: update M +6 -5 valgrind-quick-start 1.5 --- devel-home/valgrind/valgrind-quick-start #1.4:1.5 @@ -10,5 +10,7 @@ What follows is the minimum information you need to start detecting memory -errors in your program with Memcheck. +errors in your program with Memcheck. Note that this guide applies to +Valgrind version 2.4.0; some of the information is not quite right for +earlier versions. @@ -25,9 +27,8 @@ Use this command line: - valgrind --tool=memcheck --num-callers=40 --leak-check=yes myprog arg1 arg2 + valgrind --leak-check=yes myprog arg1 arg2 -The --tool option invokes Memcheck. The --num-callers option asks for big -stack traces, which make error messages more informative. The --leak-check -option turns on the memory leak detector. +Memcheck is the default tool. The --leak-check option turns on the memory +leak detector. Your program will run much slower (eg. 20 to 30 times) than normal, and use |
|
From: Nicholas N. <nj...@cs...> - 2005-03-04 14:31:08
|
CVS commit by nethercote:
Added Aikido.
M +4 -0 users.html 1.82
--- devel-home/valgrind/users.html #1.81:1.82
@@ -240,4 +240,8 @@
<dd>An experimental OO programming language implementation, including a
structure editor.
+
+<dt><a href="http://sf.net/projects/aikido">Aikido</a>
+<dd>An interpreted prototyping and scripting language with a syntax that
+ resembles C++ and Java.
</dl>
|
|
From: Nicholas N. <nj...@cs...> - 2005-03-11 03:59:37
|
CVS commit by nethercote: Fix line numbers in example. M +4 -4 valgrind-quick-start 1.6 --- devel-home/valgrind/valgrind-quick-start #1.5:1.6 @@ -58,10 +58,10 @@ ==19182== Invalid write of size 4 - ==19182== at 0x804838F: f (example.c:8) - ==19182== by 0x80483AB: main (example.c:14) + ==19182== at 0x804838F: f (example.c:5) + ==19182== by 0x80483AB: main (example.c:11) ==19182== Address 0x1BA45050 is 0 bytes after a block of size 40 alloc'd ==19182== at 0x1B8FF5CD: malloc (vg_replace_malloc.c:130) - ==19182== by 0x8048385: f (example.c:7) - ==19182== by 0x80483AB: main (example.c:14) + ==19182== by 0x8048385: f (example.c:6) + ==19182== by 0x80483AB: main (example.c:11) Things to notice: |
|
From: Nicholas N. <nj...@cs...> - 2005-03-12 04:33:07
|
CVS commit by nethercote: The website has moved! M +13 -1 index.html 1.25 --- devel-home/valgrind/index.html #1.24:1.25 @@ -1,2 +1,14 @@ +<html> +<body> +<center> +<h2>Valgrind, A GPL'd system for debugging and profiling x86-Linux programs</h2> +<p>March 12, 2005: Valgrind's home page has moved to +<a href="http://www.valgrind.org">http://www.valgrind.org</a>. +</p> +</center> +</body> +</html> + +<!-- <?php $page_title = "A GPL'd system for debugging and profiling x86-Linux programs"; @@ -36,3 +48,3 @@ include "footer.inc" ?> - +--> |
|
From: Dirk M. <dm...@gm...> - 2005-03-12 18:11:41
|
On Saturday 12 March 2005 05:33, Nicholas Nethercote wrote: > The website has moved! Hmm, you just could have told me.. The new website is not supposed to get mirrored under valgrind.kde.org ? we can do a CNAME on valgrind.org or do a permanent http redirect (for all urls under valgrind.kde.org, not just the main page), whatever fits the purpose better. Dirk |
|
From: Nicholas N. <nj...@cs...> - 2005-03-12 04:34:07
|
CVS commit by nethercote: Hmm, try that again. M +0 -40 index.html 1.26 --- devel-home/valgrind/index.html #1.25:1.26 @@ -9,42 +9,2 @@ </body> </html> - -<!-- -<?php - $page_title = "A GPL'd system for debugging and profiling x86-Linux programs"; - $page_heading = "Latest News"; - include "header.inc" -?> - -<p class="news">August 31, 2004: A new stable release, <a -href="downloads.html">valgrind 2.2.0</a>, is available. 2.2.0 brings -many improvements over 2.0.0, and includes the new Massif -heap-profiling tool. - -<p class="news">March 04, 2004: An experimental PowerPC port is available. -See <a href="related.html">Related Projects</a>. -<hr> - -<p> -<strong>Valgrind is a GPL'd system for debugging and profiling x86-Linux -programs.</strong> - -With the tools that come with Valgrind, you can automatically detect -many memory management and threading bugs, avoiding hours of -frustrating bug-hunting, making your programs more stable. You can -also perform detailed profiling, to speed up and reduce memory use -of your programs. - -<p> -The Valgrind distribution includes five tools: two memory error -detectors, a thread error detector, a cache profiler and a heap -profiler. -Several other -tools have been built with Valgrind. -<p> -Use the menu at left to learn more. - -<?php - include "footer.inc" -?> ---> |