diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-06-12 21:02:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-06-12 21:02:37 +0000 |
commit | f6e5022bf85586c825739acf5eea988ee5f9c5c8 (patch) | |
tree | b3ad91831bd148bde11af2d7ac3cde8700665008 /linuxthreads_db/thread_db.h | |
parent | 69734e6b922ad63f6fd74b1f894c6e3d64216ba7 (diff) | |
download | glibc-f6e5022bf85586c825739acf5eea988ee5f9c5c8.tar.gz glibc-f6e5022bf85586c825739acf5eea988ee5f9c5c8.tar.xz glibc-f6e5022bf85586c825739acf5eea988ee5f9c5c8.zip |
Update.
Diffstat (limited to 'linuxthreads_db/thread_db.h')
-rw-r--r-- | linuxthreads_db/thread_db.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/linuxthreads_db/thread_db.h b/linuxthreads_db/thread_db.h index b192d1f2e9..65cdb84886 100644 --- a/linuxthreads_db/thread_db.h +++ b/linuxthreads_db/thread_db.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2001 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -51,7 +51,8 @@ typedef enum TD_NOTSD, /* No thread-specific data available. */ TD_MALLOC, /* Out of memory. */ TD_PARTIALREG, /* Not entire register set was read or written. */ - TD_NOXREGS /* X register set not available for given thread. */ + TD_NOXREGS, /* X register set not available for given thread. */ + TD_NOTALLOC /* TLS memory not yet allocated. */ } td_err_e; @@ -92,6 +93,10 @@ typedef struct td_thrhandle } td_thrhandle_t; +/* Forward declaration of a type defined by and for the dynamic linker. */ +struct link_map; + + /* Flags for `td_ta_thr_iter'. */ #define TD_THR_ANY_USER_FLAGS 0xffffffff #define TD_THR_LOWEST_PRIORITY -20 @@ -344,7 +349,7 @@ extern td_err_e td_ta_clear_event (const td_thragent_t *__ta, /* Return information about last event. */ extern td_err_e td_ta_event_getmsg (const td_thragent_t *__ta, - td_event_msg_t *msg); + td_event_msg_t *__msg); /* Set suggested concurrency level for process associated with TA. */ @@ -396,6 +401,12 @@ extern td_err_e td_thr_setxregs (const td_thrhandle_t *__th, const void *__addr); +/* Get address of thread local variable. */ +extern td_err_e td_thr_tls_get_addr (const td_thrhandle_t *__th, + struct link_map *__map, size_t __offset, + void **__address); + + /* Enable reporting for EVENT for thread TH. */ extern td_err_e td_thr_event_enable (const td_thrhandle_t *__th, int __event); |