Lines Matching defs:thread_struct
181 struct thread_struct { struct
182 unsigned int acrs[NUM_ACRS];
183 unsigned long ksp; /* kernel stack pointer */
184 unsigned long user_timer; /* task cputime in user space */
185 unsigned long guest_timer; /* task cputime in kvm guest */
186 unsigned long system_timer; /* task cputime in kernel space */
187 unsigned long hardirq_timer; /* task cputime in hardirq context */
188 unsigned long softirq_timer; /* task cputime in softirq context */
189 const sys_call_ptr_t *sys_call_table; /* system call table address */
190 unsigned long gmap_addr; /* address of last gmap fault. */
191 unsigned int gmap_write_flag; /* gmap fault write indication */
192 unsigned int gmap_int_code; /* int code of last gmap fault */
193 unsigned int gmap_pfault; /* signal of a pending guest pfault */
194 int ufpu_flags; /* user fpu flags */
195 int kfpu_flags; /* kernel fpu flags */
198 struct per_regs per_user; /* User specified PER registers */
199 struct per_event per_event; /* Cause of the last PER trap */
200 unsigned long per_flags; /* Flags to control debug behavior */
201 unsigned int system_call; /* system call number in signal */
225 typedef struct thread_struct thread_struct; argument