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