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