summaryrefslogtreecommitdiff
path: root/ChangeLog-97a
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-07-03 03:55:18 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-07-03 03:55:18 +0000
commite63e87199ba0a2a83b2a4e892003eedf8080a5cd (patch)
treee538afa57f292e2bdc05d79bdaed1883af71ff6e /ChangeLog-97a
parentc85183035af87a0d0e7c59b536ff249aac4bb4dd (diff)
downloadATCD-e63e87199ba0a2a83b2a4e892003eedf8080a5cd.tar.gz
*** empty log message ***
Diffstat (limited to 'ChangeLog-97a')
-rw-r--r--ChangeLog-97a32
1 files changed, 30 insertions, 2 deletions
diff --git a/ChangeLog-97a b/ChangeLog-97a
index c30792e0274..76f2ffdabb2 100644
--- a/ChangeLog-97a
+++ b/ChangeLog-97a
@@ -1,6 +1,34 @@
-Wed Jul 02 21:11:04 1997 Douglas C. Schmidt <schmidt@cs.wustl.edu>
+Wed Jul 2 22:23:49 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
- * ACE version 4.2.15, released Wed Jul 02 21:11:04 1997.
+ * ace/Service_Config.cpp: Used the new ACE_LACKS_UNIX_SIGNALS
+ macro to reduce the #ifdef complexity somewhat.
+
+ * ace/config-{chorus,win32-common}.h: Added #define for
+ ACE_LACKS_UNIX_SIGNALS.
+
+ * ace/OS.h: If a platform (e.g., Chorus) doesn't support signals
+ then #define NSIG 0.
+
+ * ace/Reactor.cpp: Chorus does not support signals. Make the call
+ to register/remove_handler(sig_set, evnet_handler) return
+ succesfully so that some of the examples and test programs do
+ not need to be changed. Thanks to Wei Chiang for this.
+
+ * ace/config-chorus.h: Added a new macro for
+ ACE_LACKS_NAMED_POSIX_SEM to handle Chorus. Thanks to Wei
+ Chiang for this.
+
+ * ace/OS.i: Define macros ACE_PTHREAD_CLEANUP_* so that the
+ related code does not need to be surrounded with #ifdefs.
+ Thanks to Wei Chiang for this.
+
+ * ace/OS.i: Chorus does not support named semaphores. The code
+ that to do with names in sema_init() and sema_destory() is
+ therefore disabled. Thanks to Wei Chiang for this.
+
+ * ace/config-chorus.h: Added support for ACE_LACKS_PTHREAD_CLEANUP
+ and ACE_HAS_POSIX_SEM to the Chorus port. Thanks to Wei Chiang
+ for this.
Wed Jul 2 17:37:09 1997 Douglas C. Schmidt <schmidt@flamenco.cs.wustl.edu>