Deleted Added
full compact
1a2
> * Copyright (c) 2004 David Xu <davidxu@freebsd.org>
26c27
< * $FreeBSD: head/lib/libthread_db/thread_db.h 132332 2004-07-18 04:17:15Z marcel $
---
> * $FreeBSD: head/lib/libthread_db/thread_db.h 132360 2004-07-18 19:29:38Z marcel $
74,75c75,88
< TD_CREATE = 0x0001,
< TD_DEATH = 0x0002,
---
> TD_CATCHSIG = 0x0001,
> TD_CONCURRENCY= 0x0002,
> TD_CREATE = 0x0004,
> TD_DEATH = 0x0008,
> TD_IDLE = 0x0010,
> TD_LOCK_TRY = 0x0020,
> TD_PREEMPT = 0x0040,
> TD_PRI_INHERIT= 0x0080,
> TD_READY = 0x0100,
> TD_REAP = 0x0200,
> TD_SLEEP = 0x0400,
> TD_SWITCHFROM = 0x0800,
> TD_SWITCHTO = 0x1000,
> TD_TIMEOUT = 0x2000,
90c103,108
< /* XXX can't be it... */
---
> typedef enum {
> NOTIFY_BPT, /* User inserted breakpoint. */
> NOTIFY_AUTOBPT, /* Automatic breakpoint. */
> NOTIFY_SYSCALL /* Invocation of system call. */
> } td_notify_e;
>
91a110
> td_notify_e type;
93a113
> int syscallno;
154c174
< typedef int thread_key_t;
---
> typedef pthread_key_t thread_key_t;
156,166d175
< #if 0
< typedef struct td_thrinfo_t {
< unsigned int ti_user_flags;
< psaddr_t ti_pc;
< psaddr_t ti_sp;
< short ti_flags;
< uchar_t ti_preemptflag;
< uchar_t ti_pirecflag;
< };
< #endif
<