kerneltest/e32test/benchmark/ipc.cpp
branchRCL_3
changeset 39 2bb754abd467
parent 0 a41df078684a
equal deleted inserted replaced
36:bbf8bed59bcb 39:2bb754abd467
   210 
   210 
   211 	IpcLatency(TBool aRemote, TInt aPriority) : 
   211 	IpcLatency(TBool aRemote, TInt aPriority) : 
   212 		BMProgram(
   212 		BMProgram(
   213 			aRemote 
   213 			aRemote 
   214 				? ((aPriority == KBMPriorityHigh) 
   214 				? ((aPriority == KBMPriorityHigh) 
   215 					? _L("Client-server Framework[Remote High Prioirty Server]")
   215 					? _L("Client-server Framework[Remote High Priority Server]")
   216 					: _L("Client-server Framework[Remote Low Prioirty Server]"))
   216 					: _L("Client-server Framework[Remote Low Priority Server]"))
   217 				: ((aPriority == KBMPriorityHigh) 
   217 				: ((aPriority == KBMPriorityHigh) 
   218 					? _L("Client-server Framework[Local High Prioirty Server]")
   218 					? _L("Client-server Framework[Local High Priority Server]")
   219 					: _L("Client-server Framework[Local Low Prioirty Server]")))
   219 					: _L("Client-server Framework[Local Low Priority Server]")))
   220 		{
   220 		{
   221 		iPriority = aPriority;
   221 		iPriority = aPriority;
   222 		iRemote = aRemote;
   222 		iRemote = aRemote;
   223 		}
   223 		}
   224 
   224