diff options
author | venkita <venkita@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-12-31 14:02:45 +0000 |
---|---|---|
committer | venkita <venkita@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-12-31 14:02:45 +0000 |
commit | eb614cc38899a68611d23f7a7aa525cf83b88a1d (patch) | |
tree | 00e5124842423b146335a6fb17ca6cdae875672f | |
parent | 41acff8a8fc559c947d2a3c05d1820482660466c (diff) | |
download | ATCD-eb614cc38899a68611d23f7a7aa525cf83b88a1d.tar.gz |
ChangeLogTag: Mon Dec 31 07:55:09 2001 Venkita Subramonian <venkita@cs.wustl.edu>
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 7 | ||||
-rw-r--r-- | TAO/orbsvcs/Notify_Service/Notify_Server.cpp | 2 | ||||
-rw-r--r-- | TAO/orbsvcs/Notify_Service/Notify_Service.cpp | 2 | ||||
-rw-r--r-- | TAO/orbsvcs/Notify_Service/Notify_Service.h | 2 |
4 files changed, 10 insertions, 3 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index b27219731d1..bbc649415d7 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,3 +1,10 @@ +Mon Dec 31 07:55:09 2001 Venkita Subramonian <venkita@cs.wustl.edu> + + * orbsvcs/Notify_Service/Notify_Service.cpp: + orbsvcs/Notify_Service/Notify_Service.h: + orbsvcs/Notify_Service/Notify_Server.cpp: + Fixed compile error in static build. + Mon Dec 31 14:49:12 2001 Johnny Willemsen <jwillemsen@remedy.nl> * orbsvcs/Notify_Service/Notify_Server.cpp: diff --git a/TAO/orbsvcs/Notify_Service/Notify_Server.cpp b/TAO/orbsvcs/Notify_Service/Notify_Server.cpp index a7ae5313992..3b413207337 100644 --- a/TAO/orbsvcs/Notify_Service/Notify_Server.cpp +++ b/TAO/orbsvcs/Notify_Service/Notify_Server.cpp @@ -29,7 +29,7 @@ main (int argc, char *argv[]) ACE_TRY { - notify_service.run (TAO_ENV_SINGLE_ARG_PARAMETER); + notify_service.run (); notify_service.shutdown (TAO_ENV_SINGLE_ARG_PARAMETER); ACE_TRY_CHECK; } diff --git a/TAO/orbsvcs/Notify_Service/Notify_Service.cpp b/TAO/orbsvcs/Notify_Service/Notify_Service.cpp index ea9b1facc4a..07f46e9c588 100644 --- a/TAO/orbsvcs/Notify_Service/Notify_Service.cpp +++ b/TAO/orbsvcs/Notify_Service/Notify_Service.cpp @@ -233,7 +233,7 @@ TAO_Notify_Service::resolve_naming_service (TAO_ENV_SINGLE_ARG_DECL) } int -TAO_Notify_Service::run (TAO_ENV_SINGLE_ARG_DECL) +TAO_Notify_Service::run () { if (TAO_debug_level > 0 ) ACE_DEBUG ((LM_DEBUG, "%s: Running the Notification Service\n", diff --git a/TAO/orbsvcs/Notify_Service/Notify_Service.h b/TAO/orbsvcs/Notify_Service/Notify_Service.h index 5bde3f1a866..21f74537880 100644 --- a/TAO/orbsvcs/Notify_Service/Notify_Service.h +++ b/TAO/orbsvcs/Notify_Service/Notify_Service.h @@ -69,7 +69,7 @@ class TAO_Notify_Service // Initializes the Service. // Returns 0 on success, -1 on error. - int run (TAO_ENV_SINGLE_ARG_DECL); + int run (void); // run the Service. // Returns 0 on success, -1 on error. |