os/kernelhwsrv/kernel/eka/debug/securityServer/inc/rm_debug_logging.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Logging macros for use in debug subsystem
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef RM_DEBUG_LOGGING_H
sl@0
    19
#define RM_DEBUG_LOGGING_H
sl@0
    20
sl@0
    21
/* Debug messages
sl@0
    22
 * 
sl@0
    23
 * Debug messages are only generated for debug builds.
sl@0
    24
 * 
sl@0
    25
 * For kernel mode, use __KTRACE_OPT(KDEBUGGER, Kern::Printf(), 
sl@0
    26
 * for user mode use RDebug::Printf(). 
sl@0
    27
 * 
sl@0
    28
 */
sl@0
    29
sl@0
    30
#ifdef _DEBUG
sl@0
    31
sl@0
    32
  #ifdef __KERNEL_MODE__
sl@0
    33
sl@0
    34
    #include <kernel/kernel.h>
sl@0
    35
    #include <nkern/nk_trace.h>
sl@0
    36
sl@0
    37
    #define LOG_MSG( a )            __KTRACE_OPT(KDEBUGGER, Kern::Printf( a ))
sl@0
    38
    #define LOG_MSG2( a, b )        __KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b ))
sl@0
    39
    #define LOG_MSG3( a, b, c )     __KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b, c ))
sl@0
    40
    #define LOG_MSG4( a, b, c, d )  __KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b, c, d ))
sl@0
    41
    #define LOG_MSG5( a, b, c, d, e )  __KTRACE_OPT(KDEBUGGER, Kern::Printf( a, b, c, d, e ))
sl@0
    42
  #else
sl@0
    43
sl@0
    44
    #include <e32debug.h>
sl@0
    45
sl@0
    46
    #define LOG_MSG( a )              RDebug::Printf( a )
sl@0
    47
    #define LOG_MSG2( a, b )          RDebug::Printf( a, b )
sl@0
    48
    #define LOG_MSG3( a, b, c )       RDebug::Printf( a, b, c )
sl@0
    49
    #define LOG_MSG4( a, b, c, d )    RDebug::Printf( a, b, c, d )
sl@0
    50
    #define LOG_MSG5( a, b, c, d, e )    RDebug::Printf( a, b, c, d, e )
sl@0
    51
sl@0
    52
  #endif
sl@0
    53
sl@0
    54
#else
sl@0
    55
sl@0
    56
  #define LOG_MSG( a )
sl@0
    57
  #define LOG_MSG2( a, b )
sl@0
    58
  #define LOG_MSG3( a, b, c )
sl@0
    59
  #define LOG_MSG4( a, b, c, d )
sl@0
    60
  #define LOG_MSG5( a, b, c, d, e )
sl@0
    61
sl@0
    62
#endif
sl@0
    63
sl@0
    64
#endif //RM_DEBUG_LOGGING_H
sl@0
    65