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