sl@0: // Copyright (c) 2004-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: #include "startup.rh" sl@0: sl@0: // This file has been based on sl@0: // app-framework/sysstart/resource/wins/SSCForStartupMode0.rss sl@0: // It is customized for running the wserv tests using wshell. sl@0: // sl@0: // ENTRY POINT sl@0: // sl@0: sl@0: // THIS MUST BE THE FIRST RESOURCE. The system relies on sl@0: // this having a resource ID of 1 sl@0: sl@0: RESOURCE STARTUP_ENTRY_POINT r_entry_point sl@0: { sl@0: entry_point = r_startup_state_critical_static; sl@0: } sl@0: // sl@0: sl@0: sl@0: sl@0: // sl@0: // CRITICAL-STATIC startup state sl@0: // sl@0: RESOURCE STATE_INFO r_startup_state_critical_static sl@0: { sl@0: id = EStartupStateCriticalStatic; sl@0: name = "Critical Static"; sl@0: command_list = r_critical_static_commands; sl@0: next = r_startup_state_critical_dynamic; sl@0: } sl@0: sl@0: RESOURCE COMMAND_ARRAY r_critical_static_commands sl@0: { sl@0: commands = sl@0: { sl@0: START_PROCESS_INFO sl@0: { sl@0: path = "Z:\\sys\\bin\\SysAgt2Svr.exe"; sl@0: start_method = EWaitForStart; sl@0: no_of_retries_on_failure = 2; sl@0: }, sl@0: START_PROCESS_INFO sl@0: { sl@0: path = "Z:\\sys\\bin\\fbserv.exe"; sl@0: start_method = EWaitForStart; sl@0: no_of_retries_on_failure = 1; sl@0: }, sl@0: START_PROCESS_INFO sl@0: { sl@0: path = "Z:\\sys\\bin\\wserv.exe"; sl@0: start_method = EWaitForStart; sl@0: } sl@0: }; sl@0: } sl@0: sl@0: // sl@0: // CRITICAL-DYNAMIC startup state sl@0: // sl@0: RESOURCE STATE_INFO r_startup_state_critical_dynamic sl@0: { sl@0: id = EStartupStateCriticalDynamic; sl@0: name = "Critical Dynamic"; sl@0: command_list = r_critical_dynamic_commands; sl@0: next = r_startup_state_non_critical; sl@0: } sl@0: sl@0: RESOURCE COMMAND_ARRAY r_critical_dynamic_commands sl@0: { sl@0: commands = sl@0: { sl@0: }; sl@0: } sl@0: sl@0: // sl@0: // NON-CRITICAL startup state sl@0: // sl@0: RESOURCE STATE_INFO r_startup_state_non_critical sl@0: { sl@0: id = EStartupStateNonCritical; sl@0: name = "Non-critical"; sl@0: command_list = r_non_critical_commands; sl@0: next = 0; // No more state transitions sl@0: } sl@0: sl@0: RESOURCE COMMAND_ARRAY r_non_critical_commands sl@0: { sl@0: commands = sl@0: { sl@0: }; sl@0: } sl@0: sl@0: sl@0: sl@0: