lib/master.c
changeset 1985 6b353d9e0473
parent 1983 df270de292e1
child 1995 7d748d9cf9e8
equal deleted inserted replaced
1984:02c8728bf9e4 1985:6b353d9e0473
   379             master->process_data_size = 0;
   379             master->process_data_size = 0;
   380             return -1; // FIXME
   380             return -1; // FIXME
   381         }
   381         }
   382 
   382 
   383         // Access the mapped region to cause the initial page fault
   383         // Access the mapped region to cause the initial page fault
   384         printf("pd: %x\n", master->process_data[0]);
   384         memset(master->process_data, 0, master->process_data_size);
   385     }
   385     }
   386 
   386 
   387     return 0;
   387     return 0;
   388 }
   388 }
   389 
   389