diff options
author | sewardj <sewardj@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2011-04-11 18:36:34 +0000 |
---|---|---|
committer | sewardj <sewardj@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2011-04-11 18:36:34 +0000 |
commit | 97d3ebba515c00930db4ee3f52af571bc84b2ef6 (patch) | |
tree | ca8b287faa135297bbb2c607ee8977dbc50230ae /coregrind/pub_core_threadstate.h | |
parent | 6c591e15c1d6402a2a755310f005f795b68e7e38 (diff) |
Add an alternative implementation of VG_MINIMAL_{SET,LONG}JMP
for ppc32-linux, that works for gcc >= 4.4. Related to #259977.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11688 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'coregrind/pub_core_threadstate.h')
-rw-r--r-- | coregrind/pub_core_threadstate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coregrind/pub_core_threadstate.h b/coregrind/pub_core_threadstate.h index 639ef73a..ebfc907a 100644 --- a/coregrind/pub_core_threadstate.h +++ b/coregrind/pub_core_threadstate.h @@ -356,7 +356,7 @@ typedef struct { /* Per-thread jmp_buf to resume scheduler after a signal */ Bool sched_jmpbuf_valid; - VG_MINIMAL_JMP_BUF sched_jmpbuf; + VG_MINIMAL_JMP_BUF(sched_jmpbuf); } ThreadState; |