From 5136ce492c414f377f7be9ae32b259abb9f76580 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 16 Jul 2010 11:02:49 -0700 Subject: vlog: Introduce VLOG_DEFINE_THIS_MODULE for declaring vlog module in use. Adding a macro to define the vlog module in use adds a level of indirection, which makes it easier to change how the vlog module must be defined. A followup commit needs to do that, so getting these widespread changes out of the way first should make that commit easier to review. --- lib/coverage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/coverage.c') diff --git a/lib/coverage.c b/lib/coverage.c index 5c99c18ad..6e65810e8 100644 --- a/lib/coverage.c +++ b/lib/coverage.c @@ -23,10 +23,10 @@ #include "hash.h" #include "unixctl.h" #include "util.h" - -#define THIS_MODULE VLM_coverage #include "vlog.h" +VLOG_DEFINE_THIS_MODULE(coverage) + static unsigned int epoch; static void -- cgit v1.2.1