|
From: Bob R. <bo...@br...> - 2004-11-02 17:25:03
|
Sorry for all the trouble. I just got past the infinate loop problem by updating to latest CVS. However, now I am getting this error, valgrind: ../../valgrind/coregrind/vg_signals.c:1983 (vgPlain_route_signals): Assertion `tst->sigqueue_head != tst->sigqueue_tail' failed. ==18905== at 0xB002B724: vgPlain_skin_assert_fail (../../valgrind/coregrind/vg_mylibc.c:1161) sched status: Thread 1: status = Runnable, associated_mx = 0x0, associated_cv = 0x0 ==18905== at 0x49E722F0: sigprocmask (in /lib/i686/libc-2.2.5.so) ==18905== by 0x49E930D0: system (in /lib/i686/libc-2.2.5.so) ==18905== by 0x870E84A: platform__platform_specific__local_executeX (../.chop_Linux/platform-platform_specific.adb:263) ==18905== by 0x87258E7: platform__platform_specific__copy_fileX (../.chop_Linux/platform-platform_specific.adb:1427) Any help? Thanks, Bob Rossi |
|
From: Tom H. <th...@cy...> - 2004-11-02 18:33:21
|
In message <20041102172447.GC4165@white>
Bob Rossi <bo...@br...> wrote:
> Sorry for all the trouble.
>
> I just got past the infinate loop problem by updating to latest CVS.
> However, now I am getting this error,
>
> valgrind: ../../valgrind/coregrind/vg_signals.c:1983
> (vgPlain_route_signals): Assertion `tst->sigqueue_head !=
> tst->sigqueue_tail' failed.
> ==18905== at 0xB002B724: vgPlain_skin_assert_fail
> (../../valgrind/coregrind/vg_mylibc.c:1161)
That means you must have a thread with more than eight outstanding
signals which seems a bit strange.
Note that this is signals which are in the process of being delivered
so this is after signal block masks have been considered.
You should raise a bug for it anyway.
Tom
--
Tom Hughes (th...@cy...)
Software Engineer, Cyberscience Corporation
http://www.cyberscience.com/
|
|
From: Bob R. <bo...@br...> - 2004-11-29 16:21:43
|
On Tue, Nov 02, 2004 at 06:33:13PM +0000, Tom Hughes wrote: > In message <20041102172447.GC4165@white> > Bob Rossi <bo...@br...> wrote: > > > Sorry for all the trouble. > > > > I just got past the infinate loop problem by updating to latest CVS. > > However, now I am getting this error, > > > > valgrind: ../../valgrind/coregrind/vg_signals.c:1983 > > (vgPlain_route_signals): Assertion `tst->sigqueue_head != > > tst->sigqueue_tail' failed. > > ==18905== at 0xB002B724: vgPlain_skin_assert_fail > > (../../valgrind/coregrind/vg_mylibc.c:1161) > > That means you must have a thread with more than eight outstanding > signals which seems a bit strange. > > Note that this is signals which are in the process of being delivered > so this is after signal block masks have been considered. > > You should raise a bug for it anyway. Sorry for the long delay in the reply. - Is there an easy way to change the limit to more than eight? - Would I be able to fix this myself? Thanks, Bob Rossi |
|
From: Tom H. <th...@cy...> - 2004-11-29 16:34:48
|
In message <20041129172039.GA1953@white>
Bob Rossi <bo...@br...> wrote:
> On Tue, Nov 02, 2004 at 06:33:13PM +0000, Tom Hughes wrote:
>
>> That means you must have a thread with more than eight outstanding
>> signals which seems a bit strange.
>>
>> Note that this is signals which are in the process of being delivered
>> so this is after signal block masks have been considered.
>>
>> You should raise a bug for it anyway.
>
> Sorry for the long delay in the reply.
>
> - Is there an easy way to change the limit to more than eight?
There is a VG_N_SIGNALQUEUE define in one of the files that controls
the number of slots in the queue.
I'm not at all sure that increasing will help however as I think you
may have a more fundamental problem. To be honest I had thought that
eight slots was probably overkill.
> - Would I be able to fix this myself?
It rather depends on what the problem is and what your experience with
valgrind and kernel signal handling is, not to mention what the actual
problem is...
I'd start by getting some --trace-signal=yes output and seeing what
signals it is showing.
Tom
--
Tom Hughes (th...@cy...)
Software Engineer, Cyberscience Corporation
http://www.cyberscience.com/
|
|
From: Bob R. <bo...@br...> - 2004-11-29 19:20:13
|
On Mon, Nov 29, 2004 at 04:34:37PM +0000, Tom Hughes wrote: > In message <20041129172039.GA1953@white> > Bob Rossi <bo...@br...> wrote: > > > On Tue, Nov 02, 2004 at 06:33:13PM +0000, Tom Hughes wrote: > > > >> That means you must have a thread with more than eight outstanding > >> signals which seems a bit strange. > >> > >> Note that this is signals which are in the process of being delivered > >> so this is after signal block masks have been considered. > >> > >> You should raise a bug for it anyway. > > > > Sorry for the long delay in the reply. > > > > - Is there an easy way to change the limit to more than eight? > > There is a VG_N_SIGNALQUEUE define in one of the files that controls > the number of slots in the queue. > > I'm not at all sure that increasing will help however as I think you > may have a more fundamental problem. To be honest I had thought that > eight slots was probably overkill. I changed the limit to 16 and for some reason this allows my program to run fine. Is it possible that I need this adjustment and valgrind should be modified? or is it more likely that something is wrong with my configuration? I would be happy to send in the patch, however, I think that maybe someone else would be able to apply a minor change like this ... > > - Would I be able to fix this myself? > > It rather depends on what the problem is and what your experience with > valgrind and kernel signal handling is, not to mention what the actual > problem is... > > I'd start by getting some --trace-signal=yes output and seeing what > signals it is showing. OK, I sent the output with this option set, although it is waiting to be moderated. Maybe you will see something interesting. Thanks, Bob Rossi |
|
From: Bob R. <bo...@br...> - 2004-11-29 19:54:18
|
On Mon, Nov 29, 2004 at 03:20:03PM -0500, Bob Rossi wrote: > On Mon, Nov 29, 2004 at 04:34:37PM +0000, Tom Hughes wrote: > > In message <20041129172039.GA1953@white> > > Bob Rossi <bo...@br...> wrote: > > > > > On Tue, Nov 02, 2004 at 06:33:13PM +0000, Tom Hughes wrote: > > > > > >> That means you must have a thread with more than eight outstanding > > >> signals which seems a bit strange. > > >> > > >> Note that this is signals which are in the process of being delivered > > >> so this is after signal block masks have been considered. > > >> > > >> You should raise a bug for it anyway. > > > > > > Sorry for the long delay in the reply. > > > > > > - Is there an easy way to change the limit to more than eight? > > > > There is a VG_N_SIGNALQUEUE define in one of the files that controls > > the number of slots in the queue. > > > > I'm not at all sure that increasing will help however as I think you > > may have a more fundamental problem. To be honest I had thought that > > eight slots was probably overkill. > > I changed the limit to 16 and for some reason this allows my program to > run fine. Is it possible that I need this adjustment and valgrind should > be modified? or is it more likely that something is wrong with my > configuration? OK, one more update, which may or may not make sense to you. The longer my program runs, the higher I have to set the number VG_N_SIGNALQUEUE. So there probably is a bug somewhere. Does this mean my program is not running correctly under valgrind, and won't act the same as it normally would? Anyways, when I set it from 8->16 my program runs longer, 16->32 almost works and at 64 works well. I opened a bug report and would really like to resolve this. Does anyone have any suggestions? Thanks, Bob Rossi |
|
From: Tom H. <th...@cy...> - 2004-11-30 00:16:58
|
In message <20041129205406.GD2330@white>
Bob Rossi <bo...@br...> wrote:
> OK, one more update, which may or may not make sense to you. The longer
> my program runs, the higher I have to set the number VG_N_SIGNALQUEUE.
> So there probably is a bug somewhere. Does this mean my program is not
> running correctly under valgrind, and won't act the same as it normally
> would?
It might mean lots of things. It's the sort of thing I expected to
hear however. It may just be a bug in the queue handling in valgrind
as that is new code.
> I opened a bug report and would really like to resolve this. Does anyone
> have any suggestions?
It's my change to add the signal info queue that has caused this
and I will look at your bug. It's highly unlikely that anybody else
is going to be able to come up with anything more quickly.
Tom
--
Tom Hughes (th...@cy...)
Software Engineer, Cyberscience Corporation
http://www.cyberscience.com/
|
|
From: Bob R. <bo...@br...> - 2004-11-30 01:06:57
|
On Tue, Nov 30, 2004 at 12:17:19AM +0000, Tom Hughes wrote: > In message <20041129205406.GD2330@white> > Bob Rossi <bo...@br...> wrote: > > > OK, one more update, which may or may not make sense to you. The longer > > my program runs, the higher I have to set the number VG_N_SIGNALQUEUE. > > So there probably is a bug somewhere. Does this mean my program is not > > running correctly under valgrind, and won't act the same as it normally > > would? > > It might mean lots of things. It's the sort of thing I expected to > hear however. It may just be a bug in the queue handling in valgrind > as that is new code. > > > I opened a bug report and would really like to resolve this. Does anyone > > have any suggestions? > > It's my change to add the signal info queue that has caused this > and I will look at your bug. It's highly unlikely that anybody else > is going to be able to come up with anything more quickly. OK, well that sounds great! I'll be able to provide you with any info or debug information that you need. Thanks, Bob Rossi |
|
From: Bob R. <bo...@br...> - 2004-12-14 15:04:29
|
On Tue, Nov 30, 2004 at 12:17:19AM +0000, Tom Hughes wrote: > In message <20041129205406.GD2330@white> > Bob Rossi <bo...@br...> wrote: > > > OK, one more update, which may or may not make sense to you. The longer > > my program runs, the higher I have to set the number VG_N_SIGNALQUEUE. > > So there probably is a bug somewhere. Does this mean my program is not > > running correctly under valgrind, and won't act the same as it normally > > would? > > It might mean lots of things. It's the sort of thing I expected to > hear however. It may just be a bug in the queue handling in valgrind > as that is new code. > > > I opened a bug report and would really like to resolve this. Does anyone > > have any suggestions? > > It's my change to add the signal info queue that has caused this > and I will look at your bug. It's highly unlikely that anybody else > is going to be able to come up with anything more quickly. Any info? Thanks, Bob Rossi |
|
From: Tom H. <th...@cy...> - 2004-12-14 15:07:03
|
In message <20041214150332.GA22786@white>
Bob Rossi <bo...@br...> wrote:
> On Tue, Nov 30, 2004 at 12:17:19AM +0000, Tom Hughes wrote:
>> In message <20041129205406.GD2330@white>
>> Bob Rossi <bo...@br...> wrote:
>>
>> > I opened a bug report and would really like to resolve this. Does anyone
>> > have any suggestions?
>>
>> It's my change to add the signal info queue that has caused this
>> and I will look at your bug. It's highly unlikely that anybody else
>> is going to be able to come up with anything more quickly.
>
> Any info?
Sorry, but no. I've been snowed under with other things. Did you open
a bug for this so that it doesn't get lost?
Tom
--
Tom Hughes (th...@cy...)
Software Engineer, Cyberscience Corporation
http://www.cyberscience.com/
|
|
From: Bob R. <bo...@br...> - 2004-12-14 15:39:45
|
On Tue, Dec 14, 2004 at 03:06:56PM +0000, Tom Hughes wrote: > In message <20041214150332.GA22786@white> > Bob Rossi <bo...@br...> wrote: > > > On Tue, Nov 30, 2004 at 12:17:19AM +0000, Tom Hughes wrote: > >> In message <20041129205406.GD2330@white> > >> Bob Rossi <bo...@br...> wrote: > >> > >> > I opened a bug report and would really like to resolve this. Does anyone > >> > have any suggestions? > >> > >> It's my change to add the signal info queue that has caused this > >> and I will look at your bug. It's highly unlikely that anybody else > >> is going to be able to come up with anything more quickly. > > > > Any info? > > Sorry, but no. I've been snowed under with other things. Did you open > a bug for this so that it doesn't get lost? Yeah, I did. Just checking up, not really a big deal. Thanks, Bob Rossi |
|
From: Bob R. <bo...@br...> - 2004-11-29 16:54:41
|
On Mon, Nov 29, 2004 at 04:34:37PM +0000, Tom Hughes wrote:
> In message <20041129172039.GA1953@white>
> Bob Rossi <bo...@br...> wrote:
>
> > On Tue, Nov 02, 2004 at 06:33:13PM +0000, Tom Hughes wrote:
> >
> >> That means you must have a thread with more than eight outstanding
> >> signals which seems a bit strange.
> >>
> >> Note that this is signals which are in the process of being delivered
> >> so this is after signal block masks have been considered.
> >>
> >> You should raise a bug for it anyway.
> >
> > Sorry for the long delay in the reply.
> >
> > - Is there an easy way to change the limit to more than eight?
>
> There is a VG_N_SIGNALQUEUE define in one of the files that controls
> the number of slots in the queue.
>
> I'm not at all sure that increasing will help however as I think you
> may have a more fundamental problem. To be honest I had thought that
> eight slots was probably overkill.
>
> > - Would I be able to fix this myself?
>
> It rather depends on what the problem is and what your experience with
> valgrind and kernel signal handling is, not to mention what the actual
> problem is...
>
> I'd start by getting some --trace-signal=yes output and seeing what
> signals it is showing.
Well, I attached the output below. Maybe the problem is obvious ...
Thanks,
Bob Rossi
==11022== Coregrind, a rudimentary error detector for x86-linux.
==11022== Copyright (C) 2002-2004, and GNU GPL'd, by Nicholas Nethercote.
==11022== Using valgrind-2.3.0.CVS, a program supervision framework for x86-linux.
==11022== Copyright (C) 2000-2004, and GNU GPL'd, by Julian Seward et al.
snaffling handler 0x0 for signal 1
snaffling handler 0x0 for signal 2
snaffling handler 0x0 for signal 3
snaffling handler 0x0 for signal 4
snaffling handler 0x0 for signal 5
snaffling handler 0x0 for signal 6
snaffling handler 0x0 for signal 7
snaffling handler 0x0 for signal 8
snaffling handler 0x0 for signal 9
snaffling handler 0x0 for signal 10
snaffling handler 0x0 for signal 11
snaffling handler 0x0 for signal 12
snaffling handler 0x0 for signal 13
snaffling handler 0x0 for signal 14
snaffling handler 0x0 for signal 15
snaffling handler 0x0 for signal 16
snaffling handler 0x0 for signal 17
snaffling handler 0x0 for signal 18
snaffling handler 0x0 for signal 19
snaffling handler 0x0 for signal 20
snaffling handler 0x0 for signal 21
snaffling handler 0x0 for signal 22
snaffling handler 0x0 for signal 23
snaffling handler 0x0 for signal 24
snaffling handler 0x0 for signal 25
snaffling handler 0x0 for signal 26
snaffling handler 0x0 for signal 27
snaffling handler 0x0 for signal 28
snaffling handler 0x0 for signal 29
snaffling handler 0x0 for signal 30
snaffling handler 0x0 for signal 31
snaffling handler 0x0 for signal 32
snaffling handler 0x0 for signal 33
snaffling handler 0x0 for signal 34
snaffling handler 0x0 for signal 35
snaffling handler 0x0 for signal 36
snaffling handler 0x0 for signal 37
snaffling handler 0x0 for signal 38
snaffling handler 0x0 for signal 39
snaffling handler 0x0 for signal 40
snaffling handler 0x0 for signal 41
snaffling handler 0x0 for signal 42
snaffling handler 0x0 for signal 43
snaffling handler 0x0 for signal 44
snaffling handler 0x0 for signal 45
snaffling handler 0x0 for signal 46
snaffling handler 0x0 for signal 47
snaffling handler 0x0 for signal 48
snaffling handler 0x0 for signal 49
snaffling handler 0x0 for signal 50
snaffling handler 0x0 for signal 51
snaffling handler 0x0 for signal 52
snaffling handler 0x0 for signal 53
snaffling handler 0x0 for signal 54
snaffling handler 0x0 for signal 55
snaffling handler 0x0 for signal 56
snaffling handler 0x0 for signal 57
snaffling handler 0x0 for signal 58
snaffling handler 0x0 for signal 59
snaffling handler 0x0 for signal 60
snaffling handler 0x0 for signal 61
snaffling handler 0x0 for signal 62
snaffling handler 0x0 for signal 63
snaffling handler 0x1 for signal 64
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
++11022++ vg_sigstartup_actions: sigstack installed ok
--11022-- setting ksig 1 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 4 to: hdlr 0xB003111C, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 5 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 6 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 7 to: hdlr 0xB003111C, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 8 to: hdlr 0xB003111C, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 10 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 11 to: hdlr 0xB003111C, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 12 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 13 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 14 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 15 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 16 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 17 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 18 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 20 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 21 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 22 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 23 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 24 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 25 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 26 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 27 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 28 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 29 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 30 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 31 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 32 to: hdlr 0xB00315F0, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 33 to: hdlr 0xB00315F0, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 34 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 35 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 36 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 37 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 38 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 39 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 40 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 41 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 42 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 43 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 44 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 45 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 46 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 47 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 48 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 49 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 50 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 51 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 52 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 53 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 54 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 55 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 56 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 57 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 58 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 59 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 60 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 61 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 62 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 63 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
--11022-- setting ksig 64 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
==11022== For more details, rerun with: -v
==11022==
--11022-- signal 11 arrived ... si_code=1
--11022-- SIGSEGV: si_code=1 faultaddr=0xAFEFDF9C tid=1 esp=0xAFEFDF9C seg=0xAFEFE000-0xAFEFF000 fl=60 shad=0xB0000000-0xB0000000
--11022-- signal 11 arrived ... si_code=1
--11022-- SIGSEGV: si_code=1 faultaddr=0xAFEFB580 tid=1 esp=0xAFEFB580 seg=0xAFEFD000-0xAFEFE000 fl=69 shad=0xB0000000-0xB0000000
--11022-- signal 11 arrived ... si_code=1
--11022-- SIGSEGV: si_code=1 faultaddr=0xAFEFAFA4 tid=1 esp=0xAFEFAFA4 seg=0xAFEFB000-0xAFEFE000 fl=69 shad=0xB0000000-0xB0000000
--11022-- signal 11 arrived ... si_code=1
--11022-- SIGSEGV: si_code=1 faultaddr=0xAFEF90C0 tid=1 esp=0xAFEF90C0 seg=0xAFEFA000-0xAFEFE000 fl=69 shad=0xB0000000-0xB0000000
--11022-- signal 11 arrived ... si_code=1
--11022-- SIGSEGV: si_code=1 faultaddr=0xAFEF8EDC tid=1 esp=0xAFEF8EDC seg=0xAFEF9000-0xAFEFE000 fl=69 shad=0xB0000000-0xB0000000
--11022-- signal 11 arrived ... si_code=1
--11022-- SIGSEGV: si_code=1 faultaddr=0xAFEF7FDC tid=1 esp=0xAFEF7FDC seg=0xAFEF8000-0xAFEFE000 fl=69 shad=0xB0000000-0xB0000000
--11022-- signal 11 arrived ... si_code=1
--11022-- SIGSEGV: si_code=1 faultaddr=0xAFEF12C4 tid=1 esp=0xAFEF12C4 seg=0xAFEF7000-0xAFEFE000 fl=69 shad=0xB0000000-0xB0000000
++11022++ __NR_sigaction: tid 1, sigNo 13, new 0xAFEFCBD0, old 0xAFEFCB40, new flags 0x4000000
++11022++ __NR_sigaction: tid 1, sigNo 14, new 0xAFEFCBC0, old 0xAFEFCB30, new flags 0x4000000
++11022++ __NR_sigaction: tid 1, sigNo 14, new 0xAFEFCBC0, old 0xAFEFCB30, new flags 0x4000000
--11022-- setting ksig 14 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 14, new 0xAFEFCBC0, old 0xAFEFCB30, new flags 0x4000000
--11022-- setting ksig 14 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 14, new 0xAFEFCBC0, old 0xAFEFCB30, new flags 0x14000000
--11022-- setting ksig 14 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 14, new 0xAFEFCBC0, old 0xAFEFCB30, new flags 0x4000000
--11022-- setting ksig 14 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 14, new 0xAFEFCBC0, old 0xAFEFCB30, new flags 0x4000000
--11022-- setting ksig 14 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 14, new 0xAFEFCBC0, old 0xAFEFCB30, new flags 0x4000000
--11022-- setting ksig 14 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 14, new 0xAFEFCBC0, old 0xAFEFCB30, new flags 0x14000000
--11022-- setting ksig 14 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
**Environment Builder Version EDG 3.3 (%H%)
Reading environment script "uut.env"
Initializing search and include lists
Creating the Environment Directory
Creating Environment "ENV_UUT"
Calling QuickParse Utility for /home/bar/tmp/valgrind
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFC0EC, old 0xAFEFC05C, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFC0EC, old 0xAFEFC05C, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 0 (SIG_BLOCK), set = 0xAFEFC24C 0000000000010000
++11022++ oldset=0xAFEFC1CC 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11029-- sys_wait_results: got PX_SetSigmask for TID 1
++11029++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFC0EC, old 0x0, new flags 0x4000000
--11029-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11029++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFC0EC, old 0x0, new flags 0x4000000
--11029-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11029++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFC1CC 0000000000000000
--11029-- sys_wait_results: got PX_SetSigmask for TID 1
File: uut.c.tu.c
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFC0EC, old 0x0, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFC0EC, old 0x0, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFC1CC 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11022-- Routing signal 17 to tid 1
--11022-- sys_wait_results: got PX_Signal for TID 1, signal 17
--11022-- delivering signal 17 (SIGCHLD) to thread 1
--11022-- delivering 17 to default handler
QuickParse Utility Completed
Processing QuickParse data for /home/bar/tmp/valgrind
Done processing QuickParse data
Unit 8 (not stubbed): User Defined Globals
Parsing
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFB424, old 0xAFEFB394, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFB424, old 0xAFEFB394, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 0 (SIG_BLOCK), set = 0xAFEFB584 0000000000010000
++11022++ oldset=0xAFEFB504 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11048-- sys_wait_results: got PX_SetSigmask for TID 1
++11048++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFB424, old 0x0, new flags 0x4000000
--11048-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11048++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFB424, old 0x0, new flags 0x4000000
--11048-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11048++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFB504 0000000000000000
--11048-- sys_wait_results: got PX_SetSigmask for TID 1
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFB424, old 0x0, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFB424, old 0x0, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFB504 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11022-- Routing signal 17 to tid 1
--11022-- sys_wait_results: got PX_Signal for TID 1, signal 17
--11022-- delivering signal 17 (SIGCHLD) to thread 1
--11022-- delivering 17 to default handler
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFAC88, old 0xAFEFABF8, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFAC88, old 0xAFEFABF8, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 0 (SIG_BLOCK), set = 0xAFEFADE8 0000000000010000
++11022++ oldset=0xAFEFAD68 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11050-- sys_wait_results: got PX_SetSigmask for TID 1
++11050++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFAC88, old 0x0, new flags 0x4000000
--11050-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11050++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFAC88, old 0x0, new flags 0x4000000
--11050-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11050++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFAD68 0000000000000000
--11050-- sys_wait_results: got PX_SetSigmask for TID 1
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFAC88, old 0x0, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFAC88, old 0x0, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFAD68 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11022-- Routing signal 17 to tid 1
--11022-- sys_wait_results: got PX_Signal for TID 1, signal 17
--11022-- delivering signal 17 (SIGCHLD) to thread 1
--11022-- delivering 17 to default handler
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFAC88, old 0xAFEFABF8, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFAC88, old 0xAFEFABF8, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 0 (SIG_BLOCK), set = 0xAFEFADE8 0000000000010000
++11022++ oldset=0xAFEFAD68 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11054-- sys_wait_results: got PX_SetSigmask for TID 1
++11054++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFAC88, old 0x0, new flags 0x4000000
--11054-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11054++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFAC88, old 0x0, new flags 0x4000000
--11054-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11054++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFAD68 0000000000000000
--11054-- sys_wait_results: got PX_SetSigmask for TID 1
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFAC88, old 0x0, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFAC88, old 0x0, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFAD68 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11022-- Routing signal 17 to tid 1
--11022-- sys_wait_results: got PX_Signal for TID 1, signal 17
--11022-- delivering signal 17 (SIGCHLD) to thread 1
--11022-- delivering 17 to default handler
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFBFD0, old 0xAFEFBF40, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFBFD0, old 0xAFEFBF40, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 0 (SIG_BLOCK), set = 0xAFEFC130 0000000000010000
++11022++ oldset=0xAFEFC0B0 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11057-- sys_wait_results: got PX_SetSigmask for TID 1
++11057++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFBFD0, old 0x0, new flags 0x4000000
--11057-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11057++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFBFD0, old 0x0, new flags 0x4000000
--11057-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11057++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFC0B0 0000000000000000
--11057-- sys_wait_results: got PX_SetSigmask for TID 1
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFBFD0, old 0x0, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFBFD0, old 0x0, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFC0B0 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11022-- Routing signal 17 to tid 1
--11022-- sys_wait_results: got PX_Signal for TID 1, signal 17
--11022-- delivering signal 17 (SIGCHLD) to thread 1
--11022-- delivering 17 to default handler
Initializing parse data
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFD1C0, old 0xAFEFD130, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFD1C0, old 0xAFEFD130, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFD1B0, old 0xAFEFD120, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFD1B0, old 0xAFEFD120, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCC90, old 0xAFEFCC00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC2C0, old 0xAFEFC230, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC2C0, old 0xAFEFC230, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC2B0, old 0xAFEFC220, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC2B0, old 0xAFEFC220, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC290, old 0xAFEFC200, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC290, old 0xAFEFC200, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC380, old 0xAFEFC2F0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC380, old 0xAFEFC2F0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC370, old 0xAFEFC2E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC370, old 0xAFEFC2E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC350, old 0xAFEFC2C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC350, old 0xAFEFC2C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC810, old 0xAFEFC780, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC800, old 0xAFEFC770, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC7E0, old 0xAFEFC750, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC5A0, old 0xAFEFC510, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC590, old 0xAFEFC500, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC570, old 0xAFEFC4E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC660, old 0xAFEFC5D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC630, old 0xAFEFC5A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC530, old 0xAFEFC4A0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC520, old 0xAFEFC490, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC500, old 0xAFEFC470, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCA90, old 0xAFEFCA00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCA90, old 0xAFEFCA00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCA90, old 0xAFEFCA00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCA90, old 0xAFEFCA00, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCBC0, old 0xAFEFCB30, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFCBC0, old 0xAFEFCB30, new flags 0x14000000
Generating harness code
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC770, old 0xAFEFC6E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC770, old 0xAFEFC6E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC760, old 0xAFEFC6D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC760, old 0xAFEFC6D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC740, old 0xAFEFC6B0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC740, old 0xAFEFC6B0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC770, old 0xAFEFC6E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC770, old 0xAFEFC6E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC760, old 0xAFEFC6D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC760, old 0xAFEFC6D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC740, old 0xAFEFC6B0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC740, old 0xAFEFC6B0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC770, old 0xAFEFC6E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC770, old 0xAFEFC6E0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC760, old 0xAFEFC6D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC760, old 0xAFEFC6D0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC740, old 0xAFEFC6B0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC740, old 0xAFEFC6B0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC580, old 0xAFEFC4F0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC580, old 0xAFEFC4F0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC580, old 0xAFEFC4F0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC580, old 0xAFEFC4F0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
++11022++ __NR_sigaction: tid 1, sigNo 11, new 0xAFEFC650, old 0xAFEFC5C0, new flags 0x14000000
Unit 9 (uut): uut
Parsing
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFB250, old 0xAFEFB1C0, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFB250, old 0xAFEFB1C0, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 0 (SIG_BLOCK), set = 0xAFEFB3B0 0000000000010000
++11022++ oldset=0xAFEFB330 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11059-- sys_wait_results: got PX_SetSigmask for TID 1
++11059++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFB250, old 0x0, new flags 0x4000000
--11059-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11059++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFB250, old 0x0, new flags 0x4000000
--11059-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11059++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFB330 0000000000000000
--11059-- sys_wait_results: got PX_SetSigmask for TID 1
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFB250, old 0x0, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFB250, old 0x0, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFB330 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11022-- Routing signal 17 to tid 1
--11022-- sys_wait_results: got PX_Signal for TID 1, signal 17
--11022-- delivering signal 17 (SIGCHLD) to thread 1
--11022-- delivering 17 to default handler
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFAAC0, old 0xAFEFAA30, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFAAC0, old 0xAFEFAA30, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 0 (SIG_BLOCK), set = 0xAFEFAC20 0000000000010000
++11022++ oldset=0xAFEFABA0 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11061-- sys_wait_results: got PX_SetSigmask for TID 1
++11061++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFAAC0, old 0x0, new flags 0x4000000
--11061-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11061++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFAAC0, old 0x0, new flags 0x4000000
--11061-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11061++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFABA0 0000000000000000
--11061-- sys_wait_results: got PX_SetSigmask for TID 1
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFAAC0, old 0x0, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ __NR_sigaction: tid 1, sigNo 3, new 0xAFEFAAC0, old 0x0, new flags 0x4000000
--11022-- setting ksig 3 to: hdlr 0xB0031088, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF
++11022++ do_setmask: tid = 1 how = 2 (SIG_SETMASK), set = 0xAFEFABA0 0000000000000000
--11022-- sys_wait_results: got PX_SetSigmask for TID 1
--11022-- Routing signal 17 to tid 1
--11022-- sys_wait_results: got PX_Signal for TID 1, signal 17
--11022-- delivering signal 17 (SIGCHLD) to thread 1
--11022-- delivering 17 to default handler
++11022++ __NR_sigaction: tid 1, sigNo 2, new 0xAFEFAAF0, old 0xAFEFAA60, new flags 0x4000000
--11022-- setting ksig 2 to: hdlr 0x1, flags 0x1C000004, mask(63..0) 0xFFFFFFFF 0xFFFBFEFF...
[truncated message content] |