os/kernelhwsrv/kernel/eka/drivers/debug/rmdebug/d_target_process.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Purpose: Kernel-side tracking of process state
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
 
sl@0
    18
#ifndef D_TARGET_PROCESS_H
sl@0
    19
#define D_TARGET_PROCESS_H
sl@0
    20
sl@0
    21
#include "d_debug_agent.h"
sl@0
    22
sl@0
    23
// Debug Process Tracker class
sl@0
    24
class DTargetProcess : public DBase
sl@0
    25
{
sl@0
    26
public:
sl@0
    27
	DTargetProcess();
sl@0
    28
	~DTargetProcess();
sl@0
    29
sl@0
    30
	static TInt Compare(const DTargetProcess& aFirst, const DTargetProcess& aSecond);
sl@0
    31
sl@0
    32
	TInt SetProcessName(const TDesC8& aProcessName);
sl@0
    33
sl@0
    34
	const TPtr8& ProcessName(void);
sl@0
    35
sl@0
    36
	TInt AddAgent(const TUint64 aAgentId);
sl@0
    37
sl@0
    38
	TInt RemoveAgent(TUint64 aAgentId);
sl@0
    39
sl@0
    40
	DDebugAgent* operator[](TInt aIndex);
sl@0
    41
sl@0
    42
	DDebugAgent* Agent(TUint64 aAgentId);
sl@0
    43
sl@0
    44
	TInt AgentCount(void);
sl@0
    45
	TInt ResumeThread(DThread* aThread);
sl@0
    46
	TInt SuspendThread(DThread* aThread, TBool aFreezeThread=EFalse);
sl@0
    47
	TBool CheckSuspended(DThread* aThread) const;
sl@0
    48
	void FSWait();
sl@0
    49
	TBool HasSuspendedThreads() const;
sl@0
    50
	void NotifyEvent(const TDriverEventInfo& aEventInfo);
sl@0
    51
sl@0
    52
private:
sl@0
    53
	TInt ResumeFrozenThread(NThread& aThread);
sl@0
    54
	TInt ResumeSuspendedThread(DThread* aThread);
sl@0
    55
	TInt FreezeThread();
sl@0
    56
	TInt DoSuspendThread(DThread* aThread);
sl@0
    57
sl@0
    58
private:
sl@0
    59
	TPtr8 iProcessName;
sl@0
    60
sl@0
    61
	RPointerArray<DDebugAgent> iAgentList;
sl@0
    62
sl@0
    63
	RArray<TUint64> iSuspendedThreads;
sl@0
    64
sl@0
    65
	RPointerArray<NFastSemaphore> iFrozenThreadSemaphores;
sl@0
    66
sl@0
    67
};
sl@0
    68
sl@0
    69
#endif // D_TARGET_PROCESS_H
sl@0
    70