|
1 // Copyright (c) 1997-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 the License "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 // e32/kernel/kern_ext.mmh |
|
15 // |
|
16 // |
|
17 |
|
18 #if defined(MM_WIN32) |
|
19 macro __MEMMODEL_EMUL_SINGLE_HOST_PROCESS__ |
|
20 #elif defined(MM_DIRECT) |
|
21 macro __MEMMODEL_DIRECT__ |
|
22 #elif defined(MM_MULTIPLE) |
|
23 macro __MEMMODEL_MULTIPLE__ |
|
24 #elif defined(MM_FLEXIBLE) |
|
25 macro __MEMMODEL_FLEXIBLE__ |
|
26 #elif defined(MM_MOVING) |
|
27 macro __MEMMODEL_MOVING__ |
|
28 #endif |
|
29 |
|
30 OS_LAYER_SYSTEMINCLUDE_SYMBIAN |
|
31 SYMBIAN_BASE_SYSTEMINCLUDE(kernel) |
|
32 |
|
33 #if defined(MARM) |
|
34 SYMBIAN_BASE_SYSTEMINCLUDE(kernel/arm) |
|
35 SYMBIAN_BASE_SYSTEMINCLUDE(memmodel/epoc) |
|
36 #elif defined(X86) |
|
37 SYMBIAN_BASE_SYSTEMINCLUDE(kernel/x86) |
|
38 SYMBIAN_BASE_SYSTEMINCLUDE(memmodel/epoc) |
|
39 #elif defined(WINS) |
|
40 SYMBIAN_BASE_SYSTEMINCLUDE(kernel/win32) |
|
41 SYMBIAN_BASE_SYSTEMINCLUDE(memmodel/emul) |
|
42 #endif |
|
43 |
|
44 #ifdef SMP |
|
45 |
|
46 // Don't build export libraries for SMP since, with the exception of the kernel, |
|
47 // they would be identical to the non-SMP ones. |
|
48 noexportlibrary |
|
49 |
|
50 #include "../nkernsmp/nkern_ext.mmh" |
|
51 |
|
52 #ifndef NO_EKERN_LIB |
|
53 library ekernsmp.lib |
|
54 #endif |
|
55 |
|
56 #else |
|
57 #include "../nkern/nkern_ext.mmh" |
|
58 |
|
59 #ifndef NO_EKERN_LIB |
|
60 library ekern.lib |
|
61 #endif |
|
62 |
|
63 #endif |
|
64 |
|
65 macro SEPARATE_USB_DFC_QUEUE |