1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00
* iconvdata/big5hkscs.c: Rewritten.  Regenerate data from the
	official file.
	* iconvdata/TESTS: Add BIG5HKSCS entry.
	* iconvdata/testdata/BIG5HKSCS: New file.
	* iconvdata/testdata/BIG5HKSCS..UTF8: New file.

	* iconvdata/big5.c (BODY for FROM_LOOP): Remove condition which is
	always true.
This commit is contained in:
Ulrich Drepper
2000-08-30 07:38:10 +00:00
parent e4d1a04a3c
commit 47cae281a4
9 changed files with 13036 additions and 34055 deletions

View File

@ -1,3 +1,8 @@
2000-08-30 Ulrich Drepper <drepper@redhat.com>
* manager.c (pthread_allocate_stack): Clear descriptor only if not
mmaped.
2000-08-25 Ulrich Drepper <drepper@redhat.com>
* Makefile: Add rules to build and run unload.

View File

@ -330,6 +330,8 @@ static int pthread_allocate_stack(const pthread_attr_t *attr,
#ifndef THREAD_SELF
__pthread_nonstandard_stacks = 1;
#endif
/* Clear the thread data structure. */
memset (new_thread, '\0', sizeof (*new_thread));
}
else
{
@ -448,8 +450,6 @@ static int pthread_allocate_stack(const pthread_attr_t *attr,
# endif
#endif /* !NEED_SEPARATE_REGISTER_STACK */
}
/* Clear the thread data structure. */
memset (new_thread, '\0', sizeof (*new_thread));
*out_new_thread = new_thread;
*out_new_thread_bottom = new_thread_bottom;
*out_guardaddr = guardaddr;