Date: Sat, 23 Mar 2002 08:59:57 -0800 (PST) From: Jake Burkholder <jake@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 8270 for review Message-ID: <200203231659.g2NGxvm84872@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=8270 Change 8270 by jake@jake_sparc64 on 2002/03/23 08:59:02 utrace -> db_utrace. Affected files ... ... //depot/projects/sparc64/sys/sparc64/sparc64/db_trace.c#25 edit Differences ... ==== //depot/projects/sparc64/sys/sparc64/sparc64/db_trace.c#25 (text+ko) ==== @@ -48,7 +48,7 @@ #include <ddb/db_watch.h> static int db_print_trap(struct thread *td, struct trapframe *); -static void utrace(struct thread *td, struct trapframe *tf); +static void db_utrace(struct thread *td, struct trapframe *tf); #define INKERNEL(va) \ ((va) >= VM_MIN_KERNEL_ADDRESS && (va) <= VM_MAX_KERNEL_ADDRESS) @@ -260,7 +260,7 @@ db_printf("userland() at "); db_printsym(tpc, DB_STGY_PROC); db_printf("\n"); - utrace(td, tf); + db_utrace(td, tf); } return (user); } @@ -269,7 +269,7 @@ * User stack trace (debugging aid). */ static void -utrace(struct thread *td, struct trapframe *tf) +db_utrace(struct thread *td, struct trapframe *tf) { struct pcb *pcb; db_addr_t sp, rsp, o7, pc; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203231659.g2NGxvm84872>