equal
deleted
inserted
replaced
|
1 // Copyright (c) 2002-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 // Contains declaration of test 15 |
|
15 // |
|
16 // |
|
17 |
|
18 #if (!defined __TEST15CONCURRENCY_H__) |
|
19 #define __TEST15CONCURRENCY_H__ |
|
20 |
|
21 NONSHARABLE_CLASS(CTest15Concurrency) : public CTestStepCTMbufmgr |
|
22 { |
|
23 public: |
|
24 CTest15Concurrency(); |
|
25 ~CTest15Concurrency(); |
|
26 virtual enum TVerdict doTestStepL( void ); |
|
27 private: |
|
28 static TInt fHighPriorityThread(TAny*); //High priority thread in this test |
|
29 |
|
30 TInt iMainThreadTries; |
|
31 TInt iMainThreadFails; |
|
32 TInt iHighThreadTries; |
|
33 TInt iHighThreadFails; |
|
34 }; |
|
35 #endif //(__TEST15CONCURRENCY_H__) |