summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-10 04:43:49 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-10 04:43:49 +0000
commit825c961e67f083b1eb730332c6426830b981cf99 (patch)
treeec83c22748205786973dbae1b27f1ea00b8caa89
parent9fac4fb1c3d647da70f6bbd5f6f189388372d4b5 (diff)
downloadATCD-825c961e67f083b1eb730332c6426830b981cf99.tar.gz
inserted #include of "ace/OS.h"
-rw-r--r--TAO/ChangeLog-98c45
-rw-r--r--TAO/examples/Callback_Quoter/Consumer_Input_Handler.h11
2 files changed, 31 insertions, 25 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index ac691a3d9a9..c87339158a0 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,11 +1,16 @@
+Wed Dec 09 22:43:19 1998 David L. Levine <levine@cs.wustl.edu>
+
+ * examples/Callback_Quoter/Consumer_Input_Handler.h:
+ inserted #include of "ace/OS.h".
+
Wed Dec 9 16:05:07 1998 Nanbor Wang <nanbor@cs.wustl.edu>
- * tao/Invocation.cpp (invoke): Fixed the memory leaks in preparing
- new exceptions. Thanks to Terry Rosenbaum
- <Terry.Rosenbaum@Radiology.MSU.edu> for sending us the patch.
- Also applied more exception handling macros into this file.
+ * tao/Invocation.cpp (invoke): Fixed the memory leaks in preparing
+ new exceptions. Thanks to Terry Rosenbaum
+ <Terry.Rosenbaum@Radiology.MSU.edu> for sending us the patch.
+ Also applied more exception handling macros into this file.
- * tao/try_macros.h: Added TAO_THROW_ENV_RETURN_VOID.
+ * tao/try_macros.h: Added TAO_THROW_ENV_RETURN_VOID.
Wed Dec 9 13:26:50 1998 Chris Gill <cdgill@cs.wustl.edu>
@@ -16,33 +21,33 @@ Wed Dec 9 13:26:50 1998 Chris Gill <cdgill@cs.wustl.edu>
orbsvcs/tests/Simulator/DOVEBrowser/PushConsumer.java
orbsvcs/tests/Simulator/DOVEBrowser/PushConsumerFactory.java:
- Cleaned up some type names in that had changed when RtecScheduler.idl
- was brought up to CORBA standard (type names and element names must
- differ in more than just letter case).
+ Cleaned up some type names in that had changed when RtecScheduler.idl
+ was brought up to CORBA standard (type names and element names must
+ differ in more than just letter case).
- Added support for -ORBnameserviceport on command line of the
- compiled DOVEBrowser version. Generalized command line option
- handling, fixed bug with using == instead of .equals for string
- comparison.
+ Added support for -ORBnameserviceport on command line of the
+ compiled DOVEBrowser version. Generalized command line option
+ handling, fixed bug with using == instead of .equals for string
+ comparison.
* orbsvcs/tests/Simulator/Event_Supplier/Event_Sup.dsp
orbsvcs/tests/Simulator/Event_Supplier/Logging_Sup.dsp: added -I
- switch with relative path to TAO\orbsvcs\orbsvcs to tao_idl
- invocation in the custom build step.
+ switch with relative path to TAO\orbsvcs\orbsvcs to tao_idl
+ invocation in the custom build step.
1998-12-09 Nagarajan Surendran <naga@polka.cs.wustl.edu>
- * orbsvcs/orbsvcs/AV/AVStreams_i.cpp : Fixed warnings with
- TAO_ENDTRY after the return statements in functions.
+ * orbsvcs/orbsvcs/AV/AVStreams_i.cpp : Fixed warnings with
+ TAO_ENDTRY after the return statements in functions.
Wed Dec 9 11:03:13 EST 1998 Aniruddha Gokhale <gokhale@sahyadri.research.bell-labs.com>
- * TAO_IDL/be/be_visitor_sequence/elemtype.cpp:
+ * TAO_IDL/be/be_visitor_sequence/elemtype.cpp:
- In the visit_interface and visit_interface_fwd methods, we were
+ In the visit_interface and visit_interface_fwd methods, we were
not generating the fully scoped name for code generated in the
- *.i or *.cpp file. Thanks to Naga (naga@cs.wustl.edu) for
- submitting the bugreport.
+ *.i or *.cpp file. Thanks to Naga (naga@cs.wustl.edu) for
+ submitting the bugreport.
Wed Dec 09 07:02:06 1998 David L. Levine <levine@cs.wustl.edu>
diff --git a/TAO/examples/Callback_Quoter/Consumer_Input_Handler.h b/TAO/examples/Callback_Quoter/Consumer_Input_Handler.h
index 3b2d1c62d21..f738e70c4d6 100644
--- a/TAO/examples/Callback_Quoter/Consumer_Input_Handler.h
+++ b/TAO/examples/Callback_Quoter/Consumer_Input_Handler.h
@@ -21,6 +21,7 @@
#ifndef CONSUMER_INPUT_HANDLER_H
#define CONSUMER_INPUT_HANDLER_H
+#include "ace/OS.h"
#include <signal.h>
#include <ace/Reactor.h>
#include <ace/Event_Handler.h>
@@ -65,9 +66,9 @@ public:
friend class ACE_Shutup_GPlusPlus;
// Turn off g++ warning
- enum
+ enum
{
- // = TITLE
+ // = TITLE
// A set of values for the execution of the consumer.
//
// = DESCRIPTION
@@ -91,11 +92,11 @@ public:
private:
~Consumer_Input_Handler (void);
// the destructor.
-
+
Consumer_Handler *consumer_handler_;
// The Consumer_Handler object.
-
-
+
+
};