blob: 2c88f545d1b9d9ce1aebb2de2c09da5d394e17e8 (
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
|
// $Id$
// ============================================================================
//
// = LIBRARY
// tests
//
// = FILENAME
// Reverse_Lock_Test.cpp
//
// = DESCRIPTION
// This is a simple test to illustrate the functionality of
// ACE_Reverse_Lock. The test acquires and releases mutexes. No
// command line arguments are needed to run the test.
//
// = AUTHOR
// Irfan Pyarali <irfan@cs.wustl.edu>
//
// ============================================================================
#include "test_config.h"
ACE_RCSID(tests, Reverse_Lock_Test, "$Id$")
typedef ACE_Reverse_Lock<ACE_SYNCH_MUTEX> REVERSE_MUTEX;
int
main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT ("Reverse_Lock_Test"));
ACE_SYNCH_MUTEX mutex;
REVERSE_MUTEX reverse_mutex (mutex);
{
ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, monitor, mutex, -1);
ACE_GUARD_RETURN (REVERSE_MUTEX, reverse_monitor, reverse_mutex, -1);
}
ACE_END_TEST;
return 0;
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_Reverse_Lock<ACE_SYNCH_MUTEX>;
template class ACE_Guard<REVERSE_MUTEX>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate ACE_Reverse_Lock<ACE_SYNCH_MUTEX>
#pragma instantiate ACE_Guard<REVERSE_MUTEX>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
|