1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
* sysdeps/alpha/dl-machine.h (RTLD_START):Rewrite for new init
	function interface.  Patch by Richard Henderson <rth@cygnus.com>.
This commit is contained in:
Ulrich Drepper
2000-04-15 17:15:10 +00:00
parent a5a6f9262e
commit ef187474bc
9 changed files with 219 additions and 290 deletions

View File

@@ -25,3 +25,9 @@ static inline void suspend(pthread_descr self)
{
__pthread_suspend(self); /* see pthread.c */
}
static inline int timedsuspend(pthread_descr self,
const struct timespec *abstime)
{
return __pthread_timedsuspend(self, abstime); /* see pthread.c */
}