about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-03-03 22:02:13 +0000
committerUlrich Drepper <drepper@redhat.com>2003-03-03 22:02:13 +0000
commit4f6f0a8fcff3219a19e860f0c4037d9e5646042c (patch)
treee3762b7a1738b04c266852eee550eddc5a96aef5 /include
parentbe095ffaf426d462028b836432ef3ba32d45e3a5 (diff)
downloadglibc-4f6f0a8fcff3219a19e860f0c4037d9e5646042c.tar.gz
glibc-4f6f0a8fcff3219a19e860f0c4037d9e5646042c.tar.xz
glibc-4f6f0a8fcff3219a19e860f0c4037d9e5646042c.zip
Update.
2003-03-03  Ulrich Drepper  <drepper@redhat.com>

	* include/sched.h (__clone2): Use ... instead of adding all the
	new parameters.
Diffstat (limited to 'include')
-rw-r--r--include/sched.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/sched.h b/include/sched.h
index d6cd36f01d..4a142c69af 100644
--- a/include/sched.h
+++ b/include/sched.h
@@ -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