summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs
diff options
context:
space:
mode:
authorpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-12-13 16:29:25 +0000
committerpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-12-13 16:29:25 +0000
commit810bd9414af8a6f20024d0eadba8032ebeb57391 (patch)
tree569fd8ac92de89796d2bd4b45104e6694897512b /TAO/orbsvcs
parent6f45e5b0a7eb073d0ef875d9d70f7b99f2904ec1 (diff)
downloadATCD-810bd9414af8a6f20024d0eadba8032ebeb57391.tar.gz
ChangeLogTag:Fri Dec 13 10:58:40 2002 Pradeep Gore <pradeep@oomworks.com>
Diffstat (limited to 'TAO/orbsvcs')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/CosNotify_Initializer.cpp4
-rw-r--r--TAO/orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.cpp2
-rw-r--r--TAO/orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.h6
-rw-r--r--TAO/orbsvcs/tests/Notify/Discarding/Structured_Consumer.cpp2
4 files changed, 5 insertions, 9 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/CosNotify_Initializer.cpp b/TAO/orbsvcs/orbsvcs/Notify/CosNotify_Initializer.cpp
index 9ff92aa6e50..7794ee10956 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/CosNotify_Initializer.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/CosNotify_Initializer.cpp
@@ -2,10 +2,6 @@
#include "CosNotify_Initializer.h"
-#if ! defined (__ACE_INLINE__)
-#include "CosNotify_Initializer.inl"
-#endif /* __ACE_INLINE__ */
-
ACE_RCSID(Notify, TAO_NS_CosNotify_Initializer, "$id$")
#include "Notify_Service.h"
diff --git a/TAO/orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.cpp b/TAO/orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.cpp
index 8c9c313ad13..229e5cd1634 100644
--- a/TAO/orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.cpp
+++ b/TAO/orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.cpp
@@ -6,7 +6,7 @@
Notify_Structured_Push_Consumer::Notify_Structured_Push_Consumer (
const char* name,
CORBA::Short policy,
- unsigned int expected,
+ CORBA::Long expected,
CORBA::Long max_events_per_consumer,
CORBA::Boolean& done)
: name_ (name),
diff --git a/TAO/orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.h b/TAO/orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.h
index 6b24113584f..8497b2cf84c 100644
--- a/TAO/orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.h
+++ b/TAO/orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.h
@@ -27,7 +27,7 @@ public:
Notify_Structured_Push_Consumer (
const char* name,
CORBA::Short policy,
- unsigned int expected,
+ CORBA::Long expected,
CORBA::Long max_events_per_consumer,
CORBA::Boolean& done);
@@ -42,9 +42,9 @@ protected:
ACE_CString name_;
CORBA::Short discard_policy_;
- unsigned int expected_;
+ CORBA::Long expected_;
CORBA::Long max_events_per_consumer_;
- unsigned int count_;
+ CORBA::Long count_;
CORBA::Boolean& done_;
};
diff --git a/TAO/orbsvcs/tests/Notify/Discarding/Structured_Consumer.cpp b/TAO/orbsvcs/tests/Notify/Discarding/Structured_Consumer.cpp
index 9d98e24ff94..4463a44ebcb 100644
--- a/TAO/orbsvcs/tests/Notify/Discarding/Structured_Consumer.cpp
+++ b/TAO/orbsvcs/tests/Notify/Discarding/Structured_Consumer.cpp
@@ -19,7 +19,7 @@
static const char* ior = "file://supplier.ior";
static CORBA::Short discard_policy = CosNotification::FifoOrder;
-static unsigned int expected = 13;
+static CORBA::Long expected = 13;
CORBA::Long max_events_per_consumer = 10;
// ******************************************************************