diff options
author | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-04-11 15:27:35 +0000 |
---|---|---|
committer | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-04-11 15:27:35 +0000 |
commit | b5ae4d2ddf2bcc47b4fcade88a6aae5be98357c9 (patch) | |
tree | c8fd3547410e66bc41ed93ad796071d4acd4d110 /TAO/tao/DynamicInterface/Request.inl | |
parent | ee139fb60ab45ce82c7c1061cfdd2eb3c44299a8 (diff) | |
download | ATCD-b5ae4d2ddf2bcc47b4fcade88a6aae5be98357c9.tar.gz |
ChangeLogTag:Mon Apr 11 10:23:08 2005 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/DynamicInterface/Request.inl')
-rw-r--r-- | TAO/tao/DynamicInterface/Request.inl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/TAO/tao/DynamicInterface/Request.inl b/TAO/tao/DynamicInterface/Request.inl index af653985972..a5af8a567a4 100644 --- a/TAO/tao/DynamicInterface/Request.inl +++ b/TAO/tao/DynamicInterface/Request.inl @@ -185,3 +185,14 @@ CORBA::Request::raw_user_exception (void) { return this->raw_user_exception_; } + +ACE_INLINE CORBA::Boolean +CORBA::Request::response_received (ACE_ENV_SINGLE_ARG_DECL) +{ + ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, + ace_mon, + this->lock_, + 0); + + return this->response_received_; +} |