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