pmap.c | 682 int prot, cur_prot, diff; local in function:pmap_fault 723 cur_prot = VM_PROT_NONE; 725 cur_prot |= VM_PROT_READ; 727 cur_prot |= VM_PROT_WRITE; 729 cur_prot |= VM_PROT_EXECUTE; 731 diff = prot & (prot ^ cur_prot); 733 thunk_printf_debug("%s: prot = %d, cur_prot = %d, diff = %d\n", 734 __func__, prot, cur_prot, diff);
|