| 606 | } |
| 607 | |
| 608 | int |
| 609 | db_trace_thread(struct thread *thr, int count) |
| 610 | { |
| 611 | struct pcb *ctx; |
| 612 | struct trapframe *tf; |
| 613 | |
| 614 | ctx = kdb_thr_ctx(thr); |
| 615 | tf = thr == kdb_thread ? kdb_frame : NULL; |
| 616 | return (db_backtrace(thr, tf, (struct i386_frame *)ctx->pcb_ebp, |
| 617 | ctx->pcb_eip, ctx->pcb_esp, count)); |
| 618 | } |
| 619 | |
| 620 | int |
| 621 | i386_set_watch(watchnum, watchaddr, size, access, d) |
nothing calls this directly
no test coverage detected