Lines Matching full:task
14 * syscall_get_nr - find what system call a task is executing
15 * @task: task of interest, must be blocked
16 * @regs: task_pt_regs() of @task
18 * If @task is executing a system call or is at system call
20 * If @task is not executing a system call, i.e. it's blocked
27 * It's only valid to call this when @task is known to be blocked.
30 syscall_get_nr(struct task_struct *task, struct pt_regs *regs) in syscall_get_nr() argument
37 * @task: task of interest, must be in system call exit tracing
38 * @regs: task_pt_regs() of @task
40 * It's only valid to call this when @task is stopped for system
52 syscall_rollback(struct task_struct *task, struct pt_regs *regs) in syscall_rollback() argument
59 * @task: task of interest, must be blocked
60 * @regs: task_pt_regs() of @task
64 * It's only valid to call this when @task is stopped for tracing on exit
68 syscall_get_error(struct task_struct *task, struct pt_regs *regs) in syscall_get_error() argument
76 * @task: task of interest, must be blocked
77 * @regs: task_pt_regs() of @task
82 * It's only valid to call this when @task is stopped for tracing on exit
86 syscall_get_return_value(struct task_struct *task, struct pt_regs *regs) in syscall_get_return_value() argument
93 * @task: task of interest, must be blocked
94 * @regs: task_pt_regs() of @task
103 * It's only valid to call this when @task is stopped for tracing on exit
107 syscall_set_return_value(struct task_struct *task, struct pt_regs *regs, in syscall_set_return_value() argument
115 * @task: task of interest, must be blocked
116 * @regs: task_pt_regs() of @task
122 * It's only valid to call this when @task is stopped for tracing on
127 syscall_get_arguments(struct task_struct *task, struct pt_regs *regs, in syscall_get_arguments() argument
137 * @task: task of interest, must be in system call entry tracing
138 * @regs: task_pt_regs() of @task
144 * It's only valid to call this when @task is stopped for tracing on
148 syscall_set_arguments(struct task_struct *task, struct pt_regs *regs, in syscall_set_arguments() argument
158 syscall_get_arch(struct task_struct *task) in syscall_get_arch() argument