From 5b1f411f575bbfcc0bc7e63b2598c32bbe99716c Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Mon, 17 Nov 2014 10:58:03 +0100 Subject: [PATCH] UserlandFS: 64-bit fix. --- headers/private/userlandfs/shared/Debug.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/headers/private/userlandfs/shared/Debug.h b/headers/private/userlandfs/shared/Debug.h index 9b7460b17b5..547d628ded1 100644 --- a/headers/private/userlandfs/shared/Debug.h +++ b/headers/private/userlandfs/shared/Debug.h @@ -91,9 +91,14 @@ void dbg_printf_end(); #endif #define DEBUG_THREAD find_thread(NULL) -#define DEBUG_CONTEXT(x) { dbg_printf_begin(); __out(DEBUG_APP " [%Ld: %5ld] ", system_time(), DEBUG_THREAD); x; dbg_printf_end(); } -#define DEBUG_CONTEXT_FUNCTION(prefix, x) { dbg_printf_begin(); __out(DEBUG_APP " [%Ld: %5ld] %s()" prefix, system_time(), DEBUG_THREAD, __FUNCTION__); x; dbg_printf_end(); } -#define DEBUG_CONTEXT_LINE(x) { dbg_printf_begin(); __out(DEBUG_APP " [%Ld: %5ld] %s():%d: ", system_time(), DEBUG_THREAD, __FUNCTION__, __LINE__); x; dbg_printf_end(); } +#define DEBUG_CONTEXT(x) { dbg_printf_begin(); __out(DEBUG_APP " [%" \ + B_PRIdBIGTIME ": %5ld] ", system_time(), DEBUG_THREAD); x; dbg_printf_end(); } +#define DEBUG_CONTEXT_FUNCTION(prefix, x) { dbg_printf_begin(); \ + __out(DEBUG_APP " [%" B_PRIdBIGTIME ": %5ld] %s()" prefix, system_time(), \ + DEBUG_THREAD, __FUNCTION__); x; dbg_printf_end(); } +#define DEBUG_CONTEXT_LINE(x) { dbg_printf_begin(); __out(DEBUG_APP " [%" \ + B_PRIdBIGTIME ": %5ld] %s():%d: ", system_time(), DEBUG_THREAD, \ + __FUNCTION__, __LINE__); x; dbg_printf_end(); } #define TPRINT(x) DEBUG_CONTEXT( __out x ) #define TREPORT_ERROR(status) DEBUG_CONTEXT_LINE( __out("%s\n", strerror(status)) )