1. Add macro DTV_OFFSET to calculate dtv offset in tcb.
2. Export symbols needed by debugger.
This commit is contained in:
parent
497c17e0ae
commit
a002d437ea
@ -19,6 +19,7 @@ CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
|
||||
CFLAGS+=-I${.CURDIR}/arch/${MACHINE_ARCH}/include
|
||||
CFLAGS+=-I${.CURDIR}/sys
|
||||
CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf
|
||||
CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf/${MACHINE_ARCH}
|
||||
CFLAGS+=-fno-builtin
|
||||
|
||||
# Uncomment this if you want libpthread to contain debug information for
|
||||
|
@ -32,12 +32,14 @@
|
||||
#ifndef _PTHREAD_MD_H_
|
||||
#define _PTHREAD_MD_H_
|
||||
|
||||
#include <stddef.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/kse.h>
|
||||
#include <machine/sysarch.h>
|
||||
#include <ucontext.h>
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb_dtv)
|
||||
|
||||
#define THR_GETCONTEXT(ucp) \
|
||||
(void)_amd64_save_context(&(ucp)->uc_mcontext)
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include <ucontext.h>
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv)
|
||||
|
||||
int _thr_setcontext(mcontext_t *, intptr_t, intptr_t *);
|
||||
int _thr_getcontext(mcontext_t *);
|
||||
|
@ -31,6 +31,7 @@
|
||||
#ifndef _PTHREAD_MD_H_
|
||||
#define _PTHREAD_MD_H_
|
||||
|
||||
#include <stddef.h>
|
||||
#include <sys/kse.h>
|
||||
#include <ucontext.h>
|
||||
|
||||
@ -38,6 +39,7 @@ extern int _thr_setcontext(mcontext_t *, intptr_t, intptr_t *);
|
||||
extern int _thr_getcontext(mcontext_t *);
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb_dtv)
|
||||
|
||||
#define THR_GETCONTEXT(ucp) _thr_getcontext(&(ucp)->uc_mcontext)
|
||||
#define THR_SETCONTEXT(ucp) _thr_setcontext(&(ucp)->uc_mcontext, 0, NULL)
|
||||
|
@ -34,6 +34,7 @@
|
||||
#include <ucontext.h>
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv)
|
||||
|
||||
#define THR_GETCONTEXT(ucp) _ia64_save_context(&(ucp)->uc_mcontext)
|
||||
#define THR_SETCONTEXT(ucp) PANIC("THR_SETCONTEXT() now in use!\n")
|
||||
|
@ -42,6 +42,7 @@ extern int _ppc32_setcontext(mcontext_t *, intptr_t, intptr_t *);
|
||||
extern int _ppc32_getcontext(mcontext_t *);
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb.tcb_tp.tp_dtv)
|
||||
|
||||
#define THR_GETCONTEXT(ucp) _ppc32_getcontext(&(ucp)->uc_mcontext)
|
||||
#define THR_SETCONTEXT(ucp) _ppc32_setcontext(&(ucp)->uc_mcontext, 0, NULL)
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include <ucontext.h>
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv)
|
||||
|
||||
int _thr_setcontext(mcontext_t *, intptr_t, intptr_t *);
|
||||
int _thr_getcontext(mcontext_t *);
|
||||
|
@ -103,6 +103,7 @@ SRCS+= \
|
||||
thr_suspend_np.c \
|
||||
thr_switch_np.c \
|
||||
thr_system.c \
|
||||
thr_symbols.c \
|
||||
thr_tcdrain.c \
|
||||
thr_vfork.c \
|
||||
thr_wait.c \
|
||||
|
@ -19,6 +19,7 @@ CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
|
||||
CFLAGS+=-I${.CURDIR}/arch/${MACHINE_ARCH}/include
|
||||
CFLAGS+=-I${.CURDIR}/sys
|
||||
CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf
|
||||
CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf/${MACHINE_ARCH}
|
||||
CFLAGS+=-fno-builtin
|
||||
|
||||
# Uncomment this if you want libpthread to contain debug information for
|
||||
|
@ -34,6 +34,7 @@
|
||||
#include <ucontext.h>
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv)
|
||||
|
||||
#define THR_GETCONTEXT(ucp) _alpha_save_context(&(ucp)->uc_mcontext)
|
||||
#define THR_SETCONTEXT(ucp) PANIC("THR_SETCONTEXT() now in use!\n")
|
||||
|
@ -32,12 +32,14 @@
|
||||
#ifndef _PTHREAD_MD_H_
|
||||
#define _PTHREAD_MD_H_
|
||||
|
||||
#include <stddef.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/kse.h>
|
||||
#include <machine/sysarch.h>
|
||||
#include <ucontext.h>
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb_dtv)
|
||||
|
||||
#define THR_GETCONTEXT(ucp) \
|
||||
(void)_amd64_save_context(&(ucp)->uc_mcontext)
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include <ucontext.h>
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv)
|
||||
|
||||
int _thr_setcontext(mcontext_t *, intptr_t, intptr_t *);
|
||||
int _thr_getcontext(mcontext_t *);
|
||||
|
@ -31,6 +31,7 @@
|
||||
#ifndef _PTHREAD_MD_H_
|
||||
#define _PTHREAD_MD_H_
|
||||
|
||||
#include <stddef.h>
|
||||
#include <sys/kse.h>
|
||||
#include <ucontext.h>
|
||||
|
||||
@ -38,6 +39,7 @@ extern int _thr_setcontext(mcontext_t *, intptr_t, intptr_t *);
|
||||
extern int _thr_getcontext(mcontext_t *);
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb_dtv)
|
||||
|
||||
#define THR_GETCONTEXT(ucp) _thr_getcontext(&(ucp)->uc_mcontext)
|
||||
#define THR_SETCONTEXT(ucp) _thr_setcontext(&(ucp)->uc_mcontext, 0, NULL)
|
||||
|
@ -34,6 +34,7 @@
|
||||
#include <ucontext.h>
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv)
|
||||
|
||||
#define THR_GETCONTEXT(ucp) _ia64_save_context(&(ucp)->uc_mcontext)
|
||||
#define THR_SETCONTEXT(ucp) PANIC("THR_SETCONTEXT() now in use!\n")
|
||||
|
@ -42,6 +42,7 @@ extern int _ppc32_setcontext(mcontext_t *, intptr_t, intptr_t *);
|
||||
extern int _ppc32_getcontext(mcontext_t *);
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb.tcb_tp.tp_dtv)
|
||||
|
||||
#define THR_GETCONTEXT(ucp) _ppc32_getcontext(&(ucp)->uc_mcontext)
|
||||
#define THR_SETCONTEXT(ucp) _ppc32_setcontext(&(ucp)->uc_mcontext, 0, NULL)
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include <ucontext.h>
|
||||
|
||||
#define KSE_STACKSIZE 16384
|
||||
#define DTV_OFFSET offsetof(struct tcb, tcb_tp.tp_dtv)
|
||||
|
||||
int _thr_setcontext(mcontext_t *, intptr_t, intptr_t *);
|
||||
int _thr_getcontext(mcontext_t *);
|
||||
|
@ -331,10 +331,26 @@ global:
|
||||
# Debugger needs these.
|
||||
_libkse_debug;
|
||||
_thread_activated;
|
||||
_thread_list;
|
||||
_thread_keytable;
|
||||
_thread_active_threads;
|
||||
|
||||
_thread_keytable;
|
||||
_thread_list;
|
||||
_thread_max_keys;
|
||||
_thread_off_attr_flags;
|
||||
_thread_off_dtv;
|
||||
_thread_off_linkmap;
|
||||
_thread_off_next;
|
||||
_thread_off_tcb;
|
||||
_thread_off_tmbx;
|
||||
_thread_off_key_allocated;
|
||||
_thread_off_key_destructor;
|
||||
_thread_off_kse;
|
||||
_thread_off_kse_locklevel;
|
||||
_thread_off_state;
|
||||
_thread_off_thr_locklevel;
|
||||
_thread_off_tlsindex;
|
||||
_thread_size_key;
|
||||
_thread_state_running;
|
||||
_thread_state_zoombie;
|
||||
local:
|
||||
*;
|
||||
};
|
||||
|
@ -103,6 +103,7 @@ SRCS+= \
|
||||
thr_suspend_np.c \
|
||||
thr_switch_np.c \
|
||||
thr_system.c \
|
||||
thr_symbols.c \
|
||||
thr_tcdrain.c \
|
||||
thr_vfork.c \
|
||||
thr_wait.c \
|
||||
|
Loading…
x
Reference in New Issue
Block a user