Deleted Added
full compact
libpthread_db.h (132332) libpthread_db.h (133802)
1/*
2 * Copyright (c) 2004 David Xu <davidxu@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*
2 * Copyright (c) 2004 David Xu <davidxu@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/lib/libthread_db/libpthread_db.h 132332 2004-07-18 04:17:15Z marcel $
26 * $FreeBSD: head/lib/libthread_db/libpthread_db.h 133802 2004-08-16 03:30:16Z davidxu $
27 */
28
29#ifndef _LIBPTHREAD_DB_H_
30#define _LIBPTHREAD_DB_H_
31
32#include <sys/ucontext.h>
33#include <machine/reg.h>
34

--- 16 unchanged lines hidden (view full) ---

51 TD_THRAGENT_FIELDS;
52 psaddr_t libkse_debug_addr;
53 psaddr_t thread_list_addr;
54 psaddr_t thread_listgen_addr;
55 psaddr_t thread_activated_addr;
56 psaddr_t thread_active_threads_addr;
57 psaddr_t thread_keytable_addr;
58 int thread_activated;
27 */
28
29#ifndef _LIBPTHREAD_DB_H_
30#define _LIBPTHREAD_DB_H_
31
32#include <sys/ucontext.h>
33#include <machine/reg.h>
34

--- 16 unchanged lines hidden (view full) ---

51 TD_THRAGENT_FIELDS;
52 psaddr_t libkse_debug_addr;
53 psaddr_t thread_list_addr;
54 psaddr_t thread_listgen_addr;
55 psaddr_t thread_activated_addr;
56 psaddr_t thread_active_threads_addr;
57 psaddr_t thread_keytable_addr;
58 int thread_activated;
59 int thread_off_dtv;
60 int thread_off_kse_locklevel;
61 int thread_off_kse;
62 int thread_off_tlsindex;
63 int thread_off_attr_flags;
64 int thread_size_key;
65 int thread_off_tcb;
66 int thread_off_linkmap;
67 int thread_off_tmbx;
68 int thread_off_thr_locklevel;
69 int thread_off_next;
70 int thread_off_state;
71 int thread_max_keys;
72 int thread_off_key_allocated;
73 int thread_off_key_destructor;
74 int thread_state_zoombie;
75 int thread_state_running;
59 struct pt_map *map;
60 int map_len;
61};
62
63void pt_md_init(void);
64void pt_reg_to_ucontext(const struct reg *, ucontext_t *);
65void pt_ucontext_to_reg(const ucontext_t *, struct reg *);
66void pt_fpreg_to_ucontext(const struct fpreg *, ucontext_t *);
67void pt_ucontext_to_fpreg(const ucontext_t *, struct fpreg *);
68int pt_reg_sstep(struct reg *reg, int step);
69
70#endif /* _LIBPTHREAD_DB_H_ */
76 struct pt_map *map;
77 int map_len;
78};
79
80void pt_md_init(void);
81void pt_reg_to_ucontext(const struct reg *, ucontext_t *);
82void pt_ucontext_to_reg(const ucontext_t *, struct reg *);
83void pt_fpreg_to_ucontext(const struct fpreg *, ucontext_t *);
84void pt_ucontext_to_fpreg(const ucontext_t *, struct fpreg *);
85int pt_reg_sstep(struct reg *reg, int step);
86
87#endif /* _LIBPTHREAD_DB_H_ */