]> rtime.felk.cvut.cz Git - frescor/frsh-include.git/commitdiff
flag for distributed trace
authorsangorrin <sangorrin@35b4ef3e-fd22-0410-ab77-dab3279adceb>
Thu, 9 Aug 2007 11:51:52 +0000 (11:51 +0000)
committersangorrin <sangorrin@35b4ef3e-fd22-0410-ab77-dab3279adceb>
Thu, 9 Aug 2007 11:51:52 +0000 (11:51 +0000)
git-svn-id: http://www.frescor.org/private/svn/frescor/frsh/trunk/include@646 35b4ef3e-fd22-0410-ab77-dab3279adceb

frsh_debug.h

index 4e6e110f755d7af2e9b1218452b5d554317b6735..8de63720c1607a4ef27873ec01dc766e5093b7d9 100644 (file)
@@ -91,6 +91,8 @@
 #define FRSH_TRACE_THREAD_INDEX false
 #define FRSH_TRACE_VRES_INDEX false
 
+#define FRSH_TRACE_DISTRIBUTED false
+
 #define FRSH_TRACE_TS_MSECS
 
 /* These variables live defined in frsh_error.c */
 extern struct timespec frsh_trace_init_timespec;
 extern long frsh_trace_init_timemsec;
 
-
 static inline long int FRSH_GET_TIMESTAMP_MSECS()
 {
     int terror = -1;
@@ -114,7 +115,6 @@ static inline long int FRSH_GET_TIMESTAMP_MSECS()
     return result;
 }
 
-
 static void inline FRSH_TRACE(bool is_active, const char *format, ...)
 {
     va_list args;
@@ -135,6 +135,4 @@ static void inline FRSH_TRACE(bool is_active, const char *format, ...)
     }
 }
 
-
-
 #endif