mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
* sysdeps/generic/dl-sysdep.h: Add double include protection.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
2003-03-03 Ulrich Drepper <drepper@redhat.com>
|
2003-03-03 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/generic/dl-sysdep.h: Add double include protection.
|
||||||
|
|
||||||
* po/tr.po: Update from translation team.
|
* po/tr.po: Update from translation team.
|
||||||
|
|
||||||
* elf/dl-load.c (_dl_map_object_from_fd): Determine whether there
|
* elf/dl-load.c (_dl_map_object_from_fd): Determine whether there
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2003-03-04 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* pthread_create.c (start_thread): Use THREAD_SETMEM to store
|
||||||
|
result of the thread function.
|
||||||
|
|
||||||
2003-03-03 Ulrich Drepper <drepper@redhat.com>
|
2003-03-03 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/s390/dl-sysdep.h: Removed. The generic
|
* sysdeps/unix/sysv/linux/s390/dl-sysdep.h: Removed. The generic
|
||||||
|
@ -225,7 +225,7 @@ start_thread (void *arg)
|
|||||||
if (setjmp (pd->cancelbuf) == 0)
|
if (setjmp (pd->cancelbuf) == 0)
|
||||||
{
|
{
|
||||||
/* Run the code the user provided. */
|
/* Run the code the user provided. */
|
||||||
pd->result = pd->start_routine (pd->arg);
|
THREAD_SETMEM (pd, result, pd->start_routine (pd->arg));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The thread is exiting now. */
|
/* The thread is exiting now. */
|
||||||
|
Reference in New Issue
Block a user