1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00
1999-04-28  Ulrich Drepper  <drepper@cygnus.com>

	* manager.c (pthread_allocate_stack): Optimize initialization of new
	thread descriptor.
This commit is contained in:
Ulrich Drepper
1999-04-28 21:56:46 +00:00
parent fbb9cc9129
commit 390500b147
30 changed files with 199 additions and 233 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1997 Free Software Foundation, Inc.
/* Copyright (C) 1991, 1997, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -22,20 +22,21 @@
/* Real function versions of the non-ANSI ctype functions. */
int
isblank (int c)
__isblank (int c)
{
return __isctype (c, _ISblank);
}
weak_alias (__isblank, isblank)
int
_tolower (int c)
{
return c < -128 || c > 255 ? c : __ctype_tolower[c];
return __ctype_tolower[c];
}
int
_toupper (int c)
{
return c < -128 || c > 255 ? c : __ctype_toupper[c];
return __ctype_toupper[c];
}
int
@ -43,11 +44,14 @@ toascii (int c)
{
return __toascii (c);
}
weak_alias (toascii, __toascii_l)
int
isascii (int c)
{
return __isascii (c);
}
weak_alias (isascii, __isascii_l)
int
@ -55,14 +59,3 @@ __isblank_l (int c, __locale_t l)
{
return __isctype_l (c, _ISblank, l);
}
int
__toascii_l (int c, __locale_t l)
{
return __toascii (c);
}
int
__isascii_l (int c, __locale_t l)
{
return __isascii (c);
}