diff options
author | davidxu <davidxu@FreeBSD.org> | 2005-04-12 03:03:16 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2005-04-12 03:03:16 +0000 |
commit | 6b1b88e88d2dca06c92296fd281c7dc374cf42e0 (patch) | |
tree | 57bb6a3f24e916acd3cd01aa6a9f8d5f2218698c /lib/libthread_db/libpthread_db.c | |
parent | 2cf5eeb00151f72e5aa07f0289c2889752eb07d9 (diff) | |
download | FreeBSD-src-6b1b88e88d2dca06c92296fd281c7dc374cf42e0.zip FreeBSD-src-6b1b88e88d2dca06c92296fd281c7dc374cf42e0.tar.gz |
Sync with debugger code in libthr.
Diffstat (limited to 'lib/libthread_db/libpthread_db.c')
-rw-r--r-- | lib/libthread_db/libpthread_db.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libthread_db/libpthread_db.c b/lib/libthread_db/libpthread_db.c index f3c6be5..4d08545 100644 --- a/lib/libthread_db/libpthread_db.c +++ b/lib/libthread_db/libpthread_db.c @@ -428,21 +428,21 @@ static td_err_e pt_ta_event_addr(const td_thragent_t *ta, td_event_e event, td_notify_t *ptr) { TDBG_FUNC(); - return (TD_NOEVENT); + return (TD_ERR); } static td_err_e pt_ta_set_event(const td_thragent_t *ta, td_thr_events_t *events) { TDBG_FUNC(); - return (TD_ERR); + return (0); } static td_err_e pt_ta_clear_event(const td_thragent_t *ta, td_thr_events_t *events) { TDBG_FUNC(); - return (TD_ERR); + return (0); } static td_err_e @@ -821,21 +821,21 @@ static td_err_e pt_thr_event_enable(const td_thrhandle_t *th, int en) { TDBG_FUNC(); - return (TD_ERR); + return (0); } static td_err_e pt_thr_set_event(const td_thrhandle_t *th, td_thr_events_t *setp) { TDBG_FUNC(); - return (TD_ERR); + return (0); } static td_err_e pt_thr_clear_event(const td_thrhandle_t *th, td_thr_events_t *setp) { TDBG_FUNC(); - return (TD_ERR); + return (0); } static td_err_e |