summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-18 21:01:57 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-18 21:01:57 +0000
commitc511ebf65beb0693e5127f503a27f16d472f02a7 (patch)
tree521fa96a504992d17b86f00513b60c2e66f6024d
parent1fe496d35a98d1dbd9f38340d2d57c664b6bb2c1 (diff)
downloadATCD-c511ebf65beb0693e5127f503a27f16d472f02a7.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-96a5
-rw-r--r--ChangeLog-98a7
-rw-r--r--README1
-rw-r--r--ace/OS.h4
4 files changed, 11 insertions, 6 deletions
diff --git a/ChangeLog-96a b/ChangeLog-96a
index 8b25e02595f..5aa3c9b69fc 100644
--- a/ChangeLog-96a
+++ b/ChangeLog-96a
@@ -848,7 +848,7 @@ Fri May 3 02:24:19 1996 Douglas C. Schmidt (schmidt@tango.cs.wustl.edu)
* ace: Removed a stray file called Svc_Conf_tokens.h. This was
causing problems on Win32 due to name clashes... Thanks to Adam
- Miller for pointing this out.
+ Miller <adam@royalblueny.com> for pointing this out.
* ace/SString.cpp (strstr): there were some for (size_t j; ...) {}
if (j == x) constructs in the code that have as of recently
@@ -1410,7 +1410,8 @@ Wed Apr 10 01:56:52 1996 Douglas C. Schmidt (schmidt@mambo.cs.wustl.edu)
* ace: Added the ACE_TEMPLATES_REQUIRE_SPECIALIZATION to
config-sunos5.5-g++.h file. This should allow ACE to build
- correctly. Thanks to Adam Miller for pointing this out.
+ correctly. Thanks to Adam Miller <adam@royalblueny.com> for
+ pointing this out.
* ace: Installed SunOS 5.5, so now we can finally test pthreads!
diff --git a/ChangeLog-98a b/ChangeLog-98a
index 96c4e0af87c..9d57af819a3 100644
--- a/ChangeLog-98a
+++ b/ChangeLog-98a
@@ -1,3 +1,10 @@
+Thu Dec 18 14:35:24 1997 Douglas C. Schmidt <schmidt@flamenco.cs.wustl.edu>
+
+ * ace/OS.h: The server logging daemon is implemented using TCP/IP
+ under Win32. Therefore, we can simplify the creation of the
+ ACE_DEFAULT_LOGGER_KEY. Thanks to Patrick J. McNerthney
+ <pat@thememedia.com> for reporting this problem.
+
Thu Dec 18 09:59:33 1997 David L. Levine <levine@cs.wustl.edu>
* ace/OS.h: on Digital Unix 4.0, only declare sigwait () with cxx,
diff --git a/README b/README
index 5dc82375d97..e4c93ea30c2 100644
--- a/README
+++ b/README
@@ -494,6 +494,7 @@ Patrick J. McNerthney <pat@thememedia.com>
Lori Anderson <lori@probita.com>
Erik Margraf <erik@asgard.gud.siemens.co.at>
Bryan Doerr <Bryan.S.Doerr@boeing.com>
+Adam Miller <adam@royalblueny.com>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson and is now at ObjectSpace. Paul devised the recursive
diff --git a/ace/OS.h b/ace/OS.h
index f66d2a53ea4..ae5bf60a2f1 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -213,15 +213,11 @@
#endif /* ACE_DEFAULT_RENDEZVOUS */
#if !defined (ACE_DEFAULT_LOGGER_KEY)
-#if defined (ACE_WIN32)
-#define ACE_DEFAULT_LOGGER_KEY __TEXT ("\\temp\\server_daemon")
-#else
#if defined (ACE_HAS_STREAM_PIPES)
#define ACE_DEFAULT_LOGGER_KEY "/tmp/server_daemon"
#else
#define ACE_DEFAULT_LOGGER_KEY "localhost:10013"
#endif /* ACE_HAS_STREAM_PIPES */
-#endif /* ACE_WIN32 */
#endif /* ACE_DEFAULT_LOGGER_KEY */
#if !defined (ACE_DEFAULT_SERVER_HOST)