]> git.llucax.com Git - software/dgc/cdgc.git/commitdiff
Add (disabled) debug print of overriden options
authorLeandro Lucarella <llucax@gmail.com>
Mon, 20 Sep 2010 23:22:36 +0000 (20:22 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Mon, 20 Sep 2010 23:33:52 +0000 (20:33 -0300)
rt/gc/cdgc/opts.d

index d2d93f10d8bde54db0868976cdd7e207a558f872..d757bc8d8f3164822e825183342c6ceb2a576126 100644 (file)
 
 module rt.gc.cdgc.opts;
 
+//debug = PRINTF;
+
 import cstdlib = tango.stdc.stdlib;
 import cstring = tango.stdc.string;
 import cerrno = tango.stdc.errno;
+debug (PRINTF) import tango.stdc.stdio: printf;
 
 
 private:
@@ -63,6 +66,22 @@ struct Options
 package Options options;
 
 
+debug (PRINTF)
+void print_options()
+{
+    int b(bool v) { return v; }
+    with (options)
+    printf("rt.gc.cdgc.opts: verbose=%u, log_file='%s', "
+            "malloc_stats_file='%s', collect_stats_file='%s', sentinel=%d, "
+            "mem_stomp=%d, conservative=%d, fork=%d, eager_alloc=%d, "
+            "early_collect=%d, min_free=%u, prealloc_psize=%lu, "
+            "prealloc_npools=%lu\n", verbose, log_file.ptr,
+            malloc_stats_file.ptr, collect_stats_file.ptr, b(sentinel),
+            b(mem_stomp), b(conservative), b(fork), b(eager_alloc),
+            b(early_collect), min_free, prealloc_psize, prealloc_npools);
+}
+
+
 bool cstr_eq(char* s1, char* s2)
 {
     return cstring.strcmp(s1, s2) == 0;
@@ -147,8 +166,10 @@ package void parse(char* opts_string)
     opt_value[0] = '\0';
     char* curr = opt_name.ptr;
     size_t i = 0;
-    if (opts_string is null)
+    if (opts_string is null) {
+        debug (PRINTF) printf("rt.gc.cdgc.opts: no options overriden\n");
         return;
+    }
     for (; *opts_string != '\0'; opts_string++)
     {
         char c = *opts_string;
@@ -183,6 +204,7 @@ package void parse(char* opts_string)
         i--;
     curr[i] = '\0';
     process_option(opt_name.ptr, opt_value.ptr);
+    debug (PRINTF) print_options();
 }