lib/master.c
changeset 2062 9cc8f64726bb
parent 2009 b5391b329b5d
child 2066 b544025bd696
child 2124 c4afc5fede19
equal deleted inserted replaced
2061:7982704c8599 2062:9cc8f64726bb
   453             master->process_data_size = 0;
   453             master->process_data_size = 0;
   454             return -1; // FIXME
   454             return -1; // FIXME
   455         }
   455         }
   456 
   456 
   457         // Access the mapped region to cause the initial page fault
   457         // Access the mapped region to cause the initial page fault
   458         printf("pd: %x\n", master->process_data[0]);
   458         master->process_data[0] = 0x00;
   459     }
   459     }
   460 
   460 
   461     return 0;
   461     return 0;
   462 }
   462 }
   463 
   463