Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Jan 2010 14:50:11 GMT
From:      Bruno Ducrot <ducrot@echo.fr>
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: kern/141956: [libc] signal(3): siginfo-&gt; si_pid null in signal handler [regression]
Message-ID:  <201001291450.o0TEoBmb074379@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/141956; it has been noted by GNATS.

From: Bruno Ducrot <ducrot@echo.fr>
To: bug-followup@FreeBSD.org, joel.bertrand@systella.fr
Cc:  
Subject: Re: kern/141956: [libc] signal(3): siginfo-&gt;si_pid null in signal
 handler [regression]
Date: Fri, 29 Jan 2010 15:31:34 +0100

 Hi,
 
 With this test :
 #include <stdio.h>
 #include <stdlib.h>
 #include <signal.h>
 #include <unistd.h>
 
 
 void
 handler(int signal, siginfo_t *siginfo, void *context)
 {
          int i;
          char *p = (char *)siginfo;
 
          printf("si_pid: %d (%d)\n", siginfo->si_pid, getpid());
          printf("si_uid: %d\n", siginfo->si_uid);
 
          _exit(1);
 }
 
 int
 main(void)
 {
          struct sigaction sa;
 
          sa.sa_sigaction = handler;
          sa.sa_flags = SA_SIGINFO;
          sigemptyset(&sa.sa_mask);
 
          sigaction(SIGABRT, &sa, NULL);
          abort();
          return 0;
 }
 
 I can indeed reproduce the same behaviour with RELENG_8_0 at least.
 
 But it seems this has been fixed by kid@ under CURRENT (SVN rev 199355).
 
 There is a MFC (SVN rev 200729), and therefore I can't reproduce anymore
 this misbehaviour with RELENG_8 as of yesterday.
 
 Could you please confirm your software (RPL/2) work now as expected with
 latest RELENG_8 ?
 
 Thanks,
 
 -- 
 Bruno Ducrot
 
 --  Which is worse:  ignorance or apathy?
 --  Don't know.  Don't care.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001291450.o0TEoBmb074379>