aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaximilian attems <max@stro.at>2011-08-29 18:00:15 +0200
committermaximilian attems <max@stro.at>2011-08-30 11:33:35 +0200
commitd18277892440550ac45eb8b970f0bacffe79fd3e (patch)
tree002543750e3402d47b815adda524e335162a7b64
parente449219888d9734876c3599b3338cd642995dc64 (diff)
downloadklibc-d18277892440550ac45eb8b970f0bacffe79fd3e.tar.gz
[klibc] include: [sched.h] fix POSIX conformance
The linux code likes to name it SCHED_NORMAL, userland knows it under SCHED_OTHER. Use later definition as specified in POSIX:2001. Signed-off-by: maximilian attems <max@stro.at>
-rw-r--r--usr/include/sched.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/include/sched.h b/usr/include/sched.h
index 713cc7aa8cdeb..a1cc5685f8b43 100644
--- a/usr/include/sched.h
+++ b/usr/include/sched.h
@@ -9,7 +9,7 @@
/* linux/sched.h is unusable; put the declarations we need here... */
-#define SCHED_NORMAL 0
+#define SCHED_OTHER 0
#define SCHED_FIFO 1
#define SCHED_RR 2