debugsrv/runmodedebug/tsrc/rm_debug/common/t_target_launcher.h
changeset 56 aa2539c91954
equal deleted inserted replaced
54:a151135b0cf9 56:aa2539c91954
       
     1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Definitions for target launcher
       
    15 // 
       
    16 //
       
    17 
       
    18 
       
    19 #ifndef RMDEBUG_TARGET_LAUNCHER_H
       
    20 #define RMDEBUG_TARGET_LAUNCHER_H
       
    21 
       
    22 // Controls how many times the target applications are launched
       
    23 const TInt KNumLaunches = 3;
       
    24 
       
    25 // Controls how many applications are attached and launched
       
    26 // If changing this, need to make sure there are enough apps
       
    27 // being built. see KTargetExe and t_rmdebug_app*
       
    28 const TInt KNumApps = 4;  
       
    29 
       
    30 _LIT(KLaunchSemaphoreName, "t_rmdebug_launch_semaphore");
       
    31 _LIT(KLaunchSemaphoreNameSearchString, "t_rmdebug_launch_semaphore*");
       
    32 _LIT(KTargetExe,"z:\\sys\\bin\\t_rmdebug_app%d.exe");
       
    33 _LIT8(KTargetExeName,"t_rmdebug_app%d.exe");
       
    34 _LIT(KProcessFinder,"*t_rmdebug_app%d*");
       
    35 _LIT(KTargetOptions,"-f%d");
       
    36 
       
    37 _LIT(KZSysBin,"z:\\sys\\bin\\");
       
    38 
       
    39 _LIT(KLauncherExe,"t_rmdebug_target_launcher.exe");
       
    40 
       
    41 _LIT_SECURITY_POLICY_PASS(KAllowAllPolicy);
       
    42 
       
    43 #endif // RMDEBUG_TARGET_LAUNCHER_H