Remove unused g_info definitions
authorBenjamin Poirier <benjamin.poirier@polymtl.ca>
Wed, 25 Nov 2009 20:06:03 +0000 (15:06 -0500)
committerBenjamin Poirier <benjamin.poirier@polymtl.ca>
Fri, 18 Dec 2009 19:04:17 +0000 (14:04 -0500)
Signed-off-by: Benjamin Poirier <benjamin.poirier@polymtl.ca>
lttv/lttv/sync/data_structures.c
lttv/lttv/sync/event_analysis_chull.c
lttv/lttv/sync/event_analysis_linreg.c
lttv/lttv/sync/event_matching_broadcast.c
lttv/lttv/sync/event_matching_tcp.c
lttv/lttv/sync/event_processing_lttng_common.c
lttv/lttv/sync/event_processing_lttng_null.c
lttv/lttv/sync/event_processing_lttng_standard.c
lttv/lttv/sync/sync_chain_lttv.c
lttv/lttv/sync/unittest.c

index 5983eaf6d0e36a64d9a73d067629828d66c54460..6bdf0b257a697aea73b2b9536d4e09df895f91ad 100644 (file)
 #include "data_structures.h"
 
 
-#ifndef g_info
-#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
-#endif
-
 // TCP sequence numbers use clock arithmetic, these comparison functions take
 // that into account
 #define SEQ_LT(a,b)     ((int32_t)((a)-(b)) < 0)
index 4dd073731ebc9180f5ab7ab9e9e0ba35370c205a..c080235ce009e1713900a6f9bc7541fab306c987 100644 (file)
 #include "event_analysis_chull.h"
 
 
-#ifndef g_info
-#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
-#endif
-
-
 typedef enum
 {
        LOWER,
index 764a635fa5e536f127a015adb51d6d13d163662d..2ceecf3e13eed80a850664e92b06f92ed0d49827 100644 (file)
 #include "event_analysis_linreg.h"
 
 
-#ifndef g_info
-#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
-#endif
-
-
 // Functions common to all analysis modules
 static void initAnalysisLinReg(SyncState* const syncState);
 static void destroyAnalysisLinReg(SyncState* const syncState);
index 442588341237124371195e5b376cbad6a4533e6d..ff45a8a71b7729848a6ef61d2918629211063482 100644 (file)
 #include "event_matching_broadcast.h"
 
 
-#ifndef g_info
-#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
-#endif
-
-
 // Functions common to all matching modules
 static void initMatchingBroadcast(SyncState* const syncState);
 static void destroyMatchingBroadcast(SyncState* const syncState);
index 45255e32516b8c15ab14b98631541cc95b595142..e9cdce925bf66630bd17db015b52e8a2b4dd0a40 100644 (file)
 #include "event_matching_tcp.h"
 
 
-#ifndef g_info
-#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
-#endif
-
-
 // Functions common to all matching modules
 static void initMatchingTCP(SyncState* const syncState);
 static void destroyMatchingTCP(SyncState* const syncState);
index f25e0b61d4bb18b06d4e05cd78375374d353b72d..c3957eb2211d2c6109785c9e6269b751e935cdb9 100644 (file)
 #include "event_processing_lttng_common.h"
 
 
-#ifndef g_info
-#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
-#endif
-
-
 /*
  * Initialize the GQuarks needed to register the event hooks for
  * synchronization
index 1320753eb729d9174089e0d0d27cc7dc7947d512..580185fb7ce2af36be72a6adb16ad84c56691415 100644 (file)
 #include "event_processing_lttng_null.h"
 
 
-#ifndef g_info
-#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
-#endif
-
-
 // Functions common to all processing modules
 static void initProcessingLTTVNull(SyncState* const syncState,
        LttvTracesetContext* const traceSetContext);
index 733c4081489700810a07311be56fa3309ee302f9..b5ec8d419ca4bd14257bc7842446c9e12bf65ec1 100644 (file)
 #include "event_processing_lttng_standard.h"
 
 
-#ifndef g_info
-#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
-#endif
-
-
 // Functions common to all processing modules
 static void initProcessingLTTVStandard(SyncState* const syncState,
        LttvTracesetContext* const traceSetContext);
index 43963798e5df60585c64f5880b406e2a333bdb3c..fbbf7dfed4f59ba8a3518151a66b00a993217f56 100644 (file)
 #include "sync_chain.h"
 
 
-#ifndef g_info
-#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
-#endif
-
-
 static void init();
 static void destroy();
 
index d35a59a23faa246d91952edbf0985b059c591fb0..9b99d32b63733e91b1a9da50a7fc2bbf7541b3d3 100644 (file)
 #include "sync_chain.h"
 
 
-#ifndef g_info
-#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
-#endif
-
-
 static void timeDiff(struct timeval* const end, const struct timeval* const start);
 static void usage(const char* const programName);
 static gint gcfCompareAnalysis(gconstpointer a, gconstpointer b);
This page took 0.027202 seconds and 4 git commands to generate.