]> git.ipfire.org Git - thirdparty/valgrind.git/log
thirdparty/valgrind.git
17 years agoDARWIN sync: remove redundant check (it's done again in pre_mem_sock_addr()).
Nicholas Nethercote [Sun, 24 May 2009 22:45:33 +0000 (22:45 +0000)] 
DARWIN sync: remove redundant check (it's done again in pre_mem_sock_addr()).

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

17 years agoDARWIN sync: sys_open wrapper.
Nicholas Nethercote [Sun, 24 May 2009 22:32:33 +0000 (22:32 +0000)] 
DARWIN sync: sys_open wrapper.

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

17 years agoDARWIN sync: sys_readlink layout.
Nicholas Nethercote [Sat, 23 May 2009 01:51:54 +0000 (01:51 +0000)] 
DARWIN sync: sys_readlink layout.

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

17 years agoDARWIN sync: remove '.' from some field names for consistency, and factor
Nicholas Nethercote [Sat, 23 May 2009 01:18:44 +0000 (01:18 +0000)] 
DARWIN sync:  remove '.' from some field names for consistency, and factor
out some variables.

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

17 years agoDARWIN sync: all the timeval stuff
Nicholas Nethercote [Fri, 22 May 2009 08:12:46 +0000 (08:12 +0000)] 
DARWIN sync: all the timeval stuff

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

17 years agoDARWIN sync: comment and braces.
Nicholas Nethercote [Fri, 22 May 2009 07:09:03 +0000 (07:09 +0000)] 
DARWIN sync: comment and braces.

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

17 years agoDARWIN sync: change the 3rd arg of VG_(fcntl).
Nicholas Nethercote [Fri, 22 May 2009 07:08:12 +0000 (07:08 +0000)] 
DARWIN sync: change the 3rd arg of VG_(fcntl).

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

17 years agoDARWIN sync: export VG_(socket).
Nicholas Nethercote [Fri, 22 May 2009 02:00:27 +0000 (02:00 +0000)] 
DARWIN sync: export VG_(socket).

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

17 years agoPartly revert r10044 -- do use struct vki_sockaddr, and define it for AIX.
Nicholas Nethercote [Fri, 22 May 2009 00:52:14 +0000 (00:52 +0000)] 
Partly revert r10044 -- do use struct vki_sockaddr, and define it for AIX.

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

17 years agoAvoid struct vki_sockaddr_in in my_connect(), because it's not defined on
Nicholas Nethercote [Fri, 22 May 2009 00:47:08 +0000 (00:47 +0000)] 
Avoid struct vki_sockaddr_in in my_connect(), because it's not defined on
all platforms;  void* suffices.

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

17 years agoAbort on unknown fcntl, rather than doing no checking.
Nicholas Nethercote [Fri, 22 May 2009 00:38:15 +0000 (00:38 +0000)] 
Abort on unknown fcntl, rather than doing no checking.

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

17 years agoDARWIN sync: add ML_({PRE,POST}_unknown_ioctl).
Nicholas Nethercote [Fri, 22 May 2009 00:15:06 +0000 (00:15 +0000)] 
DARWIN sync: add ML_({PRE,POST}_unknown_ioctl).

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

17 years agoMerge r10085, r10086 (post-fork handling) from the DARWIN branch.
Nicholas Nethercote [Thu, 21 May 2009 23:59:34 +0000 (23:59 +0000)] 
Merge r10085, r10086 (post-fork handling) from the DARWIN branch.

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

17 years agoDARWIN sync: improve syscall retval tracking, and factor out position code.
Nicholas Nethercote [Thu, 21 May 2009 23:53:40 +0000 (23:53 +0000)] 
DARWIN sync: improve syscall retval tracking, and factor out position code.

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

17 years agoDARWIN sync: spacing and layout.
Nicholas Nethercote [Thu, 21 May 2009 23:52:52 +0000 (23:52 +0000)] 
DARWIN sync: spacing and layout.

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

17 years agoHandle DW_CFA_{remember,restore}_state. This requires having a stack
Julian Seward [Thu, 21 May 2009 15:33:36 +0000 (15:33 +0000)] 
Handle DW_CFA_{remember,restore}_state.  This requires having a stack
of currently on-the-go register rules, rather than just one.

gcc doesn't appear to generate these (it's pretty darn obscure), but
they do turn up a piece of handwritten assembly somewhere in the
depths of Python-2.6 on amd64-linux.

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

17 years agoWhen updating the constraint for a location following a race, make
Julian Seward [Thu, 21 May 2009 14:54:05 +0000 (14:54 +0000)] 
When updating the constraint for a location following a race, make
sure the read-constraint <= the write-constraint.  Failure to do this
leads to assertion failures later on.  Fixes #181394.

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

17 years agoFix bogus assertion pertaining to validity checking of reader-writer
Julian Seward [Thu, 21 May 2009 14:49:55 +0000 (14:49 +0000)] 
Fix bogus assertion pertaining to validity checking of reader-writer
locks, as reported in #188248.

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

17 years agoMerge r10071 (VALGRIND_INTERNAL_PRINTF fix) from the DARWIN branch.
Nicholas Nethercote [Thu, 21 May 2009 04:10:38 +0000 (04:10 +0000)] 
Merge r10071 (VALGRIND_INTERNAL_PRINTF fix) from the DARWIN branch.

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

17 years agoDARWIN sync: comment and macros.
Nicholas Nethercote [Thu, 21 May 2009 03:52:03 +0000 (03:52 +0000)] 
DARWIN sync: comment and macros.

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

17 years agoDARWIN sync: use a library function.
Nicholas Nethercote [Thu, 21 May 2009 03:38:58 +0000 (03:38 +0000)] 
DARWIN sync: use a library function.

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

17 years agoDARWIN sync: make VG_MIN_MALLOC_SZB 16 bytes where appropriate. Add another
Nicholas Nethercote [Thu, 21 May 2009 03:36:21 +0000 (03:36 +0000)] 
DARWIN sync: make VG_MIN_MALLOC_SZB 16 bytes where appropriate.  Add another
output for massif/tests/one to account for it.

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

17 years agoDARWIN sync: spacing.
Nicholas Nethercote [Thu, 21 May 2009 02:03:08 +0000 (02:03 +0000)] 
DARWIN sync: spacing.

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

17 years agoDARWIN sync: minor layout things, comments.
Nicholas Nethercote [Thu, 21 May 2009 01:25:43 +0000 (01:25 +0000)] 
DARWIN sync: minor layout things, comments.

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

17 years agoDARWIN sync: tweak debuglog output.
Nicholas Nethercote [Thu, 21 May 2009 01:15:18 +0000 (01:15 +0000)] 
DARWIN sync: tweak debuglog output.

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

17 years agoDARWIN sync: whitespace change only.
Nicholas Nethercote [Wed, 20 May 2009 08:14:23 +0000 (08:14 +0000)] 
DARWIN sync: whitespace change only.

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

17 years agoDARWIN sync: param name.
Nicholas Nethercote [Wed, 20 May 2009 07:36:18 +0000 (07:36 +0000)] 
DARWIN sync: param name.

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

17 years agoMerge r9472 (tkill() param renaming) from the DARWIN branch.
Nicholas Nethercote [Wed, 20 May 2009 07:10:48 +0000 (07:10 +0000)] 
Merge r9472 (tkill() param renaming) from the DARWIN branch.

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

17 years agoOn x86-linux, send debuglog output to stderr, not stdout.
Nicholas Nethercote [Wed, 20 May 2009 06:59:19 +0000 (06:59 +0000)] 
On x86-linux, send debuglog output to stderr, not stdout.

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

17 years agoDARWIN sync: spacing.
Nicholas Nethercote [Wed, 20 May 2009 06:51:11 +0000 (06:51 +0000)] 
DARWIN sync: spacing.

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

17 years agoDARWIN sync: remove unused VG_UCONTEXT_SYSCALL_NUM.
Nicholas Nethercote [Wed, 20 May 2009 06:46:25 +0000 (06:46 +0000)] 
DARWIN sync: remove unused VG_UCONTEXT_SYSCALL_NUM.

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

17 years agoDARWIN sync: conditional compilation and spacing/comments.
Nicholas Nethercote [Wed, 20 May 2009 06:42:59 +0000 (06:42 +0000)] 
DARWIN sync: conditional compilation and spacing/comments.

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

17 years agoDARWIN sync: use Word instead of UWord for sysno in two places.
Nicholas Nethercote [Wed, 20 May 2009 05:22:38 +0000 (05:22 +0000)] 
DARWIN sync: use Word instead of UWord for sysno in two places.

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

17 years agoDARWIN sync: change how newlines are printed for --trace-syscalls.
Nicholas Nethercote [Wed, 20 May 2009 05:19:22 +0000 (05:19 +0000)] 
DARWIN sync: change how newlines are printed for --trace-syscalls.

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

17 years agoBe more consistent with the spacing of syscall nums.
Nicholas Nethercote [Wed, 20 May 2009 05:05:56 +0000 (05:05 +0000)] 
Be more consistent with the spacing of syscall nums.

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

17 years agoRemove an unnecessary #include.
Nicholas Nethercote [Wed, 20 May 2009 04:35:28 +0000 (04:35 +0000)] 
Remove an unnecessary #include.

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

17 years agoDARWIN sync: add some 'const' attributes.
Nicholas Nethercote [Wed, 20 May 2009 04:22:42 +0000 (04:22 +0000)] 
DARWIN sync: add some 'const' attributes.

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

17 years agoDARWIN sync: comment change.
Nicholas Nethercote [Wed, 20 May 2009 04:09:38 +0000 (04:09 +0000)] 
DARWIN sync: comment change.

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

17 years agoDARWIN sync: Makefile.am layout, mostly.
Nicholas Nethercote [Wed, 20 May 2009 04:02:50 +0000 (04:02 +0000)] 
DARWIN sync: Makefile.am layout, mostly.

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

17 years agoDARWIN sync: add a #include.
Nicholas Nethercote [Wed, 20 May 2009 03:54:09 +0000 (03:54 +0000)] 
DARWIN sync: add a #include.

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

17 years agoDARWIN sync: increase the limit before we complain about large regions being
Nicholas Nethercote [Wed, 20 May 2009 03:44:09 +0000 (03:44 +0000)] 
DARWIN sync: increase the limit before we complain about large regions being
changed.

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

17 years agoDARWIN sync: UInt -> Int.
Nicholas Nethercote [Wed, 20 May 2009 03:20:05 +0000 (03:20 +0000)] 
DARWIN sync: UInt -> Int.

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

17 years agoDARWIN sync: put conditional compilation alternatives in the usual order.
Nicholas Nethercote [Wed, 20 May 2009 02:27:00 +0000 (02:27 +0000)] 
DARWIN sync: put conditional compilation alternatives in the usual order.

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

17 years agoDARWIN sync: comment change.
Nicholas Nethercote [Wed, 20 May 2009 02:11:49 +0000 (02:11 +0000)] 
DARWIN sync: comment change.

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

17 years agoDARWIN sync: stabs wibble.
Nicholas Nethercote [Wed, 20 May 2009 02:07:56 +0000 (02:07 +0000)] 
DARWIN sync: stabs wibble.

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

17 years agoMerge r9993, r9995 (comment changes about vg_stat) from the DARWIN branch,
Nicholas Nethercote [Wed, 20 May 2009 02:02:30 +0000 (02:02 +0000)] 
Merge r9993, r9995 (comment changes about vg_stat) from the DARWIN branch,
and rename all the vg_stat fields to avoid problems that the old names cause
on Darwin.

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

17 years agoUpdated list of bugs fixed in 3.5.0.
Bart Van Assche [Tue, 19 May 2009 18:05:25 +0000 (18:05 +0000)] 
Updated list of bugs fixed in 3.5.0.

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

17 years agoSorted EXTRA_DIST alphabetically.
Bart Van Assche [Tue, 19 May 2009 17:26:20 +0000 (17:26 +0000)] 
Sorted EXTRA_DIST alphabetically.

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

17 years agoDARWIN sync: malloc_usable_size return value should be SizeT.
Nicholas Nethercote [Tue, 19 May 2009 08:00:06 +0000 (08:00 +0000)] 
DARWIN sync: malloc_usable_size return value should be SizeT.

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

17 years agoDARWIN sync: wibble.
Nicholas Nethercote [Tue, 19 May 2009 07:56:55 +0000 (07:56 +0000)] 
DARWIN sync: wibble.

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

17 years agoUse our CPU/OS variable when printing the results in configure.
Nicholas Nethercote [Tue, 19 May 2009 07:39:22 +0000 (07:39 +0000)] 
Use our CPU/OS variable when printing the results in configure.

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

17 years agoDARWIN sync: don't insist on GNU sed.
Nicholas Nethercote [Tue, 19 May 2009 07:25:42 +0000 (07:25 +0000)] 
DARWIN sync: don't insist on GNU sed.

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

17 years agoDARWIN sync: pread64 and pwrite64 wrappers.
Nicholas Nethercote [Tue, 19 May 2009 06:50:37 +0000 (06:50 +0000)] 
DARWIN sync: pread64 and pwrite64 wrappers.

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

17 years agoMerged missing part of r9900 from the MESSAGING_TIDYUP branch.
Bart Van Assche [Tue, 19 May 2009 06:24:51 +0000 (06:24 +0000)] 
Merged missing part of r9900 from the MESSAGING_TIDYUP branch.

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

17 years agoDARWIN sync: whitespace.
Nicholas Nethercote [Tue, 19 May 2009 06:07:21 +0000 (06:07 +0000)] 
DARWIN sync: whitespace.

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

17 years agoRemove unnecessary #include.
Nicholas Nethercote [Tue, 19 May 2009 06:06:14 +0000 (06:06 +0000)] 
Remove unnecessary #include.

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

17 years agoDARWIN sync: cachegrind filter change.
Nicholas Nethercote [Tue, 19 May 2009 06:00:04 +0000 (06:00 +0000)] 
DARWIN sync: cachegrind filter change.

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

17 years agoDARWIN sync comment wibble.
Nicholas Nethercote [Tue, 19 May 2009 05:52:29 +0000 (05:52 +0000)] 
DARWIN sync comment wibble.

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

17 years agoParam names sync wibble.
Nicholas Nethercote [Tue, 19 May 2009 05:50:34 +0000 (05:50 +0000)] 
Param names sync wibble.

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

17 years agotweak test
Nicholas Nethercote [Tue, 19 May 2009 05:36:23 +0000 (05:36 +0000)] 
tweak test

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

17 years agoTweak VG_(exit).
Nicholas Nethercote [Tue, 19 May 2009 05:28:43 +0000 (05:28 +0000)] 
Tweak VG_(exit).

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

17 years agocomment wibble
Nicholas Nethercote [Tue, 19 May 2009 05:06:43 +0000 (05:06 +0000)] 
comment wibble

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

17 years agoDARWIN sync comment.
Nicholas Nethercote [Tue, 19 May 2009 05:01:27 +0000 (05:01 +0000)] 
DARWIN sync comment.

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

17 years agoDARWIN sync: include m_ume/*.c in COMMON_SOURCES.
Nicholas Nethercote [Tue, 19 May 2009 04:55:00 +0000 (04:55 +0000)] 
DARWIN sync: include m_ume/*.c in COMMON_SOURCES.

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

17 years agoDARWIN sync: use AM_CFLAGS_PIC in more places.
Nicholas Nethercote [Tue, 19 May 2009 04:48:52 +0000 (04:48 +0000)] 
DARWIN sync: use AM_CFLAGS_PIC in more places.

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

17 years agoDARWIN sync wibble.
Nicholas Nethercote [Tue, 19 May 2009 04:37:03 +0000 (04:37 +0000)] 
DARWIN sync wibble.

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

17 years agoDARWIN sync wibble.
Nicholas Nethercote [Tue, 19 May 2009 04:31:53 +0000 (04:31 +0000)] 
DARWIN sync wibble.

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

17 years agoSync m_initimg with the DARWIN branch.
Nicholas Nethercote [Tue, 19 May 2009 04:23:49 +0000 (04:23 +0000)] 
Sync m_initimg with the DARWIN branch.

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

17 years agoDARWIN sync wibble.
Nicholas Nethercote [Tue, 19 May 2009 02:10:26 +0000 (02:10 +0000)] 
DARWIN sync wibble.

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

17 years agoDARWIN sync wibble.
Nicholas Nethercote [Tue, 19 May 2009 02:08:25 +0000 (02:08 +0000)] 
DARWIN sync wibble.

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

17 years agoDARWIN sync wibble.
Nicholas Nethercote [Tue, 19 May 2009 01:53:30 +0000 (01:53 +0000)] 
DARWIN sync wibble.

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

17 years agoAdd comment to sync with DARWIN branch.
Nicholas Nethercote [Tue, 19 May 2009 01:49:50 +0000 (01:49 +0000)] 
Add comment to sync with DARWIN branch.

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

17 years agoMinor sync with the DARWIN branch.
Nicholas Nethercote [Tue, 19 May 2009 01:32:52 +0000 (01:32 +0000)] 
Minor sync with the DARWIN branch.

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

17 years agoAdd some extra CALL_FN_V_* macros. Copied from the DARWIN branch.
Nicholas Nethercote [Tue, 19 May 2009 01:24:50 +0000 (01:24 +0000)] 
Add some extra CALL_FN_V_* macros.  Copied from the DARWIN branch.

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

17 years agoMerge r9324 (bug152022 portability fix) from the DARWIN branch.
Nicholas Nethercote [Tue, 19 May 2009 01:17:09 +0000 (01:17 +0000)] 
Merge r9324 (bug152022 portability fix) from the DARWIN branch.

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

17 years agoSync trunk with DARWIN branch.
Nicholas Nethercote [Tue, 19 May 2009 01:10:31 +0000 (01:10 +0000)] 
Sync trunk with DARWIN branch.

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

17 years agoMerge part of r9140 (filter_xml tweak) from the DARWIN branch.
Nicholas Nethercote [Tue, 19 May 2009 01:00:59 +0000 (01:00 +0000)] 
Merge part of r9140 (filter_xml tweak) from the DARWIN branch.

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

17 years agoMinor trunk/DARWIN sync.
Nicholas Nethercote [Tue, 19 May 2009 00:54:19 +0000 (00:54 +0000)] 
Minor trunk/DARWIN sync.

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

17 years agoFix a make dist problem with default.supp -- it was being included in the
Nicholas Nethercote [Tue, 19 May 2009 00:32:20 +0000 (00:32 +0000)] 
Fix a make dist problem with default.supp -- it was being included in the
tarball, and thus its contents depended on the machine 'make dist' was run
on, not the install machine.  This commit excludes it from the tarball,
so it will be built at compile-time.

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

17 years agoAdd some missing 'make dist' files.
Nicholas Nethercote [Tue, 19 May 2009 00:05:29 +0000 (00:05 +0000)] 
Add some missing 'make dist' files.

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

17 years agoMerge r9900 (make dist fixes) from the MESSAGING_TIDYUP branch.
Nicholas Nethercote [Mon, 18 May 2009 23:24:26 +0000 (23:24 +0000)] 
Merge r9900 (make dist fixes) from the MESSAGING_TIDYUP branch.

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

17 years agoAdd some info about building the docs on Ubuntu 9.04.
Nicholas Nethercote [Mon, 18 May 2009 23:11:49 +0000 (23:11 +0000)] 
Add some info about building the docs on Ubuntu 9.04.

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

17 years agoFix some broken XML tags.
Nicholas Nethercote [Mon, 18 May 2009 23:03:52 +0000 (23:03 +0000)] 
Fix some broken XML tags.

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

17 years agoMerge r9897 (x86_amd64_features.c simplifcation) from the DARWIN branch.
Nicholas Nethercote [Mon, 18 May 2009 06:23:25 +0000 (06:23 +0000)] 
Merge r9897 (x86_amd64_features.c simplifcation) from the DARWIN branch.

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

17 years agoRemove a dead declaration.
Nicholas Nethercote [Mon, 18 May 2009 05:33:21 +0000 (05:33 +0000)] 
Remove a dead declaration.

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

17 years agoMerge part (filter tweaks) of 8943 from the DARWIN branch.
Nicholas Nethercote [Mon, 18 May 2009 05:29:41 +0000 (05:29 +0000)] 
Merge part (filter tweaks) of 8943 from the DARWIN branch.

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

17 years agoMerged r8977 (callgrind filter_stderr portability tweak) from the DARWIN
Nicholas Nethercote [Mon, 18 May 2009 05:13:22 +0000 (05:13 +0000)] 
Merged r8977 (callgrind filter_stderr portability tweak) from the DARWIN
branch.

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

17 years agoWhitespace tweak.
Nicholas Nethercote [Mon, 18 May 2009 05:10:56 +0000 (05:10 +0000)] 
Whitespace tweak.

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

17 years agoMerge part of r9250 (add unused attribute to callgrind/fn.c:check_code()
Nicholas Nethercote [Mon, 18 May 2009 05:10:00 +0000 (05:10 +0000)] 
Merge part of r9250 (add unused attribute to callgrind/fn.c:check_code()
from the DARWIN branch.

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

17 years agoThis should have gone in with r9884.
Nicholas Nethercote [Mon, 18 May 2009 04:49:56 +0000 (04:49 +0000)] 
This should have gone in with r9884.

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

17 years agoMerge part of r9229 (Helgrind test build tweak) from the DARWIN branch to
Nicholas Nethercote [Mon, 18 May 2009 04:49:20 +0000 (04:49 +0000)] 
Merge part of r9229 (Helgrind test build tweak) from the DARWIN branch to
the trunk.

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

17 years agoMerge parts of r9775, r9777, r9789, r9794 from the DARWIN branch.
Nicholas Nethercote [Mon, 18 May 2009 04:41:48 +0000 (04:41 +0000)] 
Merge parts of r9775, r9777, r9789, r9794 from the DARWIN branch.

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

17 years agoMerged non-Darwin-specific parts of r9397,r9423,r9490, 9461, 9462 from the
Nicholas Nethercote [Mon, 18 May 2009 02:12:08 +0000 (02:12 +0000)] 
Merged non-Darwin-specific parts of r9397,r9423,r9490, 9461, 9462 from the
DARWIN branch.  A big ugly DARWIN/trunk sync commit, mostly to do with
changing the representation of SysRes and vki_sigset_t.  Functionality of
the trunk shouldn't be changed by it.

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

17 years agoAdded pth_mutex_reinit regression test.
Bart Van Assche [Sat, 16 May 2009 06:24:40 +0000 (06:24 +0000)] 
Added pth_mutex_reinit regression test.

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

17 years agoUpdate mutex type upon mutex reinitialization such that DRD does not trigger an asser...
Bart Van Assche [Sat, 16 May 2009 06:22:46 +0000 (06:22 +0000)] 
Update mutex type upon mutex reinitialization such that DRD does not trigger an assertion failure when a reinitialized mutex is used.

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

17 years agoFactor out the name of the libpthread library. Also fix a minor stack trace
Nicholas Nethercote [Mon, 11 May 2009 08:01:09 +0000 (08:01 +0000)] 
Factor out the name of the libpthread library.  Also fix a minor stack trace
bogon.

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

17 years agoMerge r9828 (fix aspacem layering violation) from the DARWIN branch.
Nicholas Nethercote [Sun, 10 May 2009 22:42:19 +0000 (22:42 +0000)] 
Merge r9828 (fix aspacem layering violation) from the DARWIN branch.

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

17 years agoLet the pthread_create@GLIBC_2.0() detection test fail on PowerPC.
Bart Van Assche [Sun, 10 May 2009 15:41:45 +0000 (15:41 +0000)] 
Let the pthread_create@GLIBC_2.0() detection test fail on PowerPC.

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

17 years agoUpdated ignore list.
Bart Van Assche [Sun, 10 May 2009 11:51:09 +0000 (11:51 +0000)] 
Updated ignore list.

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

17 years agoUpdated ignore lists.
Bart Van Assche [Sun, 10 May 2009 11:08:10 +0000 (11:08 +0000)] 
Updated ignore lists.

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