summaryrefslogtreecommitdiff
path: root/nptl_db
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@mips.com>2018-03-01 16:10:05 +0000
committerMaciej W. Rozycki <macro@mips.com>2018-03-01 16:10:05 +0000
commitb717c14fb1b2b51373d8d0f0217bb53caad59495 (patch)
treee1a8719c6fa6cfdcb9d6896a8d33f8f79cef25c4 /nptl_db
parent1efe13586124f536437ee031626f94a2cf2a502a (diff)
nptl_db: Remove stale `match_pid' parameter from `iterate_thread_list'
Complement commit c579f48edba8 ("Remove cached PID/TID in clone") and remove the `match_pid' parameter not used by `iterate_thread_list' any longer. Update call sites accordingly. * nptl_db/td_ta_thr_iter.c (iterate_thread_list): Remove `match_pid' parameter. (td_ta_thr_iter): Update accordingly.
Diffstat (limited to 'nptl_db')
-rw-r--r--nptl_db/td_ta_thr_iter.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/nptl_db/td_ta_thr_iter.c b/nptl_db/td_ta_thr_iter.c
index 18ad1947a6..00d6c9a416 100644
--- a/nptl_db/td_ta_thr_iter.c
+++ b/nptl_db/td_ta_thr_iter.c
@@ -23,7 +23,7 @@
static td_err_e
iterate_thread_list (td_thragent_t *ta, td_thr_iter_f *callback,
void *cbdata_p, td_thr_state_e state, int ti_pri,
- psaddr_t head, bool fake_empty, pid_t match_pid)
+ psaddr_t head, bool fake_empty)
{
td_err_e err;
psaddr_t next, ofs;
@@ -133,18 +133,17 @@ td_ta_thr_iter (const td_thragent_t *ta_arg, td_thr_iter_f *callback,
have to iterate over both lists separately. We start with the
list of threads with user-defined stacks. */
- pid_t pid = ps_getpid (ta->ph);
err = DB_GET_SYMBOL (list, ta, __stack_user);
if (err == TD_OK)
err = iterate_thread_list (ta, callback, cbdata_p, state, ti_pri,
- list, true, pid);
+ list, true);
/* And the threads with stacks allocated by the implementation. */
if (err == TD_OK)
err = DB_GET_SYMBOL (list, ta, stack_used);
if (err == TD_OK)
err = iterate_thread_list (ta, callback, cbdata_p, state, ti_pri,
- list, false, pid);
+ list, false);
return err;
}