|
@@ -801,8 +801,8 @@ struct task_struct {
|
|
|
volatile long state; /* -1 unrunnable, 0 runnable, >0 stopped */
|
|
|
struct thread_info *thread_info;
|
|
|
atomic_t usage;
|
|
|
- unsigned long flags; /* per process flags, defined below */
|
|
|
- unsigned long ptrace;
|
|
|
+ unsigned int flags; /* per process flags, defined below */
|
|
|
+ unsigned int ptrace;
|
|
|
|
|
|
int lock_depth; /* BKL lock depth */
|
|
|
|
|
@@ -825,7 +825,7 @@ struct task_struct {
|
|
|
unsigned long long sched_time; /* sched_clock time spent running */
|
|
|
enum sleep_type sleep_type;
|
|
|
|
|
|
- unsigned long policy;
|
|
|
+ unsigned int policy;
|
|
|
cpumask_t cpus_allowed;
|
|
|
unsigned int time_slice, first_time_slice;
|
|
|
|
|
@@ -845,11 +845,11 @@ struct task_struct {
|
|
|
|
|
|
/* task state */
|
|
|
struct linux_binfmt *binfmt;
|
|
|
- long exit_state;
|
|
|
+ int exit_state;
|
|
|
int exit_code, exit_signal;
|
|
|
int pdeath_signal; /* The signal sent when the parent dies */
|
|
|
/* ??? */
|
|
|
- unsigned long personality;
|
|
|
+ unsigned int personality;
|
|
|
unsigned did_exec:1;
|
|
|
pid_t pid;
|
|
|
pid_t tgid;
|
|
@@ -881,7 +881,7 @@ struct task_struct {
|
|
|
int __user *set_child_tid; /* CLONE_CHILD_SETTID */
|
|
|
int __user *clear_child_tid; /* CLONE_CHILD_CLEARTID */
|
|
|
|
|
|
- unsigned long rt_priority;
|
|
|
+ unsigned int rt_priority;
|
|
|
cputime_t utime, stime;
|
|
|
unsigned long nvcsw, nivcsw; /* context switch counts */
|
|
|
struct timespec start_time;
|