1999-10-08 07:03:03 +00:00
|
|
|
/* Private header for thread debug library. */
|
|
|
|
#ifndef _THREAD_DBP_H
|
|
|
|
#define _THREAD_DBP_H 1
|
|
|
|
|
1999-10-12 16:00:04 +00:00
|
|
|
#include <string.h>
|
1999-11-02 16:04:00 +00:00
|
|
|
#include "proc_service.h"
|
1999-10-08 07:03:03 +00:00
|
|
|
#include "thread_db.h"
|
|
|
|
#include "../linuxthreads/internals.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Comment out the following for less verbose output. */
|
1999-11-22 20:53:18 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
# define LOG(c) if (__td_debug) __libc_write (2, c "\n", strlen (c "\n"))
|
|
|
|
extern int __td_debug;
|
|
|
|
#else
|
|
|
|
# define LOG(c)
|
|
|
|
#endif
|
1999-10-08 07:03:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Handle for a process. This type is opaque. */
|
|
|
|
struct td_thragent
|
|
|
|
{
|
|
|
|
/* Delivered by the debugger and we have to pass it back in the
|
|
|
|
proc callbacks. */
|
|
|
|
struct ps_prochandle *ph;
|
|
|
|
|
|
|
|
/* Some cached information. */
|
|
|
|
|
|
|
|
/* Address of the `__pthread_handles' array. */
|
|
|
|
struct pthread_handle_struct *handles;
|
|
|
|
|
|
|
|
/* Address of the `pthread_kyes' array. */
|
|
|
|
struct pthread_key_struct *keys;
|
|
|
|
|
|
|
|
/* Maximum number of threads. */
|
|
|
|
int pthread_threads_max;
|
|
|
|
|
|
|
|
/* Maximum number of thread-local data keys. */
|
|
|
|
int pthread_keys_max;
|
|
|
|
|
|
|
|
/* Size of 2nd level array for thread-local data keys. */
|
|
|
|
int pthread_key_2ndlevel_size;
|
|
|
|
|
|
|
|
/* Sizeof struct _pthread_descr_struct. */
|
|
|
|
int sizeof_descr;
|
1999-11-02 23:44:42 +00:00
|
|
|
|
|
|
|
/* Pointer to the `__pthread_threads_events' variable in the target. */
|
|
|
|
psaddr_t pthread_threads_eventsp;
|
1999-11-03 06:13:09 +00:00
|
|
|
|
|
|
|
/* Pointer to the `__pthread_last_event' variable in the target. */
|
|
|
|
psaddr_t pthread_last_event;
|
|
|
|
|
|
|
|
/* Pointer to the `__pthread_handles_num' variable. */
|
|
|
|
psaddr_t pthread_handles_num;
|
1999-10-08 07:03:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-11-05 02:26:16 +00:00
|
|
|
/* Type used internally to keep track of thread agent descriptors. */
|
|
|
|
struct agent_list
|
|
|
|
{
|
|
|
|
td_thragent_t *ta;
|
|
|
|
struct agent_list *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* List of all known descriptors. */
|
|
|
|
extern struct agent_list *__td_agent_list;
|
|
|
|
|
|
|
|
/* Function used to test for correct thread agent pointer. */
|
|
|
|
static inline int
|
|
|
|
ta_ok (const td_thragent_t *ta)
|
|
|
|
{
|
|
|
|
struct agent_list *runp = __td_agent_list;
|
|
|
|
|
|
|
|
if (ta == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (runp != NULL && runp->ta != ta)
|
|
|
|
runp = runp->next;
|
|
|
|
|
|
|
|
return runp != NULL;
|
|
|
|
}
|
|
|
|
|
1999-10-08 07:03:03 +00:00
|
|
|
#endif /* thread_dbP.h */
|