diff options
author | scottl <scottl@FreeBSD.org> | 2004-07-18 15:24:37 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2004-07-18 15:24:37 +0000 |
commit | cf328c10576453a3e63ec1ff22f92f1b352db615 (patch) | |
tree | 41f7879276637d5c8140bd1f2d36258e670593a7 /lib | |
parent | 5e3b195590286bf168c6af084ba8d48e265f89ca (diff) | |
download | FreeBSD-src-cf328c10576453a3e63ec1ff22f92f1b352db615.zip FreeBSD-src-cf328c10576453a3e63ec1ff22f92f1b352db615.tar.gz |
Try to fix ia64 and alpha compiles. I don't have either equipment fired
up now, but it appears to be the same problem and solution as sparc64.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libthread_db/arch/alpha/libpthread_md.c | 7 | ||||
-rw-r--r-- | lib/libthread_db/arch/ia64/libpthread_md.c | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/lib/libthread_db/arch/alpha/libpthread_md.c b/lib/libthread_db/arch/alpha/libpthread_md.c index 4959387..6d15c91 100644 --- a/lib/libthread_db/arch/alpha/libpthread_md.c +++ b/lib/libthread_db/arch/alpha/libpthread_md.c @@ -27,6 +27,13 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include <string.h> +#include <sys/types.h> +#include <proc_service.h> +#include <thread_db.h> + +#include "libpthread_db.h" + void pt_reg_to_ucontext(const struct reg *r, ucontext_t *uc) { diff --git a/lib/libthread_db/arch/ia64/libpthread_md.c b/lib/libthread_db/arch/ia64/libpthread_md.c index 4959387..6d15c91 100644 --- a/lib/libthread_db/arch/ia64/libpthread_md.c +++ b/lib/libthread_db/arch/ia64/libpthread_md.c @@ -27,6 +27,13 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include <string.h> +#include <sys/types.h> +#include <proc_service.h> +#include <thread_db.h> + +#include "libpthread_db.h" + void pt_reg_to_ucontext(const struct reg *r, ucontext_t *uc) { |