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