equal
deleted
inserted
replaced
|
1 // Copyright (c) 2003-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 // mbufmgr.dll MBuf DLL |
|
15 // |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 @SYMPurpose commsbufs.dll MBuf manager DLL |
|
22 |
|
23 */ |
|
24 |
|
25 #include <cflog.mmh> |
|
26 |
|
27 TARGET mbufmgr.dll |
|
28 TARGETTYPE DLL |
|
29 UID 0x1000008D 0x101F7481 |
|
30 VENDORID 0x70000001 |
|
31 |
|
32 // speed optimisations |
|
33 #ifdef MARM_ARMV5 |
|
34 OPTION ARMCC -O3 -Otime |
|
35 #endif |
|
36 |
|
37 // Define SYMBIAN_ENABLE_NETWORKING_PERFMETRICS to enable the slow, low-volume logging of performance data. |
|
38 // Need to recompile COMMSFW + individual client projects |
|
39 //MACRO SYMBIAN_ENABLE_NETWORKING_PERFMETRICS |
|
40 #include "comms-infras/commsdebugutility.mmh" |
|
41 |
|
42 SOURCEPATH ../mbufmgr/src |
|
43 SOURCE mb_buf.cpp |
|
44 SOURCE mb_chn.cpp |
|
45 SOURCE mb_que.cpp |
|
46 SOURCE mb_cell.cpp |
|
47 SOURCE mb_pkt.cpp |
|
48 SOURCE mb_strm.cpp |
|
49 SOURCE mb_thread.cpp |
|
50 SOURCE mb_asy.cpp |
|
51 SOURCE mb_allocator.cpp |
|
52 |
|
53 USERINCLUDE ../mbufmgr/inc |
|
54 USERINCLUDE ../inc |
|
55 OS_LAYER_SYSTEMINCLUDE_SYMBIAN |
|
56 |
|
57 deffile mbufmgr.def |
|
58 |
|
59 LIBRARY euser.lib |
|
60 LIBRARY esock.lib // for TSockAddr c'tor used by RMBufPktInfo::CreateL |
|
61 LIBRARY commsfw.lib |
|
62 LIBRARY commsbufs.lib |
|
63 |
|
64 CAPABILITY ALL -Tcb |
|
65 |
|
66 UNPAGED |
|
67 |
|
68 SMPSAFE |