navienginebsp/ne1_tb/replacement_utils/replacement_utils.h
changeset 0 5de814552237
equal deleted inserted replaced
-1:000000000000 0:5de814552237
       
     1 /*
       
     2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  
       
    15 * ne1_tb\replacement_utils\replacement_utils.h
       
    16 * This header file controls which of the generic utility functions are replaced
       
    17 * by the variant.  The replacement implmenetations are supplied in the files
       
    18 * kernel.cia and common.cia in this directory.
       
    19 * The replacement functions are selected by a series of macros as described
       
    20 * below:
       
    21 * Macro:						Functions replaced:		Location of replacement:
       
    22 * USE_REPLACEMENT_MEMSET		memclr					common.cia
       
    23 * memset
       
    24 * USE_REPLACEMENT_MEMCPY		wordmove				common.cia
       
    25 * memmove
       
    26 * memcpy
       
    27 * USE_REPLACEMENT_UMEMGET		kumemget32				kernel.cia
       
    28 * umemget32
       
    29 * kumemget
       
    30 * umemget
       
    31 * USE_REPLACEMENT_UMEMPUT		kumemput32				kernel.cia
       
    32 * umemput32
       
    33 * kumemput
       
    34 * umemput
       
    35 *
       
    36 */
       
    37 
       
    38 
       
    39 
       
    40 #ifndef __REPLACEMENT_UTILS_H__
       
    41 
       
    42 //#define USE_REPLACEMENT_MEMSET
       
    43 //#define USE_REPLACEMENT_MEMCPY
       
    44 //#define USE_REPLACEMENT_UMEMGET
       
    45 //#define USE_REPLACEMENT_UMEMPUT
       
    46 
       
    47 #endif