blob: 84f8e3691ff924298ab5ddf551012255b1017d0e (
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
|
// -*- C++ -*-
#if defined (ACE_HAS_TOKENS_LIBRARY)
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE
ACE_Remote_Mutex::ACE_Remote_Mutex (void)
{
ACE_TRACE ("ACE_Remote_Mutex::ACE_Remote_Mutex");
}
ACE_INLINE
ACE_Remote_Mutex::ACE_Remote_Mutex (const ACE_TCHAR *token_name,
int ignore_deadlock,
int debug)
{
ACE_TRACE ("ACE_Remote_Mutex::ACE_Remote_Mutex");
this->open (token_name, ignore_deadlock, debug);
}
// ************************************************************
ACE_INLINE
ACE_Remote_RLock::ACE_Remote_RLock (const ACE_TCHAR *token_name,
int ignore_deadlock,
int debug)
{
ACE_TRACE ("ACE_Remote_RLock::ACE_Remote_RLock");
this->open (token_name, ignore_deadlock, debug);
}
// ************************************************************
ACE_INLINE
ACE_Remote_WLock::ACE_Remote_WLock (const ACE_TCHAR *token_name,
int ignore_deadlock,
int debug)
{
ACE_TRACE ("ACE_Remote_WLock::ACE_Remote_WLock");
this->open (token_name, ignore_deadlock, debug);
}
ACE_END_VERSIONED_NAMESPACE_DECL
#endif /* ACE_HAS_TOKENS_LIBRARY */
|