os/graphics/windowing/windowserver/test/resource/armv5/SSCForStartupMode7_target.rss
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 2004-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 //
    15 
    16 #include "startup.rh"
    17 
    18 // This file has been based on
    19 // app-framework/sysstart/resource/armv5/SSCForStartupMode0_target.rss
    20 // It is customized for running the wserv tests using wshell.
    21 //
    22 // ENTRY POINT
    23 //
    24 
    25 // THIS MUST BE THE FIRST RESOURCE. The system relies on
    26 // this having a resource ID of 1
    27 
    28 RESOURCE STARTUP_ENTRY_POINT r_entry_point
    29 	{
    30 	entry_point = r_startup_state_critical_static; 
    31 	}
    32 //
    33 
    34 
    35 
    36 //
    37 // CRITICAL-STATIC startup state
    38 //
    39 RESOURCE STATE_INFO r_startup_state_critical_static
    40 	{
    41 	id = EStartupStateCriticalStatic;
    42 	name = "Critical Static";
    43 	command_list = r_critical_static_commands;
    44 	next = r_startup_state_critical_dynamic;
    45 	}
    46 
    47 RESOURCE COMMAND_ARRAY r_critical_static_commands
    48 	{
    49 	commands =
    50 		{
    51 		START_PROCESS_INFO
    52 			{
    53 			path = "Z:\\sys\\bin\\SysAgt2Svr.exe"; 
    54 			start_method = EWaitForStart;
    55 			no_of_retries_on_failure = 2;
    56 			},
    57 		START_PROCESS_INFO
    58 			{
    59 			path = "Z:\\sys\\bin\\fbserv.exe";
    60 			start_method = EWaitForStart;
    61 			no_of_retries_on_failure = 1;
    62 			},
    63 		START_PROCESS_INFO
    64 			{
    65 			path = "Z:\\sys\\bin\\ewsrv.exe";
    66 			start_method = EWaitForStart;
    67 			}
    68 		};
    69 	}
    70 
    71 //
    72 // CRITICAL-DYNAMIC startup state
    73 //
    74 RESOURCE STATE_INFO r_startup_state_critical_dynamic
    75 	{
    76 	id = EStartupStateCriticalDynamic;
    77 	name = "Critical Dynamic";
    78 	command_list = r_critical_dynamic_commands;
    79 	next = r_startup_state_non_critical;
    80 	}
    81 
    82 RESOURCE COMMAND_ARRAY r_critical_dynamic_commands
    83 	{
    84 	commands =
    85 		{
    86 		};
    87 	}
    88 
    89 //
    90 // NON-CRITICAL startup state
    91 //
    92 RESOURCE STATE_INFO r_startup_state_non_critical
    93 	{
    94 	id = EStartupStateNonCritical;
    95 	name = "Non-critical";
    96 	command_list = r_non_critical_commands;
    97 	next = 0;	// No more state transitions
    98 	}
    99 
   100 RESOURCE COMMAND_ARRAY r_non_critical_commands
   101 	{
   102 	commands =
   103 		{
   104 		};
   105 	}
   106 
   107 
   108 
   109