Searched refs:my_test_page_p (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/tools/tests/xnu_quick_test/
H A Dmemory_tests.c108 char * my_test_page_p = NULL; local
134 my_kr = vm_allocate((vm_map_t) mach_task_self(), (vm_address_t*)&my_test_page_p, my_page_size, VM_FLAGS_ANYWHERE);
140 *my_test_page_p = 0x00;
141 strcat( my_test_page_p, "parent data" );
146 my_err = minherit( my_test_page_p, my_page_size, VM_INHERIT_SHARE );
176 strcat( my_test_page_p, " child data" );
431 if ( strcmp( my_test_page_p, "parent data child data" ) != 0 ) {
446 if ( my_test_page_p != NULL ) {
447 vm_deallocate(mach_task_self(), (vm_address_t)my_test_page_p, my_page_size);

Completed in 18 milliseconds