mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 09:43:32 +08:00
Update.
2000-11-06 Ulrich Drepper <drepper@redhat.com> * iconvdata/big5.c: Regenerated after BIG5 charmap change. Patch by Tung-Han Hsieh <thhsieh@twcpro.phys.ntu.edu.tw>. * sysdeps/generic/dl-cache.c (_dl_load_cache_lookup): Fix typo in comparison with new cache magic bytes. Patch by Denis Zaitsev <zzz@cd-club.ru>. 2000-11-03 Bruno Haible <haible@clisp.cons.org> * locale/C-translit.h.in: Update from translit_neutral. * locale/C-translit.h: Regenerated. * intl/tst-translit.c: Update.
This commit is contained in:
parent
1324affa18
commit
632b6761c3
15
ChangeLog
15
ChangeLog
@ -1,3 +1,18 @@
|
||||
2000-11-06 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* iconvdata/big5.c: Regenerated after BIG5 charmap change.
|
||||
Patch by Tung-Han Hsieh <thhsieh@twcpro.phys.ntu.edu.tw>.
|
||||
|
||||
* sysdeps/generic/dl-cache.c (_dl_load_cache_lookup): Fix typo in
|
||||
comparison with new cache magic bytes.
|
||||
Patch by Denis Zaitsev <zzz@cd-club.ru>.
|
||||
|
||||
2000-11-03 Bruno Haible <haible@clisp.cons.org>
|
||||
|
||||
* locale/C-translit.h.in: Update from translit_neutral.
|
||||
* locale/C-translit.h: Regenerated.
|
||||
* intl/tst-translit.c: Update.
|
||||
|
||||
2000-11-04 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* sysdeps/mach/hurd/Dist: Remove clk_tck.c.
|
||||
|
6757
iconvdata/big5.c
6757
iconvdata/big5.c
File diff suppressed because it is too large
Load Diff
@ -41,8 +41,8 @@ main (void)
|
||||
|
||||
TEST ("test", "<<(C) AEss>>");
|
||||
TEST ("test", "<<(C) AEss>>");
|
||||
TEST ("onemore", "1/2*1/2=1/4");
|
||||
TEST ("onemore", "1/2*1/2=1/4");
|
||||
TEST ("onemore", " 1/2 * 1/2 = 1/4 ");
|
||||
TEST ("onemore", " 1/2 * 1/2 = 1/4 ");
|
||||
TEST ("test", "<<(C) AEss>>");
|
||||
|
||||
return result;
|
||||
|
@ -1,3 +1,9 @@
|
||||
2000-11-06 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* cancel.c (pthread_cancel): Always set p_canceled, even if we are
|
||||
not doing it right now.
|
||||
Reported by Kaz Kylheku <kaz@ashi.footprints.net>.
|
||||
|
||||
2000-10-30 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* Examples/ex4.c (main): Don't use exit() to avoid warning with
|
||||
|
@ -65,6 +65,7 @@ int pthread_cancel(pthread_t thread)
|
||||
th = handle->h_descr;
|
||||
|
||||
if (th->p_cancelstate == PTHREAD_CANCEL_DISABLE || th->p_canceled) {
|
||||
th->p_canceled = 1;
|
||||
__pthread_unlock(&handle->h_lock);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user