1*1031c584SApple OSS Distributions #!/usr/sbin/dtrace -s 2*1031c584SApple OSS Distributions 3*1031c584SApple OSS Distributions vminfo:::vm_map_delete_permanent_deny* 4*1031c584SApple OSS Distributions { 5*1031c584SApple OSS Distributions printf("%d[%s]: denying mutation of permanent mapping [ 0x%llx - 0x%llx ] prot 0x%x/0x%x", 6*1031c584SApple OSS Distributions pid, 7*1031c584SApple OSS Distributions execname, 8*1031c584SApple OSS Distributions (uint64_t) arg1, 9*1031c584SApple OSS Distributions (uint64_t) arg2, 10*1031c584SApple OSS Distributions arg3, 11*1031c584SApple OSS Distributions arg4); 12*1031c584SApple OSS Distributions stack(); 13*1031c584SApple OSS Distributions ustack(); 14*1031c584SApple OSS Distributions } 15