diff options
author | Richard Braun <rbraun@sceen.net> | 2013-05-12 14:05:25 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2013-05-12 14:05:25 +0200 |
commit | 9d6f40a35b8ced80435454c60475e07f045c1e80 (patch) | |
tree | cfa2f682a0c63cf8e748a9629255fc24f9743af9 /kern/thread.h | |
parent | 4af3612ecbc968ca6a8b33b6dc5b0addaddfb01c (diff) |
kern/thread: minor name change in struct thread_attr
Rename sched_policy to policy.
Diffstat (limited to 'kern/thread.h')
-rw-r--r-- | kern/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/thread.h b/kern/thread.h index c92e6354..2671d2dc 100644 --- a/kern/thread.h +++ b/kern/thread.h @@ -172,7 +172,7 @@ struct thread { struct thread_attr { struct task *task; const char *name; - unsigned char sched_policy; + unsigned char policy; unsigned short priority; }; |