diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-01-06 02:53:47 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-01-06 02:53:47 +0000 |
commit | b8fce912b9167c3513c2fcd853b45d58501c0837 (patch) | |
tree | db19c1586c816749c9095bc6012d1be66d0d49fb /include/sched.h | |
parent | 82efaae8d784674285fac6fcfcd4460a1901865d (diff) |
Merge from NPTL branch.
Diffstat (limited to 'include/sched.h')
-rw-r--r-- | include/sched.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sched.h b/include/sched.h index e476928be..9ed13b10c 100644 --- a/include/sched.h +++ b/include/sched.h @@ -62,6 +62,12 @@ extern int sched_get_priority_min (int __algorithm) __THROW; /* Get the SCHED_RR interval for the named process. */ extern int sched_rr_get_interval (__pid_t __pid, struct timespec *__t) __THROW; +/* These are Linux specific. */ +extern int __clone (int (*__fn) (void *__arg), void *__child_stack, + int __flags, void *__arg, ...); +extern int __clone2 (int (*__fn) (void *__arg), void *__child_stack_base, + size_t __child_stack_size, int __flags, void *__arg, ...); + __END_DECLS #endif /* sched.h */ |