diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2000-07-06 22:08:07 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-07-06 22:08:07 +0000 |
| commit | 7d9490d9dff399b936767bb0df8b820f9820756f (patch) | |
| tree | b813262962e3920522ac52998b20040cbae8a220 /gnu/usr.bin/binutils | |
| parent | ee8762a7254c572971ff51d2de69ee3b2e320ff7 (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/binutils')
| -rw-r--r-- | gnu/usr.bin/binutils/gdb/alpha/tm.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/usr.bin/binutils/gdb/alpha/tm.h b/gnu/usr.bin/binutils/gdb/alpha/tm.h index 5d486640940c..596a0ef0276b 100644 --- a/gnu/usr.bin/binutils/gdb/alpha/tm.h +++ b/gnu/usr.bin/binutils/gdb/alpha/tm.h @@ -1,3 +1,4 @@ +/* $FreeBSD$ */ /* Definitions to make GDB run on an Alpha box under FreeBSD. The definitions here are used when the _target_ system is running Linux. Copyright 1996 Free Software Foundation, Inc. @@ -34,4 +35,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #undef START_INFERIOR_TRAPS_EXPECTED #define START_INFERIOR_TRAPS_EXPECTED 2 +struct objfile; +void freebsd_uthread_new_objfile PARAMS ((struct objfile *objfile)); +#define target_new_objfile(OBJFILE) freebsd_uthread_new_objfile (OBJFILE) + +extern char *freebsd_uthread_pid_to_str PARAMS ((int pid)); +#define target_pid_to_str(PID) freebsd_uthread_pid_to_str (PID) + #endif /* TM_FREEBSDALPHA_H */ |
