1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
1998-12-08  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* sysdeps/pthread/pthread.h: Remove __pthread_setcanceltype
 	declaration since it's not needed.

	* sysdeps/pthread/pthread.h: Move internal functions to ...
	* internals.h: ...here.
This commit is contained in:
Ulrich Drepper
1998-12-08 16:10:10 +00:00
parent c3c95a7b02
commit 8632b24036
3 changed files with 50 additions and 0 deletions

View File

@ -1,3 +1,11 @@
1998-12-08 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/pthread/pthread.h: Remove __pthread_setcanceltype
declaration since it's not needed.
* sysdeps/pthread/pthread.h: Move internal functions to ...
* internals.h: ...here.
1998-12-02 H.J. Lu <hjl@gnu.org>
* pthread.c (__pthread_sig_restart): Initiliaze to 0 if

View File

@ -321,6 +321,24 @@ void __pthread_reset_main_thread(void);
void __fresetlockfiles(void);
void __pthread_manager_adjust_prio(int thread_prio);
extern int __pthread_attr_setguardsize __P ((pthread_attr_t *__attr,
size_t __guardsize));
extern int __pthread_attr_getguardsize __P ((__const pthread_attr_t *__attr,
size_t *__guardsize));
extern int __pthread_attr_setstackaddr __P ((pthread_attr_t *__attr,
void *__stackaddr));
extern int __pthread_attr_getstackaddr __P ((__const pthread_attr_t *__attr,
void **__stackaddr));
extern int __pthread_attr_setstacksize __P ((pthread_attr_t *__attr,
size_t __stacksize));
extern int __pthread_attr_getstacksize __P ((__const pthread_attr_t *__attr,
size_t *__stacksize));
extern int __pthread_getconcurrency __P ((void));
extern int __pthread_setconcurrency __P ((int __level));
extern int __pthread_mutexattr_gettype __P ((__const pthread_mutexattr_t *__attr,
int *__kind));
extern void __pthread_kill_other_threads_np __P ((void));
/* Prototypes for the function without cancelation support when the
normal version has it. */
extern int __libc_close (int fd);