1*5c2921b0SApple OSS Distributions #!/usr/sbin/dtrace -s 2*5c2921b0SApple OSS Distributions 3*5c2921b0SApple OSS Distributions vminfo::suspicious_task_vm_info_count: 4*5c2921b0SApple OSS Distributions { 5*5c2921b0SApple OSS Distributions printf("%d[%s]: task_info() called with count=%d > TASK_VM_INFO_COUNT=%d", 6*5c2921b0SApple OSS Distributions pid, 7*5c2921b0SApple OSS Distributions execname, 8*5c2921b0SApple OSS Distributions arg1, 9*5c2921b0SApple OSS Distributions arg2); 10*5c2921b0SApple OSS Distributions stack(); 11*5c2921b0SApple OSS Distributions ustack(); 12*5c2921b0SApple OSS Distributions } 13