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
82
83
84
85
86
87
88
|
// $Id$
// ============================================================================
//
// = LIBRARY
// tests
//
// = FILENAME
// Thread_Mutex_Test.cpp
//
// = DESCRIPTION
// This is a simple test to illustrate the functionality of
// ACE_Thread_Mutex. The test acquires and releases mutexes. No
// command line arguments are needed to run the test.
//
// = AUTHOR
// Prashant Jain and Doug Schmidt
//
// ============================================================================
#include "test_config.h"
#include "ace/Thread_Manager.h"
ACE_RCSID(tests, Thread_Mutex_Test, "$Id$")
#if defined(__BORLANDC__) && __BORLANDC__ >= 0x0530
USELIB("..\ace\aced.lib");
//---------------------------------------------------------------------------
#endif /* defined(__BORLANDC__) && __BORLANDC__ >= 0x0530 */
#if defined (ACE_HAS_THREADS)
static void *
test (void *args)
{
ACE_Thread_Mutex *mutex = (ACE_Thread_Mutex *) args;
if (! mutex) /* null */; // To suppress ghs warning about unused
// local variable "mutex".
ACE_OS::srand (ACE_OS::time (0));
for (size_t i = 0; i < ACE_MAX_ITERATIONS / 2; i++)
{
ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("(%P|%t) = trying to acquire on iteration %d\n"), i));
ACE_ASSERT (mutex->acquire () == 0);
ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("(%P|%t) = acquired on iteration %d\n"), i));
// Sleep for a random amount of time between 0 and 2 seconds.
// Note that it's ok to use rand() here because we are running
// within the critical section defined by the Thread_Mutex.
ACE_OS::sleep (ACE_OS::rand () % 2);
ACE_ASSERT (mutex->release () == 0);
ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("(%P|%t) = released on iteration %d\n"), i));
}
return 0;
}
#endif /* ACE_HAS_THREADS */
static void
spawn (void)
{
#if defined (ACE_HAS_THREADS)
ACE_Thread_Mutex mutex;
if (ACE_Thread_Manager::instance ()->spawn_n (ACE_MAX_THREADS,
ACE_THR_FUNC (test),
(void *) &mutex,
THR_NEW_LWP | THR_DETACHED) == -1)
ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n%a"), ASYS_TEXT ("thread create failed")));
// Wait for the threads to exit.
ACE_Thread_Manager::instance ()->wait ();
#else
ACE_ERROR ((LM_ERROR, ASYS_TEXT ("threads not supported on this platform\n")));
#endif /* ACE_HAS_THREADS */
}
int
main (int, ASYS_TCHAR *[])
{
ACE_START_TEST (ASYS_TEXT ("Thread_Mutex_Test"));
spawn ();
ACE_END_TEST;
return 0;
}
|