1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-14 20:01:03 +03:00
2003-03-03  Ulrich Drepper  <drepper@redhat.com>

	* include/sched.h (__clone2): Use ... instead of adding all the
	new parameters.
This commit is contained in:
Ulrich Drepper
2003-03-03 22:02:13 +00:00
parent be095ffaf4
commit 4f6f0a8fcf
6 changed files with 26 additions and 12 deletions

View File

@ -15,11 +15,8 @@ extern int __sched_get_priority_min (int __algorithm);
extern int __sched_rr_get_interval (__pid_t __pid, struct timespec *__t);
/* These are Linux specific. */
struct user_desc;
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,
__pid_t *__child_tid, __pid_t *__parent_tid,
struct user_desc *__tls);
size_t __child_stack_size, int __flags, void *__arg, ...);
#endif