diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-05-07 02:40:37 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-05-07 02:40:37 +0000 |
commit | 0088ba0abfdccc0c2afb1fd6a1a560b1250007a4 (patch) | |
tree | 67fcc2e183f6ecc856659dbe4f6a95a443e1439e /acconfig.h | |
parent | 5c07a72891cc83aeb784b0da35b4b2a2f9d682d7 (diff) | |
download | ATCD-0088ba0abfdccc0c2afb1fd6a1a560b1250007a4.tar.gz |
Added tests/support for ACE_LACKS_PTHREAD_SIGMASK,
ACE_LACKS_TCP_NODELAY and ACE_LACKS_NULL_PTHREAD_STATUS. Thanks
to David for providing a test for ACE_LACKS_NULL_PTHREAD_STATUS.
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h index 1242af6363b..845a2d61352 100644 --- a/acconfig.h +++ b/acconfig.h @@ -1088,6 +1088,9 @@ /* Platform lacks pthread_mutexattr_setpshared(). */ #undef ACE_LACKS_MUTEXATTR_PSHARED +/* OS requires non-null status pointer for ::pthread_join () */ +#undef ACE_LACKS_NULL_PTHREAD_STATUS + /* Platform lacks <sys/param.h> (e.g., MVS) */ #undef ACE_LACKS_PARAM_H @@ -1121,6 +1124,9 @@ /* Platform lacks pthread_cancel(). */ #undef ACE_LACKS_PTHREAD_CANCEL +/* Platform lacks pthread_sigmask () / +#undef ACE_LACKS_PTHREAD_SIGMASK + /* Platform lacks pthread_thr_sigsetmask (e.g., MVS, HP/UX, and OSF/1 3.2) */ #undef ACE_LACKS_PTHREAD_THR_SIGSETMASK @@ -1221,6 +1227,9 @@ /* Platform doesn't have netinet/tcp.h */ #undef ACE_LACKS_TCP_H +/* OS does not support TCP_NODELAY */ +#undef ACE_LACKS_TCP_NODELAY + /* Platform lacks pthread_attr_setscope() */ #undef ACE_LACKS_THREAD_PROCESS_SCOPING |