summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-08-30 02:37:01 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-08-30 02:37:01 +0000
commit9b43c9521d0cb1e14f1b85fe2112fff479843585 (patch)
treef77619ec13b9d3ddedfb08fd298881dfc2f89fd7
parent4b4413359cb409c556c4535e9cbfb768ce079689 (diff)
downloadATCD-9b43c9521d0cb1e14f1b85fe2112fff479843585.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-99b16
1 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index 164bcc52611..20c8506ef8c 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,13 +1,21 @@
Sun Aug 29 07:53:33 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
- * ace/OS: Added a new sigsuspend() wrapper to class ACE_OS. This
- implementation is "smarter" than the default behavior of
- sigsuspend(2) because it'll handle NULL sigset_t *'s gracefully.
-
+ * tests/Signal_Test.cpp: Linux threads are evil because getppid()
+ isn't the process id of your parent PROCESS, it's the process id
+ of your parent THREAD. Yikes! Therefore, I had to rearrange
+ this test so that it'll work on Linux.
+
+ * ace/config-qnx-neutrino.h,
+ * ace/config-vxworks5.x.h,
+ * ace/config-osf1-4.0.h,
* ace/config-sunos5.5.h,
* ace/config-linux-common.h: Added support for
the ACE_HAS_SIGTIMEDWAIT and ACE_HAS_SIGSUSPEND macros.
+ * ace/OS: Added a new sigsuspend() wrapper to class ACE_OS. This
+ implementation is "smarter" than the default behavior of
+ sigsuspend(2) because it'll handle NULL sigset_t *'s gracefully.
+
* ace/Signal: Make the use of ACE_Sig_Set & parameters
const-correct.