1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* elf/dl-load.c: Fix typo in comment.  Add a few more __builtin_expect.
This commit is contained in:
Ulrich Drepper
2002-08-25 19:34:42 +00:00
parent b65d9522d4
commit fd77c3615d
5 changed files with 43 additions and 28 deletions

View File

@ -1,5 +1,9 @@
2002-08-25 Ulrich Drepper <drepper@redhat.com>
* sysdeps/pthread/timer_routines.c (thread_func): Make the
compiler happy by adding a return statement which will never be
reached.
* tst-context.c (main): Cast to long before casting to pointer.
* Examples/ex17.c (main): Use correct format string.

View File

@ -450,6 +450,8 @@ thread_func (void *arg)
forever - but we have to add it for proper nesting. */
pthread_cleanup_pop (1);
/* NOTREACHED */
return NULL;
}