1*2c2f96dcSApple OSS Distributions #!/usr/sbin/dtrace -s 2*2c2f96dcSApple OSS Distributions 3*2c2f96dcSApple OSS Distributions vminfo::log_unnest_badness: 4*2c2f96dcSApple OSS Distributions { 5*2c2f96dcSApple OSS Distributions printf("%d[%s]: unexpected unnest(0x%llx, 0x%llx) below 0x%llx", 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 (uint64_t) arg3); 11*2c2f96dcSApple OSS Distributions stack(); 12*2c2f96dcSApple OSS Distributions ustack(); 13*2c2f96dcSApple OSS Distributions } 14