summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-28 13:48:32 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-28 13:48:32 +0000
commit4071695a9dd26359113694ea951e238c922c5ace (patch)
treece261c65722d1a37ddc26c999cdc247b6b380bf9
parent73201a9395ba0aafdfc84529e331e7e8ee90812b (diff)
downloadATCD-4071695a9dd26359113694ea951e238c922c5ace.tar.gz
ChangeLogTag: Mon Jul 28 08:45:41 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp21
2 files changed, 18 insertions, 11 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 5abcfc5e107..3c29cfc3680 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,6 +1,12 @@
+Mon Jul 28 08:45:41 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * tests/RTScheduling/Scheduling_Interceptor/test_server.cpp:
+
+ Fixed some problems with environment variable usage.
+
Sun Jul 27 19:23:22 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
- * RTScheduling/Scheduling_Interceptor/test_server.cpp:
+ * tests/RTScheduling/Scheduling_Interceptor/test_server.cpp:
Changed filename string literal assignment at top of file
to const char *.
diff --git a/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp b/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp
index 191533fff75..06e8d87bd6b 100644
--- a/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp
+++ b/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp
@@ -7,7 +7,7 @@
const char* filename = "test.ior";
-class test_impl :public POA_test
+class test_impl : public POA_test
{
public:
@@ -19,24 +19,25 @@ public:
}
virtual void one_way (const char * message
- ACE_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
- "One-Way Message = %s\n",
- message));
+ "One-Way Message = %s\n",
+ message));
}
virtual char * two_way (const char * message
- ACE_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
- "Two-Way Message = %s\n",
- message));
+ "Two-Way Message = %s\n",
+ message));
- RTScheduling::DistributableThread_var DT = this->current_->lookup (*(this->current_->id ())
- ACE_ENV_ARG_PARAMETER);
+ RTScheduling::DistributableThread_var DT =
+ this->current_->lookup (*(this->current_->id ())
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK_RETURN (0);
DT->cancel (ACE_ENV_SINGLE_ARG_PARAMETER);
@@ -45,7 +46,7 @@ public:
return CORBA::string_dup (message);
}
- virtual void shutdown (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
+ virtual void shutdown (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
orb_->shutdown ();