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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
// $Id: manual_event.cpp 91671 2010-09-08 18:39:23Z johnnyw $
// The test shows the use of an ACE_Manual_Event to create a
// Pseudo_Barrier. Multiple threads are created which do the
// following:
//
// 1. work
// 2. synch with other threads
// 3. more work
//
// ACE_Manual_Event is use to synch with other
// threads. ACE_Manual_Event::signal() is used for broadcasting.
#include "ace/OS_NS_unistd.h"
#include "ace/OS_main.h"
#include "ace/Service_Config.h"
#include "ace/Thread_Mutex.h"
#include "ace/Manual_Event.h"
#include "ace/Thread_Manager.h"
#include "ace/Atomic_Op.h"
#if defined (ACE_HAS_THREADS)
static ACE_Atomic_Op <ACE_Thread_Mutex, int> amount_of_work = 0;
class Pseudo_Barrier
// = TITLE
// A barrier class using ACE manual-reset events.
//
// = DESCRIPTION
// This is *not* a real barrier.
// Pseudo_Barrier is more like a ``one shot'' barrier.
// All waiters after the Nth waiter are allowed to go.
// The barrier does not reset after the Nth waiter.
// For an example of a real barrier, please see class ACE_Barrier.
{
public:
Pseudo_Barrier (u_long count);
//FUZZ: disable check_for_lack_ACE_OS
int wait (void);
//FUZZ: enable check_for_lack_ACE_OS
private:
ACE_Atomic_Op <ACE_Thread_Mutex, int> counter_;
ACE_Manual_Event event_;
};
Pseudo_Barrier::Pseudo_Barrier (u_long count)
: counter_ (count)
{
}
int
Pseudo_Barrier::wait (void)
{
if (--this->counter_ == 0)
return this->event_.signal ();
else
return this->event_.wait ();
}
static void *
worker (void *arg)
{
Pseudo_Barrier &thread_barrier = *(Pseudo_Barrier *) arg;
// work
ACE_DEBUG ((LM_DEBUG, "(%t) working (%d secs)\n", ++::amount_of_work));
ACE_OS::sleep (::amount_of_work.value ());
// synch with everybody else
ACE_DEBUG ((LM_DEBUG, "(%t) waiting to synch with others\n"));
thread_barrier.wait ();
// more work
ACE_DEBUG ((LM_DEBUG, "(%t) more work (%d secs)\n", ++::amount_of_work));
ACE_OS::sleep (::amount_of_work.value ());
ACE_DEBUG ((LM_DEBUG, "(%t) dying\n"));
return 0;
}
int
ACE_TMAIN (int argc, ACE_TCHAR **argv)
{
int n_threads = argc == 2 ? ACE_OS::atoi (argv[1]) : 5;
ACE_Thread_Manager &tm = *ACE_Thread_Manager::instance ();
// synch object shared by all threads
Pseudo_Barrier thread_barrier (n_threads);
// create workers
if (tm.spawn_n (n_threads, (ACE_THR_FUNC) worker, &thread_barrier) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "thread creates for worker failed"), -1);
// wait for all workers to exit
if (tm.wait () == -1)
ACE_ERROR_RETURN ((LM_ERROR, "thread wait failed"), -1);
else
ACE_DEBUG ((LM_ERROR, "graceful exit\n"));
return 0;
}
#else
int
ACE_TMAIN (int, ACE_TCHAR *[])
{
ACE_ERROR ((LM_ERROR, "threads not supported on this platform\n"));
return 0;
}
#endif /* ACE_HAS_THREADS */
|