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