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
|
// $Id: adaptive_sema_test.cpp 91670 2010-09-08 18:02:26Z johnnyw $
#define ACE_BUILD_SVC_DLL
#include "ace/Log_Msg.h"
#include "Adaptive_Lock_Performance_Test_Base.h"
#include "ace/Semaphore.h"
#include "ace/Lock_Adapter_T.h"
#if defined (ACE_HAS_THREADS)
class ACE_Svc_Export Adaptive_Sema_Test : public Adaptive_Lock_Performance_Test_Base
{
public:
virtual int init (int, ACE_TCHAR *[]);
private:
static ACE_Semaphore sema;
};
ACE_Semaphore Adaptive_Sema_Test::sema (1);
int
Adaptive_Sema_Test::init (int, ACE_TCHAR *[])
{
ACE_Lock *lock;
ACE_NEW_RETURN (lock,
ACE_Lock_Adapter<ACE_Semaphore> (Adaptive_Sema_Test::sema),
-1);
return this->set_lock (lock);
}
ACE_SVC_FACTORY_DECLARE (Adaptive_Sema_Test)
ACE_SVC_FACTORY_DEFINE (Adaptive_Sema_Test)
#endif /* ACE_HAS_THREADS */
|