1*fdd8201dSApple OSS Distributions #!/usr/sbin/dtrace -s 2*fdd8201dSApple OSS Distributions 3*fdd8201dSApple OSS Distributions vminfo::vm_map_delete_permanent: 4*fdd8201dSApple OSS Distributions { 5*fdd8201dSApple OSS Distributions printf("%d[%s]: attempt to delete permanent mapping (0x%llx, 0x%llx) prot 0x%x/0x%x", 6*fdd8201dSApple OSS Distributions $pid, 7*fdd8201dSApple OSS Distributions execname, 8*fdd8201dSApple OSS Distributions (uint64_t) arg0, 9*fdd8201dSApple OSS Distributions (uint64_t) arg1, 10*fdd8201dSApple OSS Distributions arg2, 11*fdd8201dSApple OSS Distributions arg3); 12*fdd8201dSApple OSS Distributions stack(); 13*fdd8201dSApple OSS Distributions ustack(); 14*fdd8201dSApple OSS Distributions } 15