commsfwutils/commsbufs/version1/mbufmgr/group/MBufMgr.MMP
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     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 manager DLL
       
    15 // Manages MBuf pool containing a number of MBufs.
       
    16 // 
       
    17 //
       
    18 
       
    19 /**
       
    20  @file
       
    21 */
       
    22 
       
    23 #include        <cflog.mmh>
       
    24 
       
    25 TARGET          mbufmgr.dll
       
    26 TARGETTYPE      DLL
       
    27 UID             0x1000008D 0x101F7481
       
    28 VENDORID        0x70000001
       
    29 
       
    30 // speed optimisations 
       
    31 #ifdef MARM_ARMV5
       
    32  OPTION ARMCC -O3 -Otime
       
    33 #endif
       
    34 
       
    35 // Define SYMBIAN_ENABLE_NETWORKING_PERFMETRICS to enable the slow, low-volume logging of performance data. 
       
    36 // Need to recompile COMMSFW + individual client projects
       
    37 //MACRO SYMBIAN_ENABLE_NETWORKING_PERFMETRICS
       
    38 #include "comms-infras/commsdebugutility.mmh"
       
    39 
       
    40 SOURCEPATH      ../src
       
    41 SOURCE          MB_ASY.CPP MB_BUF.CPP MB_CHN.CPP MB_MAN.CPP
       
    42 SOURCE          MB_QUE.CPP Mb_timer.CPP
       
    43 SOURCE          MB_CELL.CPP MB_PKT.CPP MB_STRM.CPP
       
    44 SOURCE          MBufPoolChain.cpp MBufPoolManager.cpp
       
    45 SOURCE          MBufMemoryAllocator.cpp
       
    46 SOURCE          mb_thread.cpp
       
    47 
       
    48 USERINCLUDE	../INC
       
    49 OS_LAYER_SYSTEMINCLUDE_SYMBIAN
       
    50 
       
    51 LIBRARY	        euser.lib
       
    52 LIBRARY         esock.lib	// for TSockAddr c'tor used by RMBufPktInfo::CreateL
       
    53 LIBRARY         commsfw.lib
       
    54 
       
    55 CAPABILITY ALL -Tcb
       
    56 
       
    57 UNPAGED
       
    58 
       
    59 SMPSAFE