]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Just call me Mr Brain-Dead Moron. Move the documentation sources to
authorJulian Seward <jseward@acm.org>
Wed, 13 Nov 2002 21:24:57 +0000 (21:24 +0000)
committerJulian Seward <jseward@acm.org>
Wed, 13 Nov 2002 21:24:57 +0000 (21:24 +0000)
where I _should_ have put them in the first place, and fix up the
Makefile.am's accordingly.  'make' and 'make install' now work.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1292

21 files changed:
addrcheck/docs/Makefile.am
addrcheck/docs/ac_main.html [moved from addrcheck/ac_main.html with 100% similarity]
cachegrind/docs/Makefile.am
cachegrind/docs/cg_main.html [moved from cachegrind/cg_main.html with 100% similarity]
cachegrind/docs/cg_techdocs.html [moved from cachegrind/cg_techdocs.html with 100% similarity]
corecheck/docs/Makefile.am
corecheck/docs/cc_main.html [new file with mode: 0644]
coregrind/docs/Makefile.am
coregrind/docs/coregrind_core.html [moved from coregrind/coregrind_core.html with 100% similarity]
coregrind/docs/coregrind_intro.html [moved from coregrind/coregrind_intro.html with 100% similarity]
coregrind/docs/coregrind_skins.html [moved from coregrind/coregrind_skins.html with 100% similarity]
docs/Makefile.am
helgrind/docs/Makefile.am
helgrind/docs/hg_main.html [moved from helgrind/hg_main.html with 100% similarity]
lackey/docs/Makefile.am
lackey/docs/lk_main.html [moved from lackey/lk_main.html with 100% similarity]
memcheck/docs/Makefile.am
memcheck/docs/mc_main.html [moved from memcheck/mc_main.html with 100% similarity]
memcheck/docs/mc_techdocs.html [moved from memcheck/mc_techdocs.html with 100% similarity]
none/docs/Makefile.am
none/docs/nl_main.html [moved from none/nl_main.html with 100% similarity]

index 39b9008b6a65683030c6ea8a7fd3641aa26dcae3..6997784200c309ce6e7252b22529c6735748d5b2 100644 (file)
@@ -1,5 +1,5 @@
 docdir = $(datadir)/doc/valgrind
 
-doc_DATA = index.html
+doc_DATA = ac_main.html
 
 EXTRA_DIST = $(doc_DATA)
index e8a58fa18eef3ee56e37498ef0d7beff2dcbd53c..c0bfc1ece8e0c4d1bd74071ea91d262995ccc980 100644 (file)
@@ -1,5 +1,5 @@
 docdir = $(datadir)/doc/valgrind
 
-doc_DATA = index.html manual.html nav.html techdocs.html
+doc_DATA = cg_main.html cg_techdocs.html 
 
 EXTRA_DIST = $(doc_DATA)
index 39b9008b6a65683030c6ea8a7fd3641aa26dcae3..5cbe4ef37545b96d977f7d5d0a9792acd9f2cf54 100644 (file)
@@ -1,5 +1,5 @@
 docdir = $(datadir)/doc/valgrind
 
-doc_DATA = index.html
+doc_DATA = cc_main.html
 
 EXTRA_DIST = $(doc_DATA)
diff --git a/corecheck/docs/cc_main.html b/corecheck/docs/cc_main.html
new file mode 100644 (file)
index 0000000..e56954d
--- /dev/null
@@ -0,0 +1,66 @@
+<html>
+  <head>
+    <style type="text/css">
+      body      { background-color: #ffffff;
+                  color:            #000000;
+                  font-family:      Times, Helvetica, Arial;
+                  font-size:        14pt}
+      h4        { margin-bottom:    0.3em}
+      code      { color:            #000000;
+                  font-family:      Courier; 
+                  font-size:        13pt }
+      pre       { color:            #000000;
+                  font-family:      Courier; 
+                  font-size:        13pt }
+      a:link    { color:            #0000C0;
+                  text-decoration:  none; }
+      a:visited { color:            #0000C0; 
+                  text-decoration:  none; }
+      a:active  { color:            #0000C0;
+                  text-decoration:  none; }
+    </style>
+    <title>Cachegrind</title>
+  </head>
+
+<body bgcolor="#ffffff">
+
+<a name="title"></a>
+<h1 align=center>CoreCheck</h1>
+<center>This manual was last updated on 2002-10-03</center>
+<p>
+
+<center>
+<a href="mailto:njn25@cam.ac.uk">njn25@cam.ac.uk</a><br>
+Copyright &copy; 2000-2002 Nicholas Nethercote
+<p>
+CoreCheck is licensed under the GNU General Public License, 
+version 2<br>
+CoreCheck is a Valgrind skin that does very basic error checking.
+</center>
+
+<p>
+
+<h2>1&nbsp; CoreCheck</h2>
+
+CoreCheck is a very simple skin for Valgrind.  It adds no instrumentation to
+the program's code, and only reports the few kinds of errors detected by
+Valgrind's core.  It is mainly of use for Valgrind's developers for debugging
+and regression testing.
+<p>
+The errors detected are those found by the core when
+<code>VG_(needs).core_errors</code> is set.  These include:
+
+<ul>
+<li>Pthread API errors (many;  eg. unlocking a non-locked mutex)<p>
+<li>Silly arguments to <code>malloc() </code> et al (eg. negative size)<p>
+<li>Invalid file descriptors to blocking syscalls <code>read()</code> and 
+    <code>write()</code><p>
+<li>Bad signal numbers passed to <code>sigaction()</code><p>
+<li>Attempts to install signal handler for <code>SIGKILL</code> or
+    <code>SIGSTOP</code> <p>
+</ul>
+
+<hr width="100%">
+</body>
+</html>
+
index c11ba7f0904fbb66e7e666a0624b5db9797a23bd..1adb3de46d89a9a3255bd95d7d7da0d5c088ecd9 100644 (file)
@@ -1,5 +1,5 @@
 docdir = $(datadir)/doc/valgrind
 
-doc_DATA = index.html manual.html nav.html techdocs.html skins.html
+doc_DATA = coregrind_core.html coregrind_intro.html coregrind_skins.html
 
 EXTRA_DIST = $(doc_DATA)
index 39b9008b6a65683030c6ea8a7fd3641aa26dcae3..53b500e76060cebb63c535844ee9ce1309b04b18 100644 (file)
@@ -1,5 +1,5 @@
 docdir = $(datadir)/doc/valgrind
 
-doc_DATA = index.html
+doc_DATA = manual.html
 
 EXTRA_DIST = $(doc_DATA)
index 39b9008b6a65683030c6ea8a7fd3641aa26dcae3..08c32b38fca69d90e0628c48a41e40aafa592137 100644 (file)
@@ -1,5 +1,5 @@
 docdir = $(datadir)/doc/valgrind
 
-doc_DATA = index.html
+doc_DATA = hg_main.html
 
 EXTRA_DIST = $(doc_DATA)
index 39b9008b6a65683030c6ea8a7fd3641aa26dcae3..d11a50bc73ca1d26c7efd5bcd5eb3f981627b96a 100644 (file)
@@ -1,5 +1,5 @@
 docdir = $(datadir)/doc/valgrind
 
-doc_DATA = index.html
+doc_DATA = lk_main.html
 
 EXTRA_DIST = $(doc_DATA)
similarity index 100%
rename from lackey/lk_main.html
rename to lackey/docs/lk_main.html
index e8a58fa18eef3ee56e37498ef0d7beff2dcbd53c..44229bf514eff881e847fd12f9c183851a9d8580 100644 (file)
@@ -1,5 +1,5 @@
 docdir = $(datadir)/doc/valgrind
 
-doc_DATA = index.html manual.html nav.html techdocs.html
+doc_DATA = mc_main.html mc_techdocs.html
 
 EXTRA_DIST = $(doc_DATA)
index 39b9008b6a65683030c6ea8a7fd3641aa26dcae3..4fdc538947ff90dfa40cb8f7de2f7a316e85a835 100644 (file)
@@ -1,5 +1,5 @@
 docdir = $(datadir)/doc/valgrind
 
-doc_DATA = index.html
+doc_DATA = nl_main.html
 
 EXTRA_DIST = $(doc_DATA)
similarity index 100%
rename from none/nl_main.html
rename to none/docs/nl_main.html