changeset 1988 | ea38efeeb7b3 |
parent 1985 | 6b353d9e0473 |
child 1995 | 7d748d9cf9e8 |
1987:f452c93f7723 | 1988:ea38efeeb7b3 |
---|---|
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 |