mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
Update.
2003-03-14 Ulrich Drepper <drepper@redhat.com> * localedata/mn_MN: New file. Contributed by Sanlig Badral <badral@chinggis.com>.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2003-03-14 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* localedata/mn_MN: New file.
|
||||||
|
Contributed by Sanlig Badral <badral@chinggis.com>.
|
||||||
|
|
||||||
2003-01-30 Ulrich Drepper <drepper@redhat.com>
|
2003-01-30 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* Makefile (LOCALES): Add vi_VN.TCVN5712-1.
|
* Makefile (LOCALES): Add vi_VN.TCVN5712-1.
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
2003-03-14 Ulrich Drepper <drepper@redhat.com>
|
2003-03-14 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* pthread_create.c (start_thread): setjmp is expected to return 0.
|
||||||
|
|
||||||
* sysdeps/x86_64/tls.h (THREAD_GETMEM): Mark asms volatile.
|
* sysdeps/x86_64/tls.h (THREAD_GETMEM): Mark asms volatile.
|
||||||
(THREAD_GETMEM_NC): Likewise.
|
(THREAD_GETMEM_NC): Likewise.
|
||||||
|
|
||||||
|
@ -221,7 +221,7 @@ start_thread (void *arg)
|
|||||||
|
|
||||||
/* This is where the try/finally block should be created. For
|
/* This is where the try/finally block should be created. For
|
||||||
compilers without that support we do use setjmp. */
|
compilers without that support we do use setjmp. */
|
||||||
if (setjmp (pd->cancelbuf) == 0)
|
if (__builtin_expect (setjmp (pd->cancelbuf) == 0, 1))
|
||||||
{
|
{
|
||||||
/* Run the code the user provided. */
|
/* Run the code the user provided. */
|
||||||
THREAD_SETMEM (pd, result, pd->start_routine (pd->arg));
|
THREAD_SETMEM (pd, result, pd->start_routine (pd->arg));
|
||||||
|
Reference in New Issue
Block a user