]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Make MacOS builds work again following fixes for #259977
authorJulian Seward <jseward@acm.org>
Mon, 11 Apr 2011 22:08:06 +0000 (22:08 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 11 Apr 2011 22:08:06 +0000 (22:08 +0000)
(revs 11687,8,9)

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

coregrind/m_coredump/coredump-macho.c
coregrind/m_initimg/initimg-darwin.c
coregrind/m_sigframe/sigframe-amd64-darwin.c
coregrind/m_sigframe/sigframe-x86-darwin.c
coregrind/m_syswrap/syswrap-amd64-darwin.c
coregrind/m_syswrap/syswrap-darwin.c
coregrind/m_syswrap/syswrap-main.c
coregrind/m_syswrap/syswrap-x86-darwin.c

index 5f74a869b3b77ac0bd977563de14f2df7624f163..499bebabcbdb4364b3e9d65a725313df89904ee3 100644 (file)
@@ -33,6 +33,7 @@
 #include "pub_core_basics.h"
 #include "pub_core_vki.h"
 #include "pub_core_coredump.h"
+#include "pub_core_libcsetjmp.h"   // to keep _threadstate.h happy
 #include "pub_core_threadstate.h"
 
 void VG_(make_coredump)(ThreadId tid, const vki_siginfo_t *si, UInt max_size)
index d11ae3a17d09d6ece76a7d93dfe371540e316027..a1132bbb693fdf4d9dd24b85d032115f71b4617e 100644 (file)
@@ -47,6 +47,7 @@
 #include "pub_core_ume.h"
 #include "pub_core_options.h"
 #include "pub_core_tooliface.h"       /* VG_TRACK */
+#include "pub_core_libcsetjmp.h"      // to keep _threadstate.h happy
 #include "pub_core_threadstate.h"     /* ThreadArchState */
 #include "priv_initimg_pathscan.h"
 #include "pub_core_initimg.h"         /* self */
index 273dea53b7af73b16bb343bce46c6bc891433d1e..ed0913439f15ab78cf61aa2b0a5fc06bcce74c49 100644 (file)
@@ -34,6 +34,7 @@
 #include "pub_core_basics.h"
 #include "pub_core_vki.h"
 #include "pub_core_vkiscnums.h"
+#include "pub_core_libcsetjmp.h"    // to keep _threadstate.h happy
 #include "pub_core_threadstate.h"
 #include "pub_core_aspacemgr.h"
 #include "pub_core_libcbase.h"
index 383a8d3dcfd397a4bbacb4f4579e1e4cd78041d2..47348e275258b44c23fbd8e661dffd43b6136fa6 100644 (file)
@@ -34,6 +34,7 @@
 #include "pub_core_basics.h"
 #include "pub_core_vki.h"
 #include "pub_core_vkiscnums.h"
+#include "pub_core_libcsetjmp.h"    // to keep _threadstate.h happy
 #include "pub_core_threadstate.h"
 #include "pub_core_aspacemgr.h"
 #include "pub_core_libcbase.h"
index 1057bb108456cb58ac03e8f2347113a28176c6d7..03bad5e026a378524068b1b7edf61de9a030d0e4 100644 (file)
@@ -32,6 +32,7 @@
 
 #include "pub_core_basics.h"
 #include "pub_core_vki.h"
+#include "pub_core_libcsetjmp.h"   // to keep _threadstate.h happy
 #include "pub_core_threadstate.h"
 #include "pub_core_aspacemgr.h"
 #include "pub_core_xarray.h"
index 02fca387badebf00f419c44ce7774e441514f465..0df78a0bed16c896f35b93dffc41183a8c12fb48 100644 (file)
@@ -33,6 +33,7 @@
 #include "pub_core_basics.h"
 #include "pub_core_vki.h"
 #include "pub_core_vkiscnums.h"
+#include "pub_core_libcsetjmp.h"   // to keep _threadstate.h happy
 #include "pub_core_threadstate.h"
 #include "pub_core_aspacemgr.h"
 #include "pub_core_xarray.h"
index cff054333d2a3b612ad287e24e538430d5d0e687..0757a4177582a26fdadab5143f470e424f4934a3 100644 (file)
@@ -2267,7 +2267,7 @@ void ML_(wqthread_continue_NORETURN)(ThreadId tid)
    sci->status.what = SsIdle;
 
    vg_assert(tst->sched_jmpbuf_valid);
-   VG_MINIMAL_LONGJMP(tst->sched_jmpbuf, True);
+   VG_MINIMAL_LONGJMP(tst->sched_jmpbuf);
 
    /* NOTREACHED */
    vg_assert(0);
index 1e2e1d87b646da1fc754923af81399786d057dd9..108a8afd0d32598b66de09ddec52ac68b4bd9dd8 100644 (file)
@@ -32,6 +32,7 @@
 
 #include "pub_core_basics.h"
 #include "pub_core_vki.h"
+#include "pub_core_libcsetjmp.h"   // to keep _threadstate.h happy
 #include "pub_core_threadstate.h"
 #include "pub_core_aspacemgr.h"
 #include "pub_core_xarray.h"