# HG changeset patch # User Florian Pose # Date 1305183365 -7200 # Node ID 9cc8f64726bb2f4bd5718f56df89a9a4f7aa0a7b # Parent 7982704c8599036583f6059571d05dc72b20b43d Removed "Pd: 0" output that does the initial pagefault. Write to the memory instead, to get rid of the output. diff -r 7982704c8599 -r 9cc8f64726bb 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;