Symbol: r_debug
libexec/rtld-elf/rtld.c
1577
(Elf_Addr)&r_debug;
libexec/rtld-elf/rtld.c
217
void r_debug_state(struct r_debug *, struct link_map *) __noinline __exported;
libexec/rtld-elf/rtld.c
225
struct r_debug r_debug __exported; /* for GDB; */
libexec/rtld-elf/rtld.c
2550
r_debug.r_version = R_DEBUG_VERSION;
libexec/rtld-elf/rtld.c
2551
r_debug.r_brk = r_debug_state;
libexec/rtld-elf/rtld.c
2552
r_debug.r_state = RT_CONSISTENT;
libexec/rtld-elf/rtld.c
2553
r_debug.r_ldbase = obj_rtld.relocbase;
libexec/rtld-elf/rtld.c
265
r_debug.r_state = s; \
libexec/rtld-elf/rtld.c
266
r_debug_state(&r_debug, m);
libexec/rtld-elf/rtld.c
4670
if (r_debug.r_map == NULL) {
libexec/rtld-elf/rtld.c
4671
r_debug.r_map = l;
libexec/rtld-elf/rtld.c
4679
for (prev = r_debug.r_map;
libexec/rtld-elf/rtld.c
4699
if ((r_debug.r_map = l->l_next) != NULL)
libexec/rtld-elf/rtld.c
4722
r_debug_state(struct r_debug *rd __unused, struct link_map *m __unused)
libexec/rtld-elf/rtld.c
76
extern struct r_debug r_debug; /* For GDB */
sys/kern/link_elf.c
289
static void r_debug_state(struct r_debug *, struct link_map *);
sys/kern/link_elf.c
294
struct r_debug r_debug;
sys/kern/link_elf.c
297
r_debug.r_state = s; r_debug_state(NULL, NULL); \
sys/kern/link_elf.c
304
r_debug_state(struct r_debug *dummy_one __unused,
sys/kern/link_elf.c
316
if (r_debug.r_map == NULL) {
sys/kern/link_elf.c
319
r_debug.r_map = l;
sys/kern/link_elf.c
322
for (prev = r_debug.r_map;
sys/kern/link_elf.c
336
if ((r_debug.r_map = l->l_next) != NULL)
sys/kern/link_elf.c
513
r_debug.r_map = NULL;
sys/kern/link_elf.c
514
r_debug.r_brk = r_debug_state;
sys/kern/link_elf.c
515
r_debug.r_state = RT_CONSISTENT;
sys/kern/link_elf.c
656
dp->d_un.d_ptr = (Elf_Addr)&r_debug;
sys/sys/link_elf.h
69
void (*r_brk)(struct r_debug *, struct link_map *);