1*1031c584SApple OSS Distributions #!/usr/sbin/dtrace -s 2*1031c584SApple OSS Distributions 3*1031c584SApple OSS Distributions vminfo::log_unnest_badness: 4*1031c584SApple OSS Distributions { 5*1031c584SApple OSS Distributions printf("%d[%s]: unexpected unnest(0x%llx, 0x%llx) below 0x%llx", 6*1031c584SApple OSS Distributions pid, 7*1031c584SApple OSS Distributions execname, 8*1031c584SApple OSS Distributions (uint64_t) arg1, 9*1031c584SApple OSS Distributions (uint64_t) arg2, 10*1031c584SApple OSS Distributions (uint64_t) arg3); 11*1031c584SApple OSS Distributions stack(); 12*1031c584SApple OSS Distributions ustack(); 13*1031c584SApple OSS Distributions } 14