* ctype/ctype.h: Pretty print.
This commit is contained in:
Ulrich Drepper 1999-10-08 22:25:13 +00:00
parent 0f5219d4fa
commit c813f986d0
4 changed files with 25 additions and 17 deletions

View File

@ -1,5 +1,7 @@
1999-10-08 Ulrich Drepper <drepper@cygnus.com> 1999-10-08 Ulrich Drepper <drepper@cygnus.com>
* ctype/ctype.h: Pretty print.
* po/cs.po: Fix typos. * po/cs.po: Fix typos.
* nis/nss_nisplus/nisplus-parser.c (_nss_nisplus_parse_spent): Fix * nis/nss_nisplus/nisplus-parser.c (_nss_nisplus_parse_spent): Fix

View File

@ -1,3 +1,9 @@
1999-10-08 Ulrich Drepper <drepper@cygnus.com>
* manager.c (__pthread_manager) [REQ_POST]: Use __new_sem_post
directly instead of calling sem_post which should not be necessary
but is faster and might help in some case to work around problems.
1999-10-08 Andreas Schwab <schwab@suse.de> 1999-10-08 Andreas Schwab <schwab@suse.de>
* sysdeps/pthread/Subdirs: New file. * sysdeps/pthread/Subdirs: New file.

View File

@ -159,7 +159,7 @@ int __pthread_manager(void *arg)
} }
break; break;
case REQ_POST: case REQ_POST:
sem_post(request.req_args.post); __new_sem_post(request.req_args.post);
break; break;
case REQ_DEBUG: case REQ_DEBUG:
/* Make gdb aware of new thread and gdb will restart the /* Make gdb aware of new thread and gdb will restart the