mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
Update.
2002-05-21 Ulrich Drepper <drepper@redhat.com> * sysdeps/pthread/pthread.h (pthread_create): Rename first parameter. (pthread_cancel): Likewise. * internals.h (__pthread_create_2_1): Likewise. * sysdeps/unix/sysv/linux/bits/sigthread.h (pthread_kill): Likewise.
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
2002-05-21 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/pthread/pthread.h (pthread_create): Rename first
|
||||||
|
parameter.
|
||||||
|
(pthread_cancel): Likewise.
|
||||||
|
* internals.h (__pthread_create_2_1): Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/bits/sigthread.h (pthread_kill): Likewise.
|
||||||
|
|
||||||
2002-05-20 Ulrich Drepper <drepper@redhat.com>
|
2002-05-20 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* sysdeps/alpha/pt-machine.c (THREAD_SELF): Remove clobber.
|
* sysdeps/alpha/pt-machine.c (THREAD_SELF): Remove clobber.
|
||||||
|
@@ -362,7 +362,7 @@ extern int __new_sem_destroy (sem_t *__sem);
|
|||||||
/* Prototypes for compatibility functions. */
|
/* Prototypes for compatibility functions. */
|
||||||
extern int __pthread_attr_init_2_1 (pthread_attr_t *__attr);
|
extern int __pthread_attr_init_2_1 (pthread_attr_t *__attr);
|
||||||
extern int __pthread_attr_init_2_0 (pthread_attr_t *__attr);
|
extern int __pthread_attr_init_2_0 (pthread_attr_t *__attr);
|
||||||
extern int __pthread_create_2_1 (pthread_t *__restrict __thread,
|
extern int __pthread_create_2_1 (pthread_t *__restrict __threadp,
|
||||||
const pthread_attr_t *__attr,
|
const pthread_attr_t *__attr,
|
||||||
void *(*__start_routine) (void *),
|
void *(*__start_routine) (void *),
|
||||||
void *__restrict __arg);
|
void *__restrict __arg);
|
||||||
|
@@ -160,7 +160,7 @@ enum
|
|||||||
/* Create a thread with given attributes ATTR (or default attributes
|
/* Create a thread with given attributes ATTR (or default attributes
|
||||||
if ATTR is NULL), and call function START_ROUTINE with given
|
if ATTR is NULL), and call function START_ROUTINE with given
|
||||||
arguments ARG. */
|
arguments ARG. */
|
||||||
extern int pthread_create (pthread_t *__restrict __thread,
|
extern int pthread_create (pthread_t *__restrict __threadp,
|
||||||
__const pthread_attr_t *__restrict __attr,
|
__const pthread_attr_t *__restrict __attr,
|
||||||
void *(*__start_routine) (void *),
|
void *(*__start_routine) (void *),
|
||||||
void *__restrict __arg) __THROW;
|
void *__restrict __arg) __THROW;
|
||||||
@@ -588,7 +588,7 @@ extern int pthread_setcancelstate (int __state, int *__oldstate) __THROW;
|
|||||||
extern int pthread_setcanceltype (int __type, int *__oldtype) __THROW;
|
extern int pthread_setcanceltype (int __type, int *__oldtype) __THROW;
|
||||||
|
|
||||||
/* Cancel THREAD immediately or at the next possibility. */
|
/* Cancel THREAD immediately or at the next possibility. */
|
||||||
extern int pthread_cancel (pthread_t __thread) __THROW;
|
extern int pthread_cancel (pthread_t __cancelthread) __THROW;
|
||||||
|
|
||||||
/* Test for pending cancellation for the current thread and terminate
|
/* Test for pending cancellation for the current thread and terminate
|
||||||
the thread as per pthread_exit(PTHREAD_CANCELED) if it has been
|
the thread as per pthread_exit(PTHREAD_CANCELED) if it has been
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/* Signal handling function for threaded programs.
|
/* Signal handling function for threaded programs.
|
||||||
Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
|
Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@@ -33,6 +33,6 @@ extern int pthread_sigmask (int __how,
|
|||||||
__sigset_t *__restrict __oldmask)__THROW;
|
__sigset_t *__restrict __oldmask)__THROW;
|
||||||
|
|
||||||
/* Send signal SIGNO to the given thread. */
|
/* Send signal SIGNO to the given thread. */
|
||||||
extern int pthread_kill (pthread_t __thread, int __signo) __THROW;
|
extern int pthread_kill (pthread_t __threadid, int __signo) __THROW;
|
||||||
|
|
||||||
#endif /* bits/sigthread.h */
|
#endif /* bits/sigthread.h */
|
||||||
|
Reference in New Issue
Block a user