From: Nicholas Nethercote Date: Sun, 27 Mar 2005 02:38:15 +0000 (+0000) Subject: Remove dead field '.siginfo' from ThreadState(!) X-Git-Tag: svn/VALGRIND_3_0_0~858 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ffaf470ac27b581c2686360fb20873100387ba8;p=thirdparty%2Fvalgrind.git Remove dead field '.siginfo' from ThreadState(!) git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3460 --- diff --git a/coregrind/core.h b/coregrind/core.h index 8996c19408..7236aaf179 100644 --- a/coregrind/core.h +++ b/coregrind/core.h @@ -626,11 +626,7 @@ struct _ThreadState { /* Per-thread jmp_buf to resume scheduler after a signal */ Bool sched_jmpbuf_valid; jmp_buf sched_jmpbuf; - - /* Info about the signal we just got */ - vki_siginfo_t siginfo; }; -//ThreadState; /* The thread table. */ extern ThreadState VG_(threads)[VG_N_THREADS];