- char buf[128];
- void *bt[9] = {};
- const unsigned cnt = sizeof(bt) / sizeof(bt[0]);
- va_list listp;
-
- // Ignore the our and our callers stackframes, skipping frames 0 & 1
- (void) OSBacktrace(bt, cnt);
-
- va_start(listp, str);
- vsnprintf(buf, sizeof(buf), str, listp);
- va_end(listp);
-
- lck_mtx_lock(sOSReportLock);
- {
- boolean_t old_doprnt_hide_pointers = doprnt_hide_pointers;
- doprnt_hide_pointers = FALSE;
- printf("%s\nBacktrace 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n", buf,
- (unsigned long) VM_KERNEL_UNSLIDE(bt[2]), (unsigned long) VM_KERNEL_UNSLIDE(bt[3]),
- (unsigned long) VM_KERNEL_UNSLIDE(bt[4]), (unsigned long) VM_KERNEL_UNSLIDE(bt[5]),
- (unsigned long) VM_KERNEL_UNSLIDE(bt[6]), (unsigned long) VM_KERNEL_UNSLIDE(bt[7]),
- (unsigned long) VM_KERNEL_UNSLIDE(bt[8]));
- kmod_dump_log((vm_offset_t *) &bt[2], cnt - 2, TRUE);
- doprnt_hide_pointers = old_doprnt_hide_pointers;
- }
- lck_mtx_unlock(sOSReportLock);
+ char buf[128];
+ void *bt[9] = {};
+ const unsigned cnt = sizeof(bt) / sizeof(bt[0]);
+ va_list listp;
+
+ // Ignore the our and our callers stackframes, skipping frames 0 & 1
+ (void) OSBacktrace(bt, cnt);
+
+ va_start(listp, str);
+ vsnprintf(buf, sizeof(buf), str, listp);
+ va_end(listp);
+
+ lck_mtx_lock(sOSReportLock);
+ {
+ boolean_t old_doprnt_hide_pointers = doprnt_hide_pointers;
+ doprnt_hide_pointers = FALSE;
+ printf("%s\nBacktrace 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n", buf,
+ (unsigned long) VM_KERNEL_UNSLIDE(bt[2]), (unsigned long) VM_KERNEL_UNSLIDE(bt[3]),
+ (unsigned long) VM_KERNEL_UNSLIDE(bt[4]), (unsigned long) VM_KERNEL_UNSLIDE(bt[5]),
+ (unsigned long) VM_KERNEL_UNSLIDE(bt[6]), (unsigned long) VM_KERNEL_UNSLIDE(bt[7]),
+ (unsigned long) VM_KERNEL_UNSLIDE(bt[8]));
+ kmod_dump_log((vm_offset_t *) &bt[2], cnt - 2, TRUE);
+ doprnt_hide_pointers = old_doprnt_hide_pointers;
+ }
+ lck_mtx_unlock(sOSReportLock);