os/kernelhwsrv/userlibandfileserver/fileserver/shostmassstorage/server/shared/debug.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-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
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @internalTechnology
sl@0
    19
*/
sl@0
    20
sl@0
    21
#ifndef DEBUG_H
sl@0
    22
#define DEBUG_H
sl@0
    23
sl@0
    24
//#define _SCSI_DEBUG_PRINT_
sl@0
    25
//#define _BOT_DEBUG_PRINT_
sl@0
    26
//#define _HOST_DEBUG_PRINT_
sl@0
    27
//#define _TESTREPORT_PRINT_
sl@0
    28
sl@0
    29
#if (defined(_DEBUG) || defined(_DEBUG_RELEASE))
sl@0
    30
#include <e32debug.h>
sl@0
    31
#endif
sl@0
    32
sl@0
    33
#if defined(_SCSI_DEBUG_PRINT_) && (defined(_DEBUG) || defined(_DEBUG_RELEASE))
sl@0
    34
/** Trace - format string  */
sl@0
    35
#define __SCSIPRINT(t) {RDebug::Print(t);}
sl@0
    36
/** Trace - format string with 1 param */
sl@0
    37
#define __SCSIPRINT1(t,a) {RDebug::Print(t,a);}
sl@0
    38
/** Trace - format string with 2 params */
sl@0
    39
#define __SCSIPRINT2(t,a,b) {RDebug::Print(t,a,b);}
sl@0
    40
/** Trace - format string with 3 params */
sl@0
    41
#define __SCSIPRINT3(t,a,b,c) {RDebug::Print(t,a,b,c);}
sl@0
    42
/** Trace - format string with 4 params */
sl@0
    43
#define __SCSIPRINT4(t,a,b,c,d) {RDebug::Print(t,a,b,c,d);}
sl@0
    44
/** Trace - format string with 5 params */
sl@0
    45
#define __SCSIPRINT5(t,a,b,c,d,e) {RDebug::Print(t,a,b,c,d,e);}
sl@0
    46
#else
sl@0
    47
/** NULL definition */
sl@0
    48
#define __SCSIPRINT(t)
sl@0
    49
/** NULL definition */
sl@0
    50
#define __SCSIPRINT1(t,a)
sl@0
    51
/** NULL definition */
sl@0
    52
#define __SCSIPRINT2(t,a,b)
sl@0
    53
/** NULL definition */
sl@0
    54
#define __SCSIPRINT3(t,a,b,c)
sl@0
    55
/** NULL definition */
sl@0
    56
#define __SCSIPRINT4(t,a,b,c,d)
sl@0
    57
/** NULL definition */
sl@0
    58
#define __SCSIPRINT5(t,a,b,c,d,e)
sl@0
    59
#endif
sl@0
    60
sl@0
    61
sl@0
    62
#if defined(_BOT_DEBUG_PRINT_) && (defined(_DEBUG) || defined(_DEBUG_RELEASE))
sl@0
    63
/** Trace - format string */
sl@0
    64
#define __BOTPRINT(t) {RDebug::Print(t);}
sl@0
    65
/** Trace - format string with 1 param */
sl@0
    66
#define __BOTPRINT1(t,a) {RDebug::Print(t,a);}
sl@0
    67
/** Trace - format string with 2 params */
sl@0
    68
#define __BOTPRINT2(t,a,b) {RDebug::Print(t,a,b);}
sl@0
    69
/** Trace - format string with 3 params */
sl@0
    70
#define __BOTPRINT3(t,a,b,c) {RDebug::Print(t,a,b,c);}
sl@0
    71
/** Trace - format string with 4 params */
sl@0
    72
#define __BOTPRINT4(t,a,b,c,d) {RDebug::Print(t,a,b,c,d);}
sl@0
    73
/** Trace - format string with 5 params */
sl@0
    74
#define __BOTPRINT5(t,a,b,c,d,e) {RDebug::Print(t,a,b,c,d,e);}
sl@0
    75
#else
sl@0
    76
/** NULL definition */
sl@0
    77
#define __BOTPRINT(t)
sl@0
    78
/** NULL definition */
sl@0
    79
#define __BOTPRINT1(t,a)
sl@0
    80
/** NULL definition */
sl@0
    81
#define __BOTPRINT2(t,a,b)
sl@0
    82
/** NULL definition */
sl@0
    83
#define __BOTPRINT3(t,a,b,c)
sl@0
    84
/** NULL definition */
sl@0
    85
#define __BOTPRINT4(t,a,b,c,d)
sl@0
    86
/** NULL definition */
sl@0
    87
#define __BOTPRINT5(t,a,b,c,d,e)
sl@0
    88
#endif
sl@0
    89
sl@0
    90
sl@0
    91
#if defined(_HOST_DEBUG_PRINT_) && (defined(_DEBUG) || defined(_DEBUG_RELEASE))
sl@0
    92
/** Trace - format string */
sl@0
    93
#define __HOSTPRINT(t) {RDebug::Print(t);}
sl@0
    94
/** Trace - format string with 1 param */
sl@0
    95
#define __HOSTPRINT1(t,a) {RDebug::Print(t,a);}
sl@0
    96
/** Trace - format string with 2 params */
sl@0
    97
#define __HOSTPRINT2(t,a,b) {RDebug::Print(t,a,b);}
sl@0
    98
/** Trace - format string with 3 params */
sl@0
    99
#define __HOSTPRINT3(t,a,b,c) {RDebug::Print(t,a,b,c);}
sl@0
   100
/** Trace - format string with 4 params */
sl@0
   101
#define __HOSTPRINT4(t,a,b,c,d) {RDebug::Print(t,a,b,c,d);}
sl@0
   102
/** Trace - format string with 5 params */
sl@0
   103
#define __HOSTPRINT5(t,a,b,c,d,e) {RDebug::Print(t,a,b,c,d,e);}
sl@0
   104
#else
sl@0
   105
/** NULL definition */
sl@0
   106
#define __HOSTPRINT(t)
sl@0
   107
/** NULL definition */
sl@0
   108
#define __HOSTPRINT1(t,a)
sl@0
   109
/** NULL definition */
sl@0
   110
#define __HOSTPRINT2(t,a,b)
sl@0
   111
/** NULL definition */
sl@0
   112
#define __HOSTPRINT3(t,a,b,c)
sl@0
   113
/** NULL definition */
sl@0
   114
#define __HOSTPRINT4(t,a,b,c,d)
sl@0
   115
/** NULL definition */
sl@0
   116
#define __HOSTPRINT5(t,a,b,c,d,e)
sl@0
   117
#endif
sl@0
   118
sl@0
   119
sl@0
   120
#if defined(_TESTREPORT_PRINT_) && (defined(_DEBUG) || defined(_DEBUG_RELEASE))
sl@0
   121
/** Trace - format string */
sl@0
   122
#define __TESTREPORT(t) {RDebug::Print(t);}
sl@0
   123
/** Trace - format string with 1 param */
sl@0
   124
#define __TESTREPORT1(t,a) {RDebug::Print(t,a);}
sl@0
   125
/** Trace - format string with 2 params */
sl@0
   126
#define __TESTREPORT2(t,a,b) {RDebug::Print(t,a,b);}
sl@0
   127
/** Trace - format string with 3 params */
sl@0
   128
#define __TESTREPORT3(t,a,b,c) {RDebug::Print(t,a,b,c);}
sl@0
   129
/** Trace - format string with 4 params */
sl@0
   130
#define __TESTREPORT4(t,a,b,c,d) {RDebug::Print(t,a,b,c,d);}
sl@0
   131
/** Trace - format string with 5 params */
sl@0
   132
#define __TESTREPORT5(t,a,b,c,d,e) {RDebug::Print(t,a,b,c,d,e);}
sl@0
   133
#else
sl@0
   134
/** NULL definition */
sl@0
   135
#define __TESTREPORT(t)
sl@0
   136
/** NULL definition */
sl@0
   137
#define __TESTREPORT1(t,a)
sl@0
   138
/** NULL definition */
sl@0
   139
#define __TESTREPORT2(t,a,b)
sl@0
   140
/** NULL definition */
sl@0
   141
#define __TESTREPORT3(t,a,b,c)
sl@0
   142
/** NULL definition */
sl@0
   143
#define __TESTREPORT4(t,a,b,c,d)
sl@0
   144
/** NULL definition */
sl@0
   145
#define __TESTREPORT5(t,a,b,c,d,e)
sl@0
   146
#endif
sl@0
   147
sl@0
   148
#endif // DEBUG_H