]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
fix up the other places as well
authorDirk Mueller <dmuell@gmx.net>
Sat, 13 Mar 2004 02:49:49 +0000 (02:49 +0000)
committerDirk Mueller <dmuell@gmx.net>
Sat, 13 Mar 2004 02:49:49 +0000 (02:49 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2314

coregrind/arch/x86-linux/Makefile.am
coregrind/docs/coregrind_core.html
coregrind/vg_malloc2.c

index 139597f9cb07c5d48bed18984ec4747f4b4f3438..cd34ec8c2882525e6409cee38a94a4e31a21bee7 100644 (file)
@@ -1,2 +1,14 @@
 
+valdir = $(libdir)/valgrind
+val_PROGRAMS = libpthread.so
 
+libpthread_so_SOURCES = \
+·       vg_libpthread.c \
+·       vg_libpthread_unimp.c \
+·       vg_syscall.S
+libpthread_so_DEPENDENCIES = $(srcdir)/vg_libpthread.vs
+libpthread_so_LDFLAGS = -Werror -fno-omit-frame-pointer -UVG_LIBDIR \
+·       -shared -fpic \
+·       -Wl,-version-script $(srcdir)/vg_libpthread.vs \
+·       -Wl,-z,nodelete \
+·       -Wl,--soname=libpthread.so.0
index 24deff8390e18338e02d3cd6e9e2c951ea4262b5..34edcf2425ba9f78adefe47e164e9c638685d72f 100644 (file)
@@ -710,7 +710,7 @@ not Cachegrind.
 For tools that use their own version of <code>malloc()</code> (e.g. Memcheck
 and Addrcheck), the following options apply.
 <ul>
-  <li><code>--alignment=&lt;number&gt;</code> [default: 4]<br> <p>By
+  <li><code>--alignment=&lt;number&gt;</code> [default: 8]<br> <p>By
       default Valgrind's <code>malloc</code>, <code>realloc</code>,
       etc, return 4-byte aligned addresses.  These are suitable for
       any accesses on x86 processors. 
index 13d9a92381952dbc10e6f5b5fb17d46ddde1f060..bf03b2a54c6b0c9d42ac8e31a5fe43d32ddbead9 100644 (file)
@@ -46,7 +46,7 @@ Bool VG_(clo_sloppy_malloc)  = False;
 Bool VG_(clo_trace_malloc)   = False;
 
 /* Minimum alignment in functions that don't specify alignment explicitly.
-   default: 0, i.e. use default of the machine (== 4) */
+   default: 0, i.e. use default of the machine (== 8) */
 Int  VG_(clo_alignment) = 8;
 
 
@@ -86,7 +86,7 @@ void VG_(replacement_malloc_print_usage)(void)
 {
    VG_(printf)(
 "    --sloppy-malloc=no|yes    round malloc sizes to next word? [no]\n"
-"    --alignment=<number>      set minimum alignment of allocations [4]\n"
+"    --alignment=<number>      set minimum alignment of allocations [8]\n"
    );
 }