sl@0: // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef OPENWFCMONITORTHREAD_H_ sl@0: #define OPENWFCMONITORTHREAD_H_ sl@0: sl@0: #include sl@0: sl@0: class COpenWfcJobManger; sl@0: sl@0: class COpenWfcMonitorThread : public CBase sl@0: { sl@0: public: sl@0: virtual ~COpenWfcMonitorThread(); sl@0: sl@0: static COpenWfcMonitorThread* NewL(TInt aNumber, COpenWfcJobManger& aManager); sl@0: static COpenWfcMonitorThread* NewLC(TInt aNumber, COpenWfcJobManger& aManager); sl@0: static TInt Main(TAny *aSelf); sl@0: void Start(); sl@0: void Resume(); sl@0: void Suspend(); sl@0: void Signal(); sl@0: TInt Run(); sl@0: void EndThread(); sl@0: sl@0: private: sl@0: COpenWfcMonitorThread(COpenWfcJobManger& aManager); sl@0: void ConstructL(TInt aScreenNumber); sl@0: sl@0: private: sl@0: volatile TBool iEndThread; sl@0: RThread iThread; sl@0: TRequestStatus iThreadStatus; sl@0: COpenWfcJobManger& iManager; sl@0: RSemaphore iSemaphore; sl@0: }; sl@0: sl@0: #endif /* OPENWFCMONITORTHREAD_H_ */