diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-24 21:44:00 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-24 21:44:00 +0000 |
commit | 797defb4d7fec70afbd58f8dbb49ed0a119518a3 (patch) | |
tree | ce7fd6e85fde2e52e3fa2a97f6f2210090182686 /libpthread | |
parent | 9ec6519d8521b17dc5f4f8bfd0d7cdc8e8a9e237 (diff) |
Get rid of a shadow warning
Diffstat (limited to 'libpthread')
-rw-r--r-- | libpthread/linuxthreads.old/internals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpthread/linuxthreads.old/internals.h b/libpthread/linuxthreads.old/internals.h index b06ea1993..e82eddae1 100644 --- a/libpthread/linuxthreads.old/internals.h +++ b/libpthread/linuxthreads.old/internals.h @@ -490,11 +490,11 @@ extern void __pthread_kill_other_threads_np __P ((void)); 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); +extern int __pthread_timedsuspend_old(pthread_descr self, const struct timespec *abstime); 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); +extern int __pthread_timedsuspend_new(pthread_descr self, const struct timespec *abstime); extern void __pthread_wait_for_restart_signal(pthread_descr self); |