[81] in Pthreads mailing list archive
pthreads porting help!
daemon@ATHENA.MIT.EDU (Neal Becker)
Wed Aug 16 10:37:32 1995
Date: Wed, 16 Aug 95 10:10:34 -0400 (EDT)
From: neal@ctd.comsat.com (Neal Becker)
To: proven@MIT.EDU, pthreads@MIT.EDU
Still trying to port pthreads to hpux9. The basic problem now is,
what should be used for sigset_t? If we use the real hpux definition,
it is
typedef struct __sigset_t {
long sigset[8];
} sigset_t;
Then we need a lot of fixing up, for example assignments from
__SIGEMTPYSET.
But in pthreads/sig.c: we have definitions of the POSIX sigemptyset,
etc. HPUX already has these. Does pthreads require that sigset_t be
an int?