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
|
// $Id: adaptive_recursive_lock_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/Lock_Adapter_T.h"
#include "ace/Recursive_Thread_Mutex.h"
#if defined (ACE_HAS_THREADS)
class ACE_Svc_Export Adaptive_Recursive_Lock_Test : public Adaptive_Lock_Performance_Test_Base
{
public:
virtual int init (int, ACE_TCHAR *[]);
};
int
Adaptive_Recursive_Lock_Test::init (int, ACE_TCHAR *[])
{
ACE_Lock *lock;
ACE_NEW_RETURN (lock,
ACE_Lock_Adapter<ACE_Recursive_Thread_Mutex> (),
-1);
return this->set_lock (lock);
}
ACE_SVC_FACTORY_DECLARE (Adaptive_Recursive_Lock_Test)
ACE_SVC_FACTORY_DEFINE (Adaptive_Recursive_Lock_Test)
#endif /* ACE_HAS_THREADS */
|