# HG changeset patch
# User Stefan Weiser <ch1010858@ch10pc475>
# Date 1273057157 -7200
# Node ID 6b353d9e04738565b2c9fa82823572dd570a011e
# Parent  02c8728bf9e48c7e036d3710c2e244fe2c7cd686
Master process data are initialized to zero.

diff -r 02c8728bf9e4 -r 6b353d9e0473 lib/master.c
--- a/lib/master.c	Mon May 03 10:21:23 2010 +0200
+++ b/lib/master.c	Wed May 05 12:59:17 2010 +0200
@@ -381,7 +381,7 @@
         }
 
         // Access the mapped region to cause the initial page fault
-        printf("pd: %x\n", master->process_data[0]);
+        memset(master->process_data, 0, master->process_data_size);
     }
 
     return 0;