diff options
author | davidxu <davidxu@FreeBSD.org> | 2004-08-16 14:07:38 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2004-08-16 14:07:38 +0000 |
commit | 776807c108140db246983939942ef04900ed7d84 (patch) | |
tree | f67792f51cec621cc3be4d1ac6e9606c1d871c6e /lib | |
parent | 72d28440876214ee83c2d4c77d20ec99d31be27a (diff) | |
download | FreeBSD-src-776807c108140db246983939942ef04900ed7d84.zip FreeBSD-src-776807c108140db246983939942ef04900ed7d84.tar.gz |
Fix compile, s/tp_dtv/tp_tdv/g.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libkse/arch/arm/include/pthread_md.h | 2 | ||||
-rw-r--r-- | lib/libkse/arch/ia64/include/pthread_md.h | 2 | ||||
-rw-r--r-- | lib/libkse/arch/sparc64/include/pthread_md.h | 2 | ||||
-rw-r--r-- | lib/libpthread/arch/alpha/include/pthread_md.h | 2 | ||||
-rw-r--r-- | lib/libpthread/arch/arm/include/pthread_md.h | 2 | ||||
-rw-r--r-- | lib/libpthread/arch/ia64/include/pthread_md.h | 2 | ||||
-rw-r--r-- | lib/libpthread/arch/sparc64/include/pthread_md.h | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/lib/libkse/arch/arm/include/pthread_md.h b/lib/libkse/arch/arm/include/pthread_md.h index e9d2b6f..ac0db53 100644 --- a/lib/libkse/arch/arm/include/pthread_md.h +++ b/lib/libkse/arch/arm/include/pthread_md.h @@ -38,7 +38,7 @@ #include <ucontext.h> #define KSE_STACKSIZE 16384 -#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv) +#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_tdv) int _thr_setcontext(mcontext_t *, intptr_t, intptr_t *); int _thr_getcontext(mcontext_t *); diff --git a/lib/libkse/arch/ia64/include/pthread_md.h b/lib/libkse/arch/ia64/include/pthread_md.h index 220077a..1df5046 100644 --- a/lib/libkse/arch/ia64/include/pthread_md.h +++ b/lib/libkse/arch/ia64/include/pthread_md.h @@ -34,7 +34,7 @@ #include <ucontext.h> #define KSE_STACKSIZE 16384 -#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv) +#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_tdv) #define THR_GETCONTEXT(ucp) _ia64_save_context(&(ucp)->uc_mcontext) #define THR_SETCONTEXT(ucp) PANIC("THR_SETCONTEXT() now in use!\n") diff --git a/lib/libkse/arch/sparc64/include/pthread_md.h b/lib/libkse/arch/sparc64/include/pthread_md.h index 1abbe65..fac62c2 100644 --- a/lib/libkse/arch/sparc64/include/pthread_md.h +++ b/lib/libkse/arch/sparc64/include/pthread_md.h @@ -38,7 +38,7 @@ #include <ucontext.h> #define KSE_STACKSIZE 16384 -#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv) +#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_tdv) int _thr_setcontext(mcontext_t *, intptr_t, intptr_t *); int _thr_getcontext(mcontext_t *); diff --git a/lib/libpthread/arch/alpha/include/pthread_md.h b/lib/libpthread/arch/alpha/include/pthread_md.h index 908bcfd..c7a85f1 100644 --- a/lib/libpthread/arch/alpha/include/pthread_md.h +++ b/lib/libpthread/arch/alpha/include/pthread_md.h @@ -34,7 +34,7 @@ #include <ucontext.h> #define KSE_STACKSIZE 16384 -#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv) +#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_tdv) #define THR_GETCONTEXT(ucp) _alpha_save_context(&(ucp)->uc_mcontext) #define THR_SETCONTEXT(ucp) PANIC("THR_SETCONTEXT() now in use!\n") diff --git a/lib/libpthread/arch/arm/include/pthread_md.h b/lib/libpthread/arch/arm/include/pthread_md.h index e9d2b6f..ac0db53 100644 --- a/lib/libpthread/arch/arm/include/pthread_md.h +++ b/lib/libpthread/arch/arm/include/pthread_md.h @@ -38,7 +38,7 @@ #include <ucontext.h> #define KSE_STACKSIZE 16384 -#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv) +#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_tdv) int _thr_setcontext(mcontext_t *, intptr_t, intptr_t *); int _thr_getcontext(mcontext_t *); diff --git a/lib/libpthread/arch/ia64/include/pthread_md.h b/lib/libpthread/arch/ia64/include/pthread_md.h index 220077a..1df5046 100644 --- a/lib/libpthread/arch/ia64/include/pthread_md.h +++ b/lib/libpthread/arch/ia64/include/pthread_md.h @@ -34,7 +34,7 @@ #include <ucontext.h> #define KSE_STACKSIZE 16384 -#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv) +#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_tdv) #define THR_GETCONTEXT(ucp) _ia64_save_context(&(ucp)->uc_mcontext) #define THR_SETCONTEXT(ucp) PANIC("THR_SETCONTEXT() now in use!\n") diff --git a/lib/libpthread/arch/sparc64/include/pthread_md.h b/lib/libpthread/arch/sparc64/include/pthread_md.h index 1abbe65..fac62c2 100644 --- a/lib/libpthread/arch/sparc64/include/pthread_md.h +++ b/lib/libpthread/arch/sparc64/include/pthread_md.h @@ -38,7 +38,7 @@ #include <ucontext.h> #define KSE_STACKSIZE 16384 -#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv) +#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_tdv) int _thr_setcontext(mcontext_t *, intptr_t, intptr_t *); int _thr_getcontext(mcontext_t *); |