Removed "Pd: 0" output that does the initial pagefault. Write to the
authorFlorian Pose <fp@igh-essen.com>
Thu, 12 May 2011 08:56:05 +0200
changeset 2062 9cc8f64726bb
parent 2061 7982704c8599
child 2063 06f3292f5b71
child 2065 4d8c9a441ef6
Removed "Pd: 0" output that does the initial pagefault. Write to the
memory instead, to get rid of the output.
lib/master.c
--- a/lib/master.c	Thu May 12 08:40:22 2011 +0200
+++ b/lib/master.c	Thu May 12 08:56:05 2011 +0200
@@ -455,7 +455,7 @@
         }
 
         // Access the mapped region to cause the initial page fault
-        printf("pd: %x\n", master->process_data[0]);
+        master->process_data[0] = 0x00;
     }
 
     return 0;