• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/

Lines Matching refs:prstatus

1357  * fill up all the fields in prstatus from the given task struct, except
1360 static void fill_prstatus(struct elf_prstatus *prstatus,
1363 prstatus->pr_info.si_signo = prstatus->pr_cursig = signr;
1364 prstatus->pr_sigpend = p->pending.signal.sig[0];
1365 prstatus->pr_sighold = p->blocked.sig[0];
1367 prstatus->pr_ppid = task_pid_vnr(rcu_dereference(p->real_parent));
1369 prstatus->pr_pid = task_pid_vnr(p);
1370 prstatus->pr_pgrp = task_pgrp_vnr(p);
1371 prstatus->pr_sid = task_session_vnr(p);
1380 cputime_to_timeval(cputime.utime, &prstatus->pr_utime);
1381 cputime_to_timeval(cputime.stime, &prstatus->pr_stime);
1383 cputime_to_timeval(p->utime, &prstatus->pr_utime);
1384 cputime_to_timeval(p->stime, &prstatus->pr_stime);
1386 cputime_to_timeval(p->signal->cutime, &prstatus->pr_cutime);
1387 cputime_to_timeval(p->signal->cstime, &prstatus->pr_cstime);
1389 prstatus->pr_exec_fdpic_loadmap = p->mm->context.exec_fdpic_loadmap;
1390 prstatus->pr_interp_fdpic_loadmap = p->mm->context.interp_fdpic_loadmap;
1440 struct elf_prstatus prstatus; /* NT_PRSTATUS */
1462 fill_prstatus(&t->prstatus, p, signr);
1463 elf_core_copy_task_regs(p, &t->prstatus.pr_reg);
1465 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus),
1466 &t->prstatus);
1470 t->prstatus.pr_fpvalid = elf_core_copy_task_fpregs(p, NULL, &t->fpu);
1471 if (t->prstatus.pr_fpvalid) {
1600 struct elf_prstatus *prstatus = NULL; /* NT_PRSTATUS */
1631 prstatus = kzalloc(sizeof(*prstatus), GFP_KERNEL);
1632 if (!prstatus)
1674 fill_prstatus(prstatus, current, cprm->signr);
1675 elf_core_copy_regs(&prstatus->pr_reg, cprm->regs);
1699 fill_note(notes + 0, "CORE", NT_PRSTATUS, sizeof(*prstatus), prstatus);
1715 if ((prstatus->pr_fpvalid =
1855 kfree(prstatus);