summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/server_interceptor.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-04-26 07:52:51 +0200
committerGitHub <noreply@github.com>2019-04-26 07:52:51 +0200
commit629588a38264e5ff3d2fd2a0c8f866d863b332b7 (patch)
treee08cb15d12d2994bd53be3db616c98a80321e4a0 /TAO/orbsvcs/tests/ImplRepo/ping_interrupt/server_interceptor.h
parent26212992b6723c287d231fa0a6b8e2ebf059533c (diff)
parentb940c3951fb908fcdaa3c8490803ac7459dfc0a5 (diff)
downloadATCD-629588a38264e5ff3d2fd2a0c8f866d863b332b7.tar.gz
Merge pull request #893 from jwillemsen/jwi-implreprestart-889
Fixed race condition in the ImplRepo on server shutdown/restart
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/ping_interrupt/server_interceptor.h')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/ping_interrupt/server_interceptor.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/server_interceptor.h b/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/server_interceptor.h
index 8c2a9bdc62a..913e58f89c1 100644
--- a/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/server_interceptor.h
+++ b/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/server_interceptor.h
@@ -17,28 +17,27 @@
#pragma warning(disable:4250)
#endif /* _MSC_VER */
+/// Server-side echo interceptor. For checking interceptor visually only.
class Ping_Death_Request_Interceptor
: public virtual PortableInterceptor::ServerRequestInterceptor,
public virtual ::CORBA::LocalObject
{
- // = Server-side echo interceptor. For checking interceptor visually only.
public:
- Ping_Death_Request_Interceptor (int *counter);
// cotr.
+ Ping_Death_Request_Interceptor (int *counter);
- ~Ping_Death_Request_Interceptor ();
// dotr.
+ ~Ping_Death_Request_Interceptor ();
void set_poa (PortableServer::POA_ptr poa);
- virtual char * name (void);
// Canonical name of the interceptor.
+ virtual char * name (void);
virtual void destroy (void);
virtual void receive_request (PortableInterceptor::ServerRequestInfo_ptr ri);
- virtual void receive_request_service_contexts (
- PortableInterceptor::ServerRequestInfo_ptr);
+ virtual void receive_request_service_contexts (PortableInterceptor::ServerRequestInfo_ptr);
virtual void send_reply (PortableInterceptor::ServerRequestInfo_ptr ri);