Searched defs:tgid (Results 1 - 4 of 4) sorted by path

/kernel/
H A Dsignal.c2900 do_send_specific(pid_t tgid, pid_t pid, int sig, struct siginfo *info) argument
2907 if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) {
2929 static int do_tkill(pid_t tgid, pid_t pid, int sig) argument
2939 return do_send_specific(tgid, pid, sig, &info);
2944 * @tgid: the thread group ID of the thread
2948 * This syscall also checks the @tgid and returns -ESRCH even if the PID
2952 SYSCALL_DEFINE3(tgkill, pid_t, tgid, pid_t, pid, int, sig)
2955 if (pid <= 0 || tgid <= 0)
2958 return do_tkill(tgid, pi
3023 do_rt_tgsigqueueinfo(pid_t tgid, pid_t pid, int sig, siginfo_t *info) argument
[all...]
H A Dtaskstats.c218 static int fill_stats_for_tgid(pid_t tgid, struct taskstats *stats) argument
229 first = find_task_by_vpid(tgid);
278 * accumalate its per-task stats for tsk, into the per-tgid structure
553 u32 tgid; local
563 tgid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_TGID]);
564 stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID, tgid);
568 rc = fill_stats_for_tgid(tgid, stats);
/kernel/trace/
H A Dtrace.c815 "print-tgid",
1522 saved_tgids[idx] = tsk->tgid;
1568 int tgid; local
1574 tgid = saved_tgids[map];
1576 tgid = -1;
1581 return tgid;
1927 entry->tgid = current->tgid;
3962 int tgid; local
3969 tgid
[all...]
H A Dtrace_output.c348 task = find_task_by_vpid(entry->tgid);
524 int tgid; local
533 tgid = trace_find_tgid(entry->pid);
534 if (tgid < 0)
537 ret = trace_seq_printf(s, "(%5d) ", tgid);

Completed in 39 milliseconds