summaryrefslogtreecommitdiff
path: root/TAO/tao/TSS_Resources.h
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit8008dd09ccf88d4edef237a184a698cac42f2952 (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/TSS_Resources.h
parent13d6e89af439164c0ade48e6f5c3e9b3f971e8c9 (diff)
downloadATCD-8008dd09ccf88d4edef237a184a698cac42f2952.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/TSS_Resources.h')
-rw-r--r--TAO/tao/TSS_Resources.h114
1 files changed, 0 insertions, 114 deletions
diff --git a/TAO/tao/TSS_Resources.h b/TAO/tao/TSS_Resources.h
deleted file mode 100644
index 251c7a26837..00000000000
--- a/TAO/tao/TSS_Resources.h
+++ /dev/null
@@ -1,114 +0,0 @@
-// -*- C++ -*-
-
-// ===================================================================
-/**
- * @file TSS_Resources.h
- *
- * $Id$
- *
- * @author DOC Group - ISIS at Vanderbilt University
- * @author DOC Center - Washington University at St. Louis
- * @author DOC Laboratory - University of California at Irvine
- */
-// ===================================================================
-
-#ifndef TAO_TAO_TSS_RESOURCES_H
-#define TAO_TAO_TSS_RESOURCES_H
-
-#include /**/ "ace/pre.h"
-
-#include "tao/TAO_Export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/Environment.h"
-
-#include "tao/Policy_Current_Impl.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-// Forward declarations
-namespace TAO
-{
- class GUIResource_Factory;
-}
-/**
- * @class TAO_TSS_Resources
- *
- * @brief 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.
- */
-class TAO_Export TAO_TSS_Resources
-{
-public:
-
- /// Constructor
- TAO_TSS_Resources (void);
-
- /// Destructor
- ~TAO_TSS_Resources (void);
-
- /// Return a singleton instance of this class.
- static TAO_TSS_Resources * instance (void);
-
-private:
-
- /// Do not copy TSS resources
- //@{
- TAO_TSS_Resources (const TAO_TSS_Resources&);
- void operator= (const TAO_TSS_Resources&);
- //@}
-
-public:
-
- /**
- * 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).
- */
- void * poa_current_impl_;
-
- void * rtscheduler_current_impl_;
-
- void * rtscheduler_previous_current_impl_;
-
- /// The default environment for the thread.
- CORBA::Environment * default_environment_;
-
- /// If the user (or library) provides no environment the ORB_Core
- /// still holds one.
- CORBA::Environment tss_environment_;
-
-#if (TAO_HAS_CORBA_MESSAGING == 1)
-
- /// The initial PolicyCurrent for this thread. Should be a TSS
- /// resource.
- TAO_Policy_Current_Impl initial_policy_current_;
-
- /// This pointer is reset by the POA on each upcall.
- TAO_Policy_Current_Impl * policy_current_;
-
-#endif /* TAO_HAS_CORBA_MESSAGING == 1 */
-
- /// A factory for creating GUIReactors.
- /**
- * @c GUIResource_Factory has to be stored in TSS, as GUIReactors
- * are operational only in within the context of GUI event loops.
- */
- TAO::GUIResource_Factory * gui_resource_factory_;
-};
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#include /**/ "ace/post.h"
-
-#endif /* TAO_TSS_RESOURCES_H */