From 27ee0a559513db0d0e650761b6f4268b39199c74 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 27 Dec 2000 17:18:07 +0000 Subject: Update. * include/sys/wait.h: Add some prototypes. * Rules (dummy.c): Create also prototype to shut up GCC. 2000-12-27 Andreas Jaeger --- ChangeLog | 5 ++ Rules | 3 +- include/sys/wait.h | 2 + linuxthreads/ChangeLog | 42 ++++++++++ linuxthreads/events.c | 4 +- linuxthreads/internals.h | 95 ++++++++++++++++------ linuxthreads/lockfile.c | 1 + linuxthreads/mutex.c | 1 + linuxthreads/oldsemaphore.c | 8 ++ linuxthreads/pt-machine.c | 3 + linuxthreads/ptfork.c | 1 + linuxthreads/rwlock.c | 1 + linuxthreads/specific.c | 2 + linuxthreads/sysdeps/alpha/pspinlock.c | 1 + linuxthreads/sysdeps/arm/pspinlock.c | 1 + linuxthreads/sysdeps/hppa/pspinlock.c | 2 +- linuxthreads/sysdeps/i386/pspinlock.c | 2 +- linuxthreads/sysdeps/ia64/pspinlock.c | 2 +- linuxthreads/sysdeps/m68k/pspinlock.c | 1 + linuxthreads/sysdeps/mips/pspinlock.c | 2 +- linuxthreads/sysdeps/powerpc/pspinlock.c | 2 +- linuxthreads/sysdeps/s390/pspinlock.c | 2 +- linuxthreads/sysdeps/sh/pspinlock.c | 2 +- linuxthreads/sysdeps/sparc/sparc32/pspinlock.c | 2 +- .../sysdeps/sparc/sparc32/sparcv9/pspinlock.c | 1 + linuxthreads/sysdeps/sparc/sparc64/pspinlock.c | 2 +- linuxthreads/weaks.c | 1 + 27 files changed, 155 insertions(+), 36 deletions(-) diff --git a/ChangeLog b/ChangeLog index bdec950ad2..b203865639 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-12-27 Andreas Jaeger + + * include/sys/wait.h: Add some prototypes. + * Rules (dummy.c): Create also prototype to shut up GCC. + 2000-12-27 Andreas Jaeger * sysdeps/mach/hurd/if_index.c (__protocol_available): Uncomment, diff --git a/Rules b/Rules index 956a2eb62e..464495e842 100644 --- a/Rules +++ b/Rules @@ -74,7 +74,8 @@ endef $(common-objpfx)dummy.c: rm -f $@ - echo 'void __dummy__ (void) { }' > $@ + (echo 'extern void __dummy__ (void);'; \ + echo 'void __dummy__ (void) { }') > $@ common-generated += dummy.o dummy.c # This makes all the auxiliary and test programs. diff --git a/include/sys/wait.h b/include/sys/wait.h index 9244c30bcc..37873dfbfe 100644 --- a/include/sys/wait.h +++ b/include/sys/wait.h @@ -4,6 +4,8 @@ /* Now define the internal interfaces. */ extern __pid_t __waitpid (__pid_t __pid, int *__stat_loc, int __options); +extern __pid_t __libc_waitpid (pid_t __pid, int *__stat_loc, int __options); +extern __pid_t __libc_wait (int *__stat_loc); extern __pid_t __wait3 (__WAIT_STATUS __stat_loc, int __options, struct rusage * __usage); extern __pid_t __wait4 (__pid_t __pid, __WAIT_STATUS __stat_loc, diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index e05e7c0abd..e7b3819ada 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,45 @@ +2000-12-27 Andreas Jaeger + + * Examples/ex13.c: Make local functions static. + * ecmutex.c: Likewise. + * Examples/ex14.c: Likewise. + + * Examples/ex2.c: Make local functions static; reformat. + * Examples/ex1.c: Likewise. + * Examples/ex4.c: Likewise. + * Examples/ex5.c: Likewise. + * Examples/ex7.c: Likewise. + + * oldsemaphore.c: Add prototypes to shut up GCC. + * pt-machine.c: Likewise. + + * weaks.c: Add prototype for pthread_exit. + + * internals.h: Add some prototypes, format prototypes and add + missing externs. + Move __libc_waitpid prototype to include/sys/wait.h. + + * rwlock.c: Include for prototypes. + * mutex.c: Likewise. + * specific.c: Likewise. + * ptfork.c: Likewise. + + * lockfile.c: Include internals.h to get prototypes. + * events.c: Likewise. + * sysdeps/alpha/pspinlock.c: Likewise. + * sysdeps/arm/pspinlock.c: Likewise. + * sysdeps/hppa/pspinlock.c: Likewise. + * sysdeps/i386/pspinlock.c: Likewise. + * sysdeps/ia64/pspinlock.c: Likewise. + * sysdeps/m68k/pspinlock.c: Likewise. + * sysdeps/mips/pspinlock.c: Likewise. + * sysdeps/powerpc/pspinlock.c: Likewise. + * sysdeps/s390/pspinlock.c: Likewise. + * sysdeps/sh/pspinlock.c: Likewise. + * sysdeps/sparc/sparc32/pspinlock.c: Likewise. + * sysdeps/sparc/sparc32/sparcv9/pspinlock.c: Likewise. + * sysdeps/sparc/sparc64/pspinlock.c: Likewise. + 2000-12-27 Ulrich Drepper * attr.c (__pthread_attr_setstack): Fix setting of __stackaddr element. diff --git a/linuxthreads/events.c b/linuxthreads/events.c index e5be3d935b..c65bafc764 100644 --- a/linuxthreads/events.c +++ b/linuxthreads/events.c @@ -1,5 +1,5 @@ /* Event functions used while debugging. - Copyright (C) 1999 Free Software Foundation, Inc. + Copyright (C) 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,6 +19,8 @@ /* The functions contained here do nothing, they just return. */ +#include "internals.h" + void __linuxthreads_create_event (void) { diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h index b81e5f4a63..9480530f6e 100644 --- a/linuxthreads/internals.h +++ b/linuxthreads/internals.h @@ -427,21 +427,22 @@ static inline pthread_descr thread_self (void) /* Internal global functions */ -void __pthread_destroy_specifics(void); -void __pthread_perform_cleanup(void); -int __pthread_initialize_manager(void); -void __pthread_message(char * fmt, ...); -int __pthread_manager(void *reqfd); -int __pthread_manager_event(void *reqfd); -void __pthread_manager_sighandler(int sig); -void __pthread_reset_main_thread(void); -void __pthread_once_fork_prepare(void); -void __pthread_once_fork_parent(void); -void __pthread_once_fork_child(void); -void __flockfilelist(void); -void __funlockfilelist(void); -void __fresetlockfiles(void); -void __pthread_manager_adjust_prio(int thread_prio); +extern void __pthread_destroy_specifics (void); +extern void __pthread_perform_cleanup (void); +extern int __pthread_initialize_manager (void); +extern void __pthread_message (char * fmt, ...); +extern int __pthread_manager (void *reqfd); +extern int __pthread_manager_event (void *reqfd); +extern void __pthread_manager_sighandler (int sig); +extern void __pthread_reset_main_thread (void); +extern void __pthread_once_fork_prepare (void); +extern void __pthread_once_fork_parent (void); +extern void __pthread_once_fork_child (void); +extern void __flockfilelist (void); +extern void __funlockfilelist (void); +extern void __fresetlockfiles (void); +extern void __pthread_manager_adjust_prio (int thread_prio); +extern void __pthread_initialize_minimal (void); extern int __pthread_attr_setguardsize (pthread_attr_t *__attr, size_t __guardsize); @@ -455,23 +456,52 @@ extern int __pthread_attr_setstacksize (pthread_attr_t *__attr, size_t __stacksize); extern int __pthread_attr_getstacksize (const pthread_attr_t *__attr, size_t *__stacksize); +extern int __pthread_attr_setstack (pthread_attr_t *__attr, void *__stackaddr, + size_t __stacksize); +extern int __pthread_attr_getstack (const pthread_attr_t *__attr, void **__stackaddr, + size_t *__stacksize); extern int __pthread_getconcurrency (void); extern int __pthread_setconcurrency (int __level); +extern int __pthread_mutex_timedlock (pthread_mutex_t *__mutex, + const struct timespec *__abstime); +extern int __pthread_mutexattr_getpshared (const pthread_mutexattr_t *__attr, + int *__pshared); +extern int __pthread_mutexattr_setpshared (pthread_mutexattr_t *__attr, + int __pshared); extern int __pthread_mutexattr_gettype (const pthread_mutexattr_t *__attr, int *__kind); extern void __pthread_kill_other_threads_np (void); -void __pthread_restart_old(pthread_descr th); -void __pthread_suspend_old(pthread_descr self); -int __pthread_timedsuspend_old(pthread_descr self, const struct timespec *abs); +extern void __pthread_restart_old(pthread_descr th); +extern void __pthread_suspend_old(pthread_descr self); +extern int __pthread_timedsuspend_old(pthread_descr self, const struct timespec *abs); -void __pthread_restart_new(pthread_descr th); -void __pthread_suspend_new(pthread_descr self); -int __pthread_timedsuspend_new(pthread_descr self, const struct timespec *abs); +extern void __pthread_restart_new(pthread_descr th); +extern void __pthread_suspend_new(pthread_descr self); +extern int __pthread_timedsuspend_new(pthread_descr self, const struct timespec *abs); -void __pthread_wait_for_restart_signal(pthread_descr self); +extern void __pthread_wait_for_restart_signal(pthread_descr self); + +extern int __pthread_yield (void); + +extern int __pthread_rwlock_timedrdlock (pthread_rwlock_t *__restrict __rwlock, + __const struct timespec *__restrict + __abstime); +extern int __pthread_rwlock_timedwrlock (pthread_rwlock_t *__restrict __rwlock, + __const struct timespec *__restrict + __abstime); +extern int __pthread_rwlockattr_destroy (pthread_rwlockattr_t *__attr); + +extern int __pthread_barrierattr_getpshared (__const pthread_barrierattr_t * + __restrict __attr, + int *__restrict __pshared); + +extern int __pthread_spin_lock (pthread_spinlock_t *__lock); +extern int __pthread_spin_trylock (pthread_spinlock_t *__lock); +extern int __pthread_spin_unlock (pthread_spinlock_t *__lock); +extern int __pthread_spin_init (pthread_spinlock_t *__lock, int __pshared); +extern int __pthread_spin_destroy (pthread_spinlock_t *__lock); -int __pthread_yield (void); /* Global pointers to old or new suspend functions */ @@ -484,10 +514,25 @@ extern int (*__pthread_timedsuspend)(pthread_descr, const struct timespec *); extern int __libc_close (int fd); extern int __libc_nanosleep (const struct timespec *requested_time, struct timespec *remaining); -extern pid_t __libc_waitpid (pid_t pid, int *stat_loc, int options); - /* Prototypes for some of the new semaphore functions. */ extern int __new_sem_post (sem_t * sem); +extern int __new_sem_init (sem_t *__sem, int __pshared, unsigned int __value); +extern int __new_sem_wait (sem_t *__sem); +extern int __new_sem_trywait (sem_t *__sem); +extern int __new_sem_getvalue (sem_t *__restrict __sem, int *__restrict __sval); +extern int __new_sem_destroy (sem_t *__sem); + +/* Prototypes for compatibility functions. */ +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_create_2_1 (pthread_t *__restrict __thread, + const pthread_attr_t *__attr, + void *(*__start_routine) (void *), + void *__restrict __arg); +extern int __pthread_create_2_0 (pthread_t *__restrict thread, + const pthread_attr_t *__attr, + void *(*__start_routine) (void *), + void *__restrict arg); /* The functions called the signal events. */ extern void __linuxthreads_create_event (void); diff --git a/linuxthreads/lockfile.c b/linuxthreads/lockfile.c index 0ef02f8757..38fa3fba86 100644 --- a/linuxthreads/lockfile.c +++ b/linuxthreads/lockfile.c @@ -20,6 +20,7 @@ #include #include #include +#include "internals.h" #ifdef USE_IN_LIBIO #include "../libio/libioP.h" diff --git a/linuxthreads/mutex.c b/linuxthreads/mutex.c index 5955c575d9..3ad27942af 100644 --- a/linuxthreads/mutex.c +++ b/linuxthreads/mutex.c @@ -14,6 +14,7 @@ /* Mutexes */ +#include #include #include #include diff --git a/linuxthreads/oldsemaphore.c b/linuxthreads/oldsemaphore.c index b9eb20f045..82cd63797f 100644 --- a/linuxthreads/oldsemaphore.c +++ b/linuxthreads/oldsemaphore.c @@ -34,6 +34,14 @@ typedef struct { int sem_spinlock; } old_sem_t; +extern int __old_sem_init (old_sem_t *__sem, int __pshared, unsigned int __value); +extern int __old_sem_wait (old_sem_t *__sem); +extern int __old_sem_trywait (old_sem_t *__sem); +extern int __old_sem_post (old_sem_t *__sem); +extern int __old_sem_getvalue (old_sem_t *__sem, int *__sval); +extern int __old_sem_destroy (old_sem_t *__sem); + + /* Maximum value the semaphore can have. */ #define SEM_VALUE_MAX ((int) ((~0u) >> 1)) diff --git a/linuxthreads/pt-machine.c b/linuxthreads/pt-machine.c index 438008d5d8..f6298c47a1 100644 --- a/linuxthreads/pt-machine.c +++ b/linuxthreads/pt-machine.c @@ -19,4 +19,7 @@ #define PT_EI +extern long int testandset (int *spinlock); +extern int __compare_and_swap (long int *p, long int oldval, long int newval); + #include diff --git a/linuxthreads/ptfork.c b/linuxthreads/ptfork.c index deb347fe29..564f8d7c75 100644 --- a/linuxthreads/ptfork.c +++ b/linuxthreads/ptfork.c @@ -20,6 +20,7 @@ #include #include "pthread.h" #include "internals.h" +#include struct handler_list { void (*handler)(void); diff --git a/linuxthreads/rwlock.c b/linuxthreads/rwlock.c index 635f4655df..6af57cdff0 100644 --- a/linuxthreads/rwlock.c +++ b/linuxthreads/rwlock.c @@ -19,6 +19,7 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include #include #include #include diff --git a/linuxthreads/specific.c b/linuxthreads/specific.c index 10697af7d4..a7fa8ff5b7 100644 --- a/linuxthreads/specific.c +++ b/linuxthreads/specific.c @@ -20,6 +20,8 @@ #include "pthread.h" #include "internals.h" #include "spinlock.h" +#include + /* Table of keys. */ diff --git a/linuxthreads/sysdeps/alpha/pspinlock.c b/linuxthreads/sysdeps/alpha/pspinlock.c index 0d871b4174..574c63884c 100644 --- a/linuxthreads/sysdeps/alpha/pspinlock.c +++ b/linuxthreads/sysdeps/alpha/pspinlock.c @@ -19,6 +19,7 @@ #include #include +#include "internals.h" /* This implementation is similar to the one used in the Linux kernel. diff --git a/linuxthreads/sysdeps/arm/pspinlock.c b/linuxthreads/sysdeps/arm/pspinlock.c index a56881adfd..010ad33259 100644 --- a/linuxthreads/sysdeps/arm/pspinlock.c +++ b/linuxthreads/sysdeps/arm/pspinlock.c @@ -19,6 +19,7 @@ #include #include +#include "internals.h" int diff --git a/linuxthreads/sysdeps/hppa/pspinlock.c b/linuxthreads/sysdeps/hppa/pspinlock.c index 1b1511fba8..6a858bff1f 100644 --- a/linuxthreads/sysdeps/hppa/pspinlock.c +++ b/linuxthreads/sysdeps/hppa/pspinlock.c @@ -19,7 +19,7 @@ #include #include - +#include "internals.h" int __pthread_spin_lock (pthread_spinlock_t *lock) diff --git a/linuxthreads/sysdeps/i386/pspinlock.c b/linuxthreads/sysdeps/i386/pspinlock.c index 426e63a70c..5d242388aa 100644 --- a/linuxthreads/sysdeps/i386/pspinlock.c +++ b/linuxthreads/sysdeps/i386/pspinlock.c @@ -19,7 +19,7 @@ #include #include - +#include "internals.h" /* This implementation is similar to the one used in the Linux kernel. But the kernel is byte instructions for the memory access. This is diff --git a/linuxthreads/sysdeps/ia64/pspinlock.c b/linuxthreads/sysdeps/ia64/pspinlock.c index ada28bd9f0..174e38d59e 100644 --- a/linuxthreads/sysdeps/ia64/pspinlock.c +++ b/linuxthreads/sysdeps/ia64/pspinlock.c @@ -20,7 +20,7 @@ #include #include - +#include "internals.h" /* This implementation is inspired by the implementation used in the Linux kernel. */ diff --git a/linuxthreads/sysdeps/m68k/pspinlock.c b/linuxthreads/sysdeps/m68k/pspinlock.c index 994adc883c..38e490fbe6 100644 --- a/linuxthreads/sysdeps/m68k/pspinlock.c +++ b/linuxthreads/sysdeps/m68k/pspinlock.c @@ -19,6 +19,7 @@ #include #include +#include "internals.h" int diff --git a/linuxthreads/sysdeps/mips/pspinlock.c b/linuxthreads/sysdeps/mips/pspinlock.c index 7df3040bda..ab73d1dd40 100644 --- a/linuxthreads/sysdeps/mips/pspinlock.c +++ b/linuxthreads/sysdeps/mips/pspinlock.c @@ -21,7 +21,7 @@ #include #include #include - +#include "internals.h" #if (_MIPS_ISA >= _MIPS_ISA_MIPS2) diff --git a/linuxthreads/sysdeps/powerpc/pspinlock.c b/linuxthreads/sysdeps/powerpc/pspinlock.c index 77cad0c8af..80e2727dfe 100644 --- a/linuxthreads/sysdeps/powerpc/pspinlock.c +++ b/linuxthreads/sysdeps/powerpc/pspinlock.c @@ -20,7 +20,7 @@ #include #include #include - +#include "internals.h" int __pthread_spin_lock (pthread_spinlock_t *lock) diff --git a/linuxthreads/sysdeps/s390/pspinlock.c b/linuxthreads/sysdeps/s390/pspinlock.c index 08231bfcb5..eeca51fd9d 100644 --- a/linuxthreads/sysdeps/s390/pspinlock.c +++ b/linuxthreads/sysdeps/s390/pspinlock.c @@ -20,7 +20,7 @@ #include #include - +#include "internals.h" /* This implementation is similar to the one used in the Linux kernel. But the kernel is byte instructions for the memory access. This is diff --git a/linuxthreads/sysdeps/sh/pspinlock.c b/linuxthreads/sysdeps/sh/pspinlock.c index be9fc803fc..2da3bc42d4 100644 --- a/linuxthreads/sysdeps/sh/pspinlock.c +++ b/linuxthreads/sysdeps/sh/pspinlock.c @@ -19,7 +19,7 @@ #include #include - +#include "internals.h" int __pthread_spin_lock (pthread_spinlock_t *lock) diff --git a/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c b/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c index 1788d7af33..be118170d3 100644 --- a/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c +++ b/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c @@ -19,7 +19,7 @@ #include #include - +#include "internals.h" /* This implementation is similar to the one used in the Linux kernel. */ int diff --git a/linuxthreads/sysdeps/sparc/sparc32/sparcv9/pspinlock.c b/linuxthreads/sysdeps/sparc/sparc32/sparcv9/pspinlock.c index 99ffdc0338..a76265021d 100644 --- a/linuxthreads/sysdeps/sparc/sparc32/sparcv9/pspinlock.c +++ b/linuxthreads/sysdeps/sparc/sparc32/sparcv9/pspinlock.c @@ -19,6 +19,7 @@ #include #include +#include "internals.h" /* This implementation is similar to the one used in the Linux kernel. */ diff --git a/linuxthreads/sysdeps/sparc/sparc64/pspinlock.c b/linuxthreads/sysdeps/sparc/sparc64/pspinlock.c index 1b7fa15783..2106e4441b 100644 --- a/linuxthreads/sysdeps/sparc/sparc64/pspinlock.c +++ b/linuxthreads/sysdeps/sparc/sparc64/pspinlock.c @@ -19,7 +19,7 @@ #include #include - +#include "internals.h" /* This implementation is similar to the one used in the Linux kernel. */ int diff --git a/linuxthreads/weaks.c b/linuxthreads/weaks.c index 163f23282d..948b893095 100644 --- a/linuxthreads/weaks.c +++ b/linuxthreads/weaks.c @@ -26,6 +26,7 @@ extern int __pthread_return_0 (void); extern int __pthread_return_1 (void); extern void __pthread_return_void (void); +extern void weak_function pthread_exit (void *__retval); /* Those are pthread functions which return 0 if successful. */ weak_alias (__pthread_return_0, BP_SYM (__libc_pthread_attr_init_2_1)) -- cgit v1.2.3