Home
last modified time | relevance | path

Searched refs:panicstart (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/sbin/savecore/
H A Dsavecore.c408 long panicloc, panicstart, panicend; in check_kmem() local
419 panicstart = panicend = 0; in check_kmem()
420 KREAD_LOGWARN(kd_dump, dump_nl[X_PANICSTART].n_value, panicstart, in check_kmem()
425 if (panicstart != 0 && panicend != 0) { in check_kmem()
449 while (panicstart != panicend && cp < &panic_mesg[sizeof(panic_mesg)-1]) { in check_kmem()
450 *cp++ = bufdata[panicstart]; in check_kmem()
451 panicstart++; in check_kmem()
452 if (panicstart >= msgbuf.msg_bufs) in check_kmem()
453 panicstart = 0; in check_kmem()
/netbsd-src/sys/kern/
H A Dsubr_prf.c109 long panicstart, panicend; /* position in the msgbuf of the start and variable
262 panicstart = msgbufp->msg_bufx; in vpanic()