Re: sigisempty?

2000-01-24 Thread Alexander Langer
rom wait3 */ #else SVR4 int status; /* Return value from wait3 */ -@@ -188,7 +197,12 @@ +@@ -188,7 +197,14 @@ #define sigisempty(s) (!(((s)->__sigbits[0]) | ((s)->__sigbits[1]) \ | ((s)->__sigbits[2]) | ((s)->__sigbits[3]))) #else

Re: sigisempty?

2000-01-24 Thread Kelly Yancey
; === > --- lib/libxview/notify/ntfy.h.orig Tue Jun 29 07:18:14 1993 > +++ lib/libxview/notify/ntfy.hMon Jan 10 15:50:53 2000 > @@ -188,7 +197,12 @@ > #define sigisempty(s) (!(((s)->__sigbits[0]) | ((s)->__sigbits[1]) \ > | ((s)->__sig

Re: sigisempty?

2000-01-24 Thread Satoshi - Ports Wraith - Asami
e of working for both -current and -stable without any additional #ifdef's. I hope it's ok. Satoshi === --- lib/libxview/notify/ntfy.h.orig Tue Jun 29 07:18:14 1993 +++ lib/libxview/notify/ntfy.h Mon Jan 10 15:50:53 2000 @@ -188,7 +197,12 @@ #define sigisempty(s) (!(((s)->

Re: sigisempty?

2000-01-19 Thread Anton Berezin
On Wed, Jan 19, 2000 at 07:03:04AM -0800, Satoshi Asami wrote: > How do I test if sigset_t is empty in -current? The xview sources > have this macro: > > #define sigisempty(s) (!(*(s))) > > which is ok for the old sigset_t (unsigned int) but obviously won't > work

Re: sigisempty?

2000-01-19 Thread Bruce Evans
On Wed, 19 Jan 2000, Garrett Wollman wrote: > <said: > > > How do I test if sigset_t is empty in -current? The xview sources > > have this macro: > > int > sigisempty(sigset_t *my_sigset) > { > static sigset_t empty_ss; > stat

sigisempty?

2000-01-19 Thread Garrett Wollman
< How do I test if sigset_t is empty in -current? The xview sources > have this macro: > #define sigisempty(s) (!(*(s))) > which is ok for the old sigset_t (unsigned int) but obviously won't > work for the new one since it's a struct. int sigisempty(sigset_t *my

sigisempty?

2000-01-19 Thread Satoshi Asami
Hi, How do I test if sigset_t is empty in -current? The xview sources have this macro: #define sigisempty(s) (!(*(s))) which is ok for the old sigset_t (unsigned int) but obviously won't work for the new one since it's a struct. typedef struct __sigset { unsigned int