TAO 2.0.2
|
The TSS resoures shared by all the ORBs. More...
#include <TSS_Resources.h>
Public Member Functions | |
TAO_TSS_Resources (void) | |
Constructor. | |
~TAO_TSS_Resources (void) | |
Destructor. | |
Static Public Member Functions | |
static TAO_TSS_Resources * | instance (void) |
Return a singleton instance of this class. | |
Public Attributes | |
void * | poa_current_impl_ |
void * | rtscheduler_current_impl_ |
void * | rtscheduler_previous_current_impl_ |
CORBA::Short | rtcorba_current_priority_ |
CORBA::Environment * | default_environment_ |
The default environment for the thread. | |
CORBA::Environment | tss_environment_ |
TAO::GUIResource_Factory * | gui_resource_factory_ |
A factory for creating GUIReactors. | |
Private Member Functions | |
TAO_TSS_Resources (const TAO_TSS_Resources &) | |
Do not copy TSS resources. | |
void | operator= (const TAO_TSS_Resources &) |
Do not copy TSS resources. |
The TSS resoures shared by all the ORBs.
This class is used by TAO to store the resources that are thread-specific but are *not* ORB specific. The members are public because only the ORB Core is expected to access them.
TAO_TSS_Resources::TAO_TSS_Resources | ( | void | ) |
Constructor.
TAO_TSS_Resources::~TAO_TSS_Resources | ( | void | ) |
Destructor.
TAO_TSS_Resources::TAO_TSS_Resources | ( | const TAO_TSS_Resources & | ) | [private] |
Do not copy TSS resources.
TAO_TSS_Resources * TAO_TSS_Resources::instance | ( | void | ) | [static] |
Return a singleton instance of this class.
void TAO_TSS_Resources::operator= | ( | const TAO_TSS_Resources & | ) | [private] |
Do not copy TSS resources.
The default environment for the thread.
TAO::GUIResource_Factory* TAO_TSS_Resources::gui_resource_factory_ |
A factory for creating GUIReactors.
GUIResource_Factory
has to be stored in TSS, as GUIReactors are operational only in within the context of GUI event loops.
Points to structure containing state for the current upcall context in this thread. Note that it does not come from the resource factory because it must always be held in thread-specific storage. For now, since TAO_ORB_Core instances are TSS singletons, we simply ride along and don't allocate occupy another TSS slot since there are some platforms where those are precious commodities (e.g., NT).
The CORBA priority of the thread if set via RTCORBA::Current. RTCORBA::minPriority - 1 otherwise.
If the user (or library) provides no environment the ORB_Core still holds one.