----- Original Message ----- 
From: "jean-frederic clere" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, January 02, 2004 1:04 AM
Subject: Re: cvs commit: jakarta-commons/daemon/src/native/unix/native
jsvc-unix.c


> Thanks. Happy new year.
>
> Do you want to release daemon soon?

We probably should.  There are still 4 bugs outstanding for Daemon:
  23365) Probably a 'wontfix', or possibly a 'later'.  I don't have strong
opinions on this one.
  24936) I'll probably patch this one over the weekend (it's the last
procrun bug)
  23723) I don't have access to Mac OS/X, so I can't really comment.
  23368) You seem to be working on this one, so I haven't really looked at
it, but it's an Enh.

The only other question is whether or not Yoav wants to continue as the RM
(he's done a great job so far, so he has my +1 if he wants the job :).

>
> Cheers
>
> Jean-Frederic
>
>
> [EMAIL PROTECTED] wrote:
> > billbarker    2003/12/30 21:03:26
> >
> >   Modified:    daemon/src/native/unix/native jsvc-unix.c
> >   Log:
> >   Fix problems with signal handling on Solaris (possibly others).
> >
> >   Fix for Bug #24247
> >
> >   Reported By: Peter Poloha  [EMAIL PROTECTED]
> >
> >   Revision  Changes    Path
> >   1.8       +4 -4
jakarta-commons/daemon/src/native/unix/native/jsvc-unix.c
> >
> >   Index: jsvc-unix.c
> >   ===================================================================
> >   RCS file:
/home/cvs/jakarta-commons/daemon/src/native/unix/native/jsvc-unix.c,v
> >   retrieving revision 1.7
> >   retrieving revision 1.8
> >   diff -u -r1.7 -r1.8
> >   --- jsvc-unix.c 27 Sep 2003 16:49:13 -0000 1.7
> >   +++ jsvc-unix.c 31 Dec 2003 05:03:25 -0000 1.8
> >   @@ -271,10 +271,10 @@
> >    /*
> >     * Return the address of the current signal handler and set the new
one.
> >     */
> >   -static void * signal_set(int sig, void * handler) {
> >   +static void * signal_set(int sig, void * newHandler) {
> >        void *hand;
> >
> >   -    hand=signal(sig,handler);
> >   +    hand=signal(sig,newHandler);
> >    #ifdef SIG_ERR
> >        if (hand==SIG_ERR)
> >            hand=NULL;
> >   @@ -350,7 +350,7 @@
> >        /* Install signal handlers */
> >        handler_hup=signal_set(SIGHUP,handler);
> >        handler_trm=signal_set(SIGTERM,handler);
> >   -    handler_trm=signal_set(SIGINT,handler);
> >   +    handler_int=signal_set(SIGINT,handler);
> >        controlled = getpid();
> >        log_debug("Waiting for a signal to be delivered");
> >        while (!stopping) sleep(60); /* pause() not threadsafe */
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>

This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication in 
error, please notify us immediately by e-mail and then delete all copies of this 
message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through the 
Internet is not secure. Do not send confidential or sensitive information, such as 
social security numbers, account numbers, personal identification numbers and 
passwords, to us via ordinary (unencrypted) e-mail.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to