blob: 80c3b6cadda386c4c1d90346061a8c27834a1314 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// $Id$
// ============================================================================
//
// = LIBRARY
// tests
//
// = FILENAME
// Atomic_Op_Test.cpp
//
// = DESCRIPTION
// This is a simple test of the Atomic Operations Class in ACE.
// On platforms like Win32, ACE uses template specialization to
// use native implementations provided by the OS to accelarate
// these operations.
//
// = AUTHOR
// Irfan Pyarali
//
// ============================================================================
#include "tests/test_config.h"
#include "ace/Synch.h"
ACE_RCSID(tests, Atomic_Op_Test, "$Id$")
#if defined(__BORLANDC__) && __BORLANDC__ >= 0x0530
USELIB("..\ace\aced.lib");
//---------------------------------------------------------------------------
#endif /* defined(__BORLANDC__) && __BORLANDC__ >= 0x0530 */
#if defined (ACE_HAS_THREADS)
int
main (int, ASYS_TCHAR *[])
{
ACE_START_TEST (ASYS_TEXT ("Atomic_Op_Test"));
ACE_Atomic_Op <ACE_Thread_Mutex, long> foo (5);
ACE_ASSERT (foo == 5);
++foo;
ACE_ASSERT (foo == 6);
--foo;
ACE_ASSERT (foo == 5);
foo += 10;
ACE_ASSERT (foo == 15);
foo -= 10;
ACE_ASSERT (foo == 5);
foo = 5L;
ACE_ASSERT (foo == 5);
ACE_END_TEST;
return 0;
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_Atomic_Op<ACE_Thread_Mutex, long>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate ACE_Atomic_Op<ACE_Thread_Mutex, long>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
#else
int
main (int, ASYS_TCHAR *[])
{
ACE_START_TEST (ASYS_TEXT ("Atomic_Op_Test"));
ACE_ERROR ((LM_ERROR, ASYS_TEXT ("threads not supported on this platform\n")));
ACE_END_TEST;
return 0;
}
#endif /* ACE_HAS_THREADS */
|