os/graphics/windowing/windowserver/test/resource/wins/gsastartupcmdlist7.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.
sl@0
     1
// Copyright (c) 2008-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 "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
// gsastartupcmdlist7_target.rss
sl@0
    15
// Modified default resource file to test graphics wserv
sl@0
    16
// Modifications:
sl@0
    17
// - customized for running the wserv tests using wshell
sl@0
    18
// 
sl@0
    19
//
sl@0
    20
sl@0
    21
sl@0
    22
#include <ssm/ssmcmd.rh>
sl@0
    23
#include <ssm/ssmsubstates.hrh>
sl@0
    24
#include <ssm/cmdpersistreboots.rh>
sl@0
    25
#include <ssm/cmdpersistreboots.hrh>
sl@0
    26
sl@0
    27
UID2 KUidSsmCommandListResourceFile
sl@0
    28
sl@0
    29
// SSM_COMMAND_LIST_ROOT must be the first resource in a command list resource file.
sl@0
    30
// The SSM relies on this having a resource ID of 1.
sl@0
    31
RESOURCE SSM_COMMAND_LIST_ROOT
sl@0
    32
	{
sl@0
    33
	command_list_mapping = r_command_list_mapping;
sl@0
    34
	}
sl@0
    35
sl@0
    36
RESOURCE SSM_COMMAND_LIST_MAPPING r_command_list_mapping
sl@0
    37
	{
sl@0
    38
	mappings =
sl@0
    39
		{
sl@0
    40
		SSM_COMMANDLISTID_TO_RESOURCEID
sl@0
    41
			{
sl@0
    42
			command_list_id = ESsmStartupSubStateCriticalStatic;
sl@0
    43
			resource_id = r_critical_static_commands;
sl@0
    44
			}
sl@0
    45
		};
sl@0
    46
	}
sl@0
    47
sl@0
    48
sl@0
    49
RESOURCE SSM_COMMAND_LIST r_critical_static_commands
sl@0
    50
   	{
sl@0
    51
	commands =
sl@0
    52
		{
sl@0
    53
		r_increment_boot_count
sl@0
    54
		, r_command_publish_system_state
sl@0
    55
		, r_command_ssmutilsrv
sl@0
    56
		, r_command_sysagt2svr
sl@0
    57
		, r_command_fbserv
sl@0
    58
		, r_command_wserv
sl@0
    59
		};
sl@0
    60
	}
sl@0
    61
sl@0
    62
sl@0
    63
RESOURCE SSM_START_PROCESS_INFO r_command_ssmutilsrv
sl@0
    64
	{
sl@0
    65
	severity = ECmdCriticalSeverity;
sl@0
    66
	name = "ssmutilsrv.exe";
sl@0
    67
	execution_behaviour = ESsmWaitForSignal;
sl@0
    68
	retries = 2;
sl@0
    69
	}
sl@0
    70
sl@0
    71
RESOURCE SSM_START_PROCESS_INFO r_command_sysagt2svr
sl@0
    72
	{
sl@0
    73
	severity = ECmdCriticalSeverity;
sl@0
    74
	name = "SysAgt2Svr.exe";
sl@0
    75
	execution_behaviour = ESsmWaitForSignal;
sl@0
    76
	retries = 2;
sl@0
    77
	}
sl@0
    78
sl@0
    79
RESOURCE SSM_START_PROCESS_INFO r_command_fbserv
sl@0
    80
	{
sl@0
    81
	severity = ECmdCriticalSeverity;
sl@0
    82
	name = "fbserv.exe";
sl@0
    83
	execution_behaviour = ESsmWaitForSignal;
sl@0
    84
	retries = 1;
sl@0
    85
	}
sl@0
    86
sl@0
    87
RESOURCE SSM_START_PROCESS_INFO r_command_wserv
sl@0
    88
	{
sl@0
    89
	severity = ECmdCriticalSeverity;
sl@0
    90
	name = "wserv.exe";
sl@0
    91
	execution_behaviour = ESsmWaitForSignal;
sl@0
    92
	}
sl@0
    93
sl@0
    94
RESOURCE SSM_PUBLISH_SYSTEM_STATE r_command_publish_system_state
sl@0
    95
	{
sl@0
    96
	severity = ECmdCriticalSeverity;
sl@0
    97
	}
sl@0
    98
sl@0
    99
RESOURCE SSM_START_CUSTOM_COMMAND r_increment_boot_count
sl@0
   100
	{
sl@0
   101
	severity = ECmdCriticalSeverity;
sl@0
   102
	execution_behaviour = ESsmWaitForSignal;
sl@0
   103
	dllname = "cmncustomcmds.dll";
sl@0
   104
	ordinal = 1; // Persist reboots custom command is at ordinal 1
sl@0
   105
	dll_data = r_increment;
sl@0
   106
	}
sl@0
   107
sl@0
   108
RESOURCE SSM_COMMAND_PERSIST_REBOOTS r_increment
sl@0
   109
	{
sl@0
   110
	val = EIncrementBootCount;
sl@0
   111
	}
sl@0
   112