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