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