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:
Ulrich Drepper 2000-11-07 00:43:08 +00:00
parent 1324affa18
commit 632b6761c3
5 changed files with 3404 additions and 3379 deletions

View File

@ -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.

File diff suppressed because it is too large Load Diff

View File

@ -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;

View File

@ -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

View File

@ -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;
}