navienginebsp/ne1_tb/replacement_utils/kernel.cia
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\kernel.cia
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #include <replacement_utils.h>
       
    22 #include <klib.h>
       
    23 #include <e32cia.h>
       
    24 
       
    25 #ifdef USE_REPLACEMENT_UMEMGET
       
    26 	
       
    27 EXPORT_C __NAKED__ void kumemget32(TAny* /*aKernAddr*/, const TAny* /*aAddr*/, TInt /*aLength*/)
       
    28 	{
       
    29 	// TO DO (optional): Implement replacement kumemget32
       
    30 	}
       
    31 
       
    32 EXPORT_C __NAKED__ void umemget32(TAny* /*aKernAddr*/, const TAny* /*aUserAddr*/, TInt /*aLength*/)
       
    33 	{
       
    34 	// TO DO (optional): Implement replacement umemget32
       
    35 	}
       
    36 
       
    37 EXPORT_C __NAKED__ void kumemget(TAny* /*aKernAddr*/, const TAny* /*aAddr*/, TInt /*aLength*/)
       
    38 	{
       
    39 	// TO DO (optional): Implement replacement kumemget
       
    40 	}
       
    41 
       
    42 EXPORT_C __NAKED__ void umemget(TAny* /*aKernAddr*/, const TAny* /*aUserAddr*/, TInt /*aLength*/)
       
    43 	{
       
    44 	// TO DO (optional): Implement replacement umemget
       
    45 	}
       
    46 
       
    47 #endif  // USE_REPLACEMENT_UMEMGET
       
    48 
       
    49 #ifdef USE_REPLACEMENT_UMEMPUT
       
    50 
       
    51 EXPORT_C __NAKED__ void kumemput32(TAny* /*aAddr*/, const TAny* /*aKernAddr*/, TInt /*aLength*/)
       
    52 	{
       
    53 	// TO DO (optional): Implement replacement kumemput32
       
    54 	}
       
    55 
       
    56 EXPORT_C __NAKED__ void umemput32(TAny* /*aUserAddr*/, const TAny* /*aKernAddr*/, TInt /*aLength*/)
       
    57 	{
       
    58 	// TO DO (optional): Implement replacement umemput32
       
    59 	}
       
    60 	
       
    61 EXPORT_C __NAKED__ void kumemput(TAny* /*aAddr*/, const TAny* /*aKernAddr*/, TInt /*aLength*/)
       
    62 	{
       
    63 	// TO DO (optional): Implement replacement kumemput
       
    64 	}
       
    65 
       
    66 EXPORT_C __NAKED__ void umemput(TAny* /*aUserAddr*/, const TAny* /*aKernAddr*/, TInt /*aLength*/)
       
    67 	{
       
    68 	// TO DO (optional): Implement replacement umemput
       
    69 	}
       
    70 
       
    71 #endif