#include <ThreadStrategySingle.h>
Inheritance diagram for TAO::Portable_Server::ThreadStrategySingle:
Public Member Functions | |
virtual int | enter () |
virtual int | exit () |
virtual::PortableServer::ThreadPolicyValue | type () const |
Private Attributes | |
TAO_SYNCH_RECURSIVE_MUTEX | lock_ |
|
Implements TAO::Portable_Server::ThreadStrategy. Definition at line 22 of file ThreadStrategySingle.cpp.
00023 { 00024 return lock_.acquire(); 00025 } |
|
Implements TAO::Portable_Server::ThreadStrategy. Definition at line 28 of file ThreadStrategySingle.cpp.
00029 { 00030 return lock_.release(); 00031 } |
|
Implements TAO::Portable_Server::ThreadStrategy. Definition at line 34 of file ThreadStrategySingle.cpp.
00035 { 00036 return ::PortableServer::SINGLE_THREAD_MODEL; 00037 } |
|
Definition at line 54 of file ThreadStrategySingle.h. |