yann@1: 2002-05-21 Ulrich Drepper yann@1: yann@1: * sysdeps/pthread/pthread.h (pthread_create): Rename first parameter. yann@1: (pthread_cancel): Likewise. yann@1: * internals.h (__pthread_create_2_1): Likewise. yann@1: * sysdeps/unix/sysv/linux/bits/sigthread.h (pthread_kill): Likewise. yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads/internals.h,v yann@1: retrieving revision 1.69.2.2 yann@1: retrieving revision 1.69.2.3 yann@1: diff -u -r1.69.2.2 -r1.69.2.3 yann@1: --- libc/linuxthreads/internals.h 2002/03/22 08:30:32 1.69.2.2 yann@1: +++ libc/linuxthreads/internals.h 2002/08/20 22:01:25 1.69.2.3 yann@1: @@ -554,7 +554,7 @@ yann@1: /* Prototypes for compatibility functions. */ yann@1: extern int __pthread_attr_init_2_1 (pthread_attr_t *__attr); yann@1: extern int __pthread_attr_init_2_0 (pthread_attr_t *__attr); yann@1: -extern int __pthread_create_2_1 (pthread_t *__restrict __thread, yann@1: +extern int __pthread_create_2_1 (pthread_t *__restrict __threadp, yann@1: const pthread_attr_t *__attr, yann@1: void *(*__start_routine) (void *), yann@1: void *__restrict __arg); yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads/sysdeps/pthread/pthread.h,v yann@1: retrieving revision 1.31 yann@1: retrieving revision 1.31.2.1 yann@1: diff -u -r1.31 -r1.31.2.1 yann@1: --- libc/linuxthreads/sysdeps/pthread/pthread.h 2001/03/15 21:12:31 1.31 yann@1: +++ libc/linuxthreads/sysdeps/pthread/pthread.h 2002/08/20 22:01:26 1.31.2.1 yann@1: @@ -160,7 +160,7 @@ yann@1: /* Create a thread with given attributes ATTR (or default attributes yann@1: if ATTR is NULL), and call function START_ROUTINE with given yann@1: arguments ARG. */ yann@1: -extern int pthread_create (pthread_t *__restrict __thread, yann@1: +extern int pthread_create (pthread_t *__restrict __threadp, yann@1: __const pthread_attr_t *__restrict __attr, yann@1: void *(*__start_routine) (void *), yann@1: void *__restrict __arg) __THROW; yann@1: @@ -588,7 +588,7 @@ yann@1: extern int pthread_setcanceltype (int __type, int *__oldtype) __THROW; yann@1: yann@1: /* Cancel THREAD immediately or at the next possibility. */ yann@1: -extern int pthread_cancel (pthread_t __thread) __THROW; yann@1: +extern int pthread_cancel (pthread_t __cancelthread) __THROW; yann@1: yann@1: /* Test for pending cancellation for the current thread and terminate yann@1: the thread as per pthread_exit(PTHREAD_CANCELED) if it has been yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h,v yann@1: retrieving revision 1.5 yann@1: retrieving revision 1.5.2.1 yann@1: diff -u -r1.5 -r1.5.2.1 yann@1: --- libc/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h 2000/08/21 06:48:03 1.5 yann@1: +++ libc/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h 2002/08/20 22:01:26 1.5.2.1 yann@1: @@ -1,5 +1,5 @@ yann@1: /* Signal handling function for threaded programs. yann@1: - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. yann@1: + Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc. yann@1: This file is part of the GNU C Library. yann@1: yann@1: The GNU C Library is free software; you can redistribute it and/or yann@1: @@ -33,6 +33,6 @@ yann@1: __sigset_t *__restrict __oldmask)__THROW; yann@1: yann@1: /* Send signal SIGNO to the given thread. */ yann@1: -extern int pthread_kill (pthread_t __thread, int __signo) __THROW; yann@1: +extern int pthread_kill (pthread_t __threadid, int __signo) __THROW; yann@1: yann@1: #endif /* bits/sigthread.h */