os/kernelhwsrv/userlibandfileserver/fileserver/shostmassstorage/server/shared/msdebug.h
Update contrib.
1 // Copyright (c) 2008-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 the License "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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
26 // #define _MSFN_DEBUG_PRINT_
28 #if defined(_MSFN_DEBUG_PRINT_) && (defined(_DEBUG) || defined(_DEBUG_RELEASE))
29 #define MSFN_TRACE_ENABLED
32 #ifdef MSFN_TRACE_ENABLED
37 Logging function to be used with static functions. Prints the function string on
38 function entry and exit.
43 static const TInt KLogBufferSize = 0xFF;
45 TMsLogStaticFn(const TDesC8& aFunctionName);
50 TBuf8<KLogBufferSize> buf;
56 Logging function which prints the function string on function entry and exit.
61 static const TInt KLogBufferSize = 0xFF;
62 TMsLogFn(const TDesC8& aFunctionName, void* aThisPointer);
67 TBuf8<KLogBufferSize> buf;
74 #define __MSFNLOG TMsLogFn funcLog(TPtrC8((TUint8*)__PRETTY_FUNCTION__), this);
75 #define __MSFNSLOG TMsLogStaticFn funcLog(TPtrC8((TUint8*)__PRETTY_FUNCTION__));