Lines Matching defs:thread_struct
107 struct thread_struct { struct
108 unsigned int acrs[NUM_ACRS];
109 unsigned long ksp; /* kernel stack pointer */
110 unsigned long user_timer; /* task cputime in user space */
111 unsigned long guest_timer; /* task cputime in kvm guest */
112 unsigned long system_timer; /* task cputime in kernel space */
113 unsigned long hardirq_timer; /* task cputime in hardirq context */
114 unsigned long softirq_timer; /* task cputime in softirq context */
115 const sys_call_ptr_t *sys_call_table; /* system call table address */
116 unsigned long gmap_addr; /* address of last gmap fault. */
117 unsigned int gmap_write_flag; /* gmap fault write indication */
118 unsigned int gmap_int_code; /* int code of last gmap fault */
119 unsigned int gmap_pfault; /* signal of a pending guest pfault */
122 struct per_regs per_user; /* User specified PER registers */
123 struct per_event per_event; /* Cause of the last PER trap */
124 unsigned long per_flags; /* Flags to control debug behavior */
125 unsigned int system_call; /* system call number in signal */
126 unsigned long last_break; /* last breaking-event-address. */
128 unsigned long pfault_wait;
152 typedef struct thread_struct thread_struct; argument