os/ossrv/genericopenlibs/posixrealtimeextensions/test/testtimer/inc/ttimerthread.h
Update contrib.
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Name : ttimerthread.h
20 #ifndef __TTIMERTHREAD__
21 #define __TTIMERTHREAD__
26 #include <test/testexecutestepbase.h>
28 class TTimerTestThreadParams
31 TTimerTestThreadParams(CTestStep& aTestStep)
32 : iTestStep(aTestStep),
38 ~TTimerTestThreadParams()
46 class CTimerTestThread:public CBase
50 static CTimerTestThread* NewL(TTimerTestThreadParams& aParam);
52 CTimerTestThread(TTimerTestThreadParams& aParam);
53 static TInt OEEntry(TAny* aData);
54 static void OEMainL(TTimerTestThreadParams& aParams);
57 TBool compareTimeSpec(struct itimerspec timeSpec1, struct itimerspec timeSpec2);
59 CTestStep& iParentStep;
60 TTimerTestThreadParams& iParams;
64 #endif //__TTIMERTHREAD__