|
From: Ian S. <ian...@st...> - 2004-03-02 09:49:33
|
Your patch had no effect on my problem. My program is single threaded, if that changes anything. Thanks anyway. Ian > -----Original Message----- > From: Ian Scott [mailto:ian...@st...] > Sent: Thursday, February 26, 2004 5:30 PM > To: 'ow...@em...' > Subject: RE: [Valgrind-users] Re: Zombie processes after ctrl-c? > > > That compiles now. > > As I said before, I can't force this error manually, so I'll > need to wait until next week (when the next valgrind tests on > that program are scheduled) to see if it works. I'll let you > and the list know. > > Thanks very much for your help. > Ian. > > > > > -----Original Message----- > > From: Owen O'Malley [mailto:ow...@em...] > > Sent: Thursday, February 26, 2004 5:25 PM > > To: Ian Scott > > Subject: Re: [Valgrind-users] Re: Zombie processes after ctrl-c? > > > > > > On Thu, Feb 26, 2004 at 05:20:49PM -0000, Ian Scott wrote: > > > Are those all the diffs? > > > > > > My compiler can't find > > > VKI_PR_SET_PDEATHSIG > > > > > > Should I just define it to 9 in vg_kerneliface.h ? > > > > Sorry about that, I was filtering the patch out of my > version that has > > a couple of changes. You're right there is a missing definition, but > > the value you need is 1. Here is the missing bit. > > > > *** vg_kerneliface.h~ Wed Nov 19 14:07:14 2003 > > --- vg_kerneliface.h Wed Feb 4 08:39:03 2004 > > *************** > > *** 303,308 **** > > --- 303,313 ---- > > #define VKI_SIGVGKILL (VKI_SIGRTMIN+1) /* signal for internal > > #use - kill */ > > #define VKI_SIGRTUSERMIN (VKI_SIGRTMIN+2) /* first > user-usable RT > > #signal */ > > > > + /* the command argument to prctl from linux/prctl.h */ > > + > > + #define VKI_PR_SET_PDEATHSIG 1 /* Second arg is a signal */ > > + #define VKI_PR_GET_PDEATHSIG 2 /* Second arg is a ptr to > > return the signal */ > > + > > > |