summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-01-15 23:06:18 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-01-15 23:06:18 +0000
commit8ad763b3e0e55c0dd5971dac865ebcb2e428c278 (patch)
tree1a4a37649aa19b7eac13a94b3bafd5bdd49d0f16
parentae375ab47fdfba7ed34bd4e4c7b475bfe73257e1 (diff)
downloadATCD-8ad763b3e0e55c0dd5971dac865ebcb2e428c278.tar.gz
ChangeLogTag:Mon Jan 15 15:22:42 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-02a5
-rw-r--r--ChangeLogs/ChangeLog-03a5
-rw-r--r--ace/Asynch_IO.h2
4 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e2b992f8127..2d56211ba62 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
Mon Jan 15 15:22:42 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+ * ace/Asynch_IO.h: Changed the ACE_Asynch_Read_Stream::read()
+ method's "bytes_to_read" parameter to "num_bytes_to_read" to
+ workaround a weird problem with some compilers. Thanks to Chris
+ Kohlhoff <chris@kohlhoff.com> for this fix.
+
* examples/Service_Configurator/IPC-tests/README: Updated this
file so that it's now up-to-date and also explains how to
reconfigure a server if SIGHUP isn't supported. Thanks to Mike
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index e2b992f8127..2d56211ba62 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,5 +1,10 @@
Mon Jan 15 15:22:42 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+ * ace/Asynch_IO.h: Changed the ACE_Asynch_Read_Stream::read()
+ method's "bytes_to_read" parameter to "num_bytes_to_read" to
+ workaround a weird problem with some compilers. Thanks to Chris
+ Kohlhoff <chris@kohlhoff.com> for this fix.
+
* examples/Service_Configurator/IPC-tests/README: Updated this
file so that it's now up-to-date and also explains how to
reconfigure a server if SIGHUP isn't supported. Thanks to Mike
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index e2b992f8127..2d56211ba62 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,5 +1,10 @@
Mon Jan 15 15:22:42 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+ * ace/Asynch_IO.h: Changed the ACE_Asynch_Read_Stream::read()
+ method's "bytes_to_read" parameter to "num_bytes_to_read" to
+ workaround a weird problem with some compilers. Thanks to Chris
+ Kohlhoff <chris@kohlhoff.com> for this fix.
+
* examples/Service_Configurator/IPC-tests/README: Updated this
file so that it's now up-to-date and also explains how to
reconfigure a server if SIGHUP isn't supported. Thanks to Mike
diff --git a/ace/Asynch_IO.h b/ace/Asynch_IO.h
index e41b18b664e..b2a67db6847 100644
--- a/ace/Asynch_IO.h
+++ b/ace/Asynch_IO.h
@@ -286,7 +286,7 @@ public:
* ACE_SIGRTMAX. This argument is a no-op on non-POSIX4 systems.
*/
int read (ACE_Message_Block &message_block,
- u_long bytes_to_read,
+ u_long num_bytes_to_read,
const void *act = 0,
int priority = 0,
int signal_number = ACE_SIGRTMIN);