mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
Update.
* internals.h: Fix parameter type for __pthread_clock_gettime and __pthread_clock_settime.
This commit is contained in:
parent
3b5c1b57d3
commit
18ac1129d1
@ -8,6 +8,8 @@
|
||||
* manager.c: Likewise.
|
||||
* ptclock_gettime.c: New file.
|
||||
* ptclock_settime.c: New file.
|
||||
* internals.h: Fix parameter type for __pthread_clock_gettime and
|
||||
__pthread_clock_settime.
|
||||
|
||||
* sysdeps/i386/i586/ptclock_gettime.c: Removed.
|
||||
* sysdeps/i386/i586/ptclock_settime.c: Removed.
|
||||
|
@ -510,8 +510,8 @@ 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);
|
||||
|
||||
extern int __pthread_clock_gettime (unsigned long long int freq, struct timespec *tp);
|
||||
extern void __pthread_clock_settime (unsigned long long int offset);
|
||||
extern int __pthread_clock_gettime (hp_timing_t freq, struct timespec *tp);
|
||||
extern void __pthread_clock_settime (hp_timing_t offset);
|
||||
|
||||
|
||||
/* Global pointers to old or new suspend functions */
|
||||
|
Loading…
Reference in New Issue
Block a user