diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-19 17:46:40 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-19 17:46:40 +0000 |
commit | 0092538693fda340657789cde44e582dbb26a43e (patch) | |
tree | e74b1777bc013569c275b9781185859102859144 /ace/config-lynxos.h | |
parent | 060f8271be8ebaae9bcb9c283f38e0da28c16308 (diff) | |
download | ATCD-0092538693fda340657789cde44e582dbb26a43e.tar.gz |
ChangeLogTag: Mon Jun 19 12:45:45 2000 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'ace/config-lynxos.h')
-rw-r--r-- | ace/config-lynxos.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ace/config-lynxos.h b/ace/config-lynxos.h index 3e8808e2d1e..1e91853806d 100644 --- a/ace/config-lynxos.h +++ b/ace/config-lynxos.h @@ -125,7 +125,10 @@ # if __GNUG__ > 2 || __GNUC_MINOR__ >= 9 // g++ >= 2.9, assume LynxOS 3.1.0 or greater # define ACE_HAS_PTHREADS_STD -# define ACE_LACKS_PTHREAD_SIGMASK + // Though there's a pthread_sigmask man page, there isn't a + // declaration in a system header file. +# include <signal.h> + extern "C" int pthread_sigmask (int, const sigset_t *, sigset_t *); # else /* LynxOS < 3.1.0 */ # define ACE_HAS_PTHREADS_DRAFT4 # define ACE_HAS_STDARG_THR_DEST |