about summary refs log tree commit diff
path: root/include/sched.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sched.h')
-rw-r--r--include/sched.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/sched.h b/include/sched.h
index b159e7ac74..3866a0d08b 100644
--- a/include/sched.h
+++ b/include/sched.h
@@ -3,17 +3,17 @@
 
 /* Now define the internal interfaces.  */
 extern int __sched_setparam (__pid_t __pid,
-			     __const struct sched_param *__param) __THROW;
-extern int __sched_getparam (__pid_t __pid, struct sched_param *__param) __THROW;
+			     __const struct sched_param *__param);
+extern int __sched_getparam (__pid_t __pid, struct sched_param *__param);
 extern int __sched_setscheduler (__pid_t __pid, int __policy,
-				 __const struct sched_param *__param) __THROW;
-extern int __sched_getscheduler (__pid_t __pid) __THROW;
-extern int __sched_yield (void) __THROW;
-extern int __sched_get_priority_max (int __algorithm) __THROW;
-extern int __sched_get_priority_min (int __algorithm) __THROW;
-extern int __sched_rr_get_interval (__pid_t __pid, struct timespec *__t) __THROW;
+				 __const struct sched_param *__param);
+extern int __sched_getscheduler (__pid_t __pid);
+extern int __sched_yield (void);
+extern int __sched_get_priority_max (int __algorithm);
+extern int __sched_get_priority_min (int __algorithm);
+extern int __sched_rr_get_interval (__pid_t __pid, struct timespec *__t);
 
 /* This is Linux specific.  */
 extern int __clone (int (*__fn) (void *__arg), void *__child_stack,
-		    int __flags, void *__arg) __THROW;
+		    int __flags, void *__arg);
 #endif