blob: b5405e5b6b9b04da5edd297f85ee23111bb7669f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// -*- C++ -*-
//==========================================================================
/**
* @file TSS_Adapter.h
*
* $Id$
*
* Originally in Synch.h
*
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//==========================================================================
#ifndef ACE_TSS_ADAPTER_H
#define ACE_TSS_ADAPTER_H
#include /**/ "ace/pre.h"
#include /**/ "ace/ACE_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class ACE_TSS_Adapter
*
* @brief This class encapsulates a TSS object and its associated
* C++ destructor function. It is used by the ACE_TSS...
* methods (in Synch_T.cpp) in order to allow an extern
* "C" cleanup routine to be used. Needed by the "frigging"
* MVS C++ compiler.
*
* Objects of this class are stored in thread specific
* storage. ts_obj_ points to the "real" object and
* func_ is a pointer to the C++ cleanup function for ts_obj_.
*/
class ACE_Export ACE_TSS_Adapter
{
public:
/// Initialize the adapter.
ACE_TSS_Adapter (void *object, ACE_THR_DEST f);
/// Perform the cleanup operation.
void cleanup (void);
//private:
/// The real TS object.
void * const ts_obj_;
/// The real cleanup routine for ts_obj;
ACE_THR_DEST func_;
};
ACE_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* ACE_TSS_ADAPTER_H */
|