1998-06-03  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* libc.map: Add fattach, fdetach, getmsg, getpmsg, makecontext,
	putmsg, putpmsg, scalbln, scalblnf, scalblnl, strtoimax,
	strtoumax, swapcontext, waitid, wcsnlen, wcstoimax, wcstoumax with
	version GLIBC_2.1.

1998-06-04  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* manual/lang.texi (Range of Type): Change @end table->@end vtable.
	(Floating Point Parameters): Likewise.
This commit is contained in:
Ulrich Drepper 1998-06-04 12:18:38 +00:00
parent 7ba4fcfcf2
commit c6bd526f49
6 changed files with 32 additions and 14 deletions

View File

@ -1,3 +1,15 @@
1998-06-03 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* libc.map: Add fattach, fdetach, getmsg, getpmsg, makecontext,
putmsg, putpmsg, scalbln, scalblnf, scalblnl, strtoimax,
strtoumax, swapcontext, waitid, wcsnlen, wcstoimax, wcstoumax with
version GLIBC_2.1.
1998-06-04 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/lang.texi (Range of Type): Change @end table->@end vtable.
(Floating Point Parameters): Likewise.
1998-06-01 Gordon Matzigkeit <gord@profitpress.com> 1998-06-01 Gordon Matzigkeit <gord@profitpress.com>
* hurd/Makefile (routines): Add cthreads. * hurd/Makefile (routines): Add cthreads.

View File

@ -543,14 +543,15 @@ GLIBC_2.1 {
ecb_crypt; endutxent; ecb_crypt; endutxent;
# f* # f*
fattach; fdetach;
fgetpos64; fmtmsg; fopen64; freopen64; fseeko; fseeko64; fsetpos64; fgetpos64; fmtmsg; fopen64; freopen64; fseeko; fseeko64; fsetpos64;
fstatfs64; fstatvfs; fstatvfs64; ftello; ftello64; ftruncate64; ftw64; fstatfs64; fstatvfs; fstatvfs64; ftello; ftello64; ftruncate64; ftw64;
fopen; fclose; fdopen; fopen; fclose; fdopen;
# g* # g*
gai_strerror; getcontext; getdate; getdate_r; getitimer; getnameinfo; gai_strerror; getcontext; getdate; getdate_r; getitimer; getmsg;
getnetname; getpt; getrlimit64; getrusage; gettimeofday; getnameinfo; getnetname; getpmsg; getpt; getrlimit64; getrusage;
getutxent; getutxid; getutxline; grantpt; gettimeofday; getutxent; getutxid; getutxline; grantpt;
# New special glibc functions. # New special glibc functions.
gnu_get_libc_release; gnu_get_libc_version; gnu_get_libc_release; gnu_get_libc_version;
@ -573,7 +574,7 @@ GLIBC_2.1 {
lockf64; lseek64; lockf64; lseek64;
# m* # m*
mmap64; mempcpy; makecontext; mmap64; mempcpy;
# n* # n*
netname2host; netname2user; nftw; nftw64; netname2host; netname2user; nftw; nftw64;
@ -583,21 +584,21 @@ GLIBC_2.1 {
# p* # p*
passwd2des; pread; pread64; printf_size; printf_size_info; passwd2des; pread; pread64; printf_size; printf_size_info;
ptsname; ptsname_r; pututxline; pwrite; pwrite64; ptsname; ptsname_r; putmsg; putpmsg; pututxline; pwrite; pwrite64;
# r* # r*
readdir64; readdir64_r; rtime; readdir64; readdir64_r; rtime;
# s* # s*
scalbln; scalblnf; scalblnl;
scandir64; setitimer; setrlimit64; setutxent; settimeofday; scandir64; setitimer; setrlimit64; setutxent; settimeofday;
sighold; sigrelse; sigignore; sigset; statfs64; statvfs; statvfs64; sighold; sigrelse; sigignore; sigset; statfs64; statvfs; statvfs64;
strcasestr; sysv_signal; strcasestr; strtoimax; strtoumax; strverscmp; strfxtime;
swapcontext; sysv_signal;
# New RT signal functions. # New RT signal functions.
sigqueue; sigtimedwait; sigwaitinfo; sigqueue; sigtimedwait; sigwaitinfo;
strverscmp; strfxtime;
# t* # t*
tcgetsid; tdestroy; tmpfile64; truncate64; tcgetsid; tdestroy; tmpfile64; truncate64;
@ -608,8 +609,9 @@ GLIBC_2.1 {
versionsort; versionsort64; versionsort; versionsort64;
# w* # w*
wait4; wcscasecmp; wcsncasecmp; wcstoll; wcstoull; wcswcs; wmemrtombs; wait4; waitid; wcscasecmp; wcsncasecmp; wcsnlen; wcstoll;
wmemrtowcs; wordexp; wordfree; wcstoimax; wcstoumax; wcstoull; wcswcs; wmemrtombs; wmemrtowcs;
wordexp; wordfree;
# x* # x*
xdecrypt; xdr_authdes_cred; xdr_authdes_verf; xdecrypt; xdr_authdes_cred; xdr_authdes_verf;

View File

@ -1,3 +1,7 @@
1998-06-03 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* attr.c: Correct typo.
1998-05-01 Ulrich Drepper <drepper@cygnus.com> 1998-05-01 Ulrich Drepper <drepper@cygnus.com>
* manager.c (pthread_free): Unmap guard before the stack. * manager.c (pthread_free): Unmap guard before the stack.

View File

@ -181,7 +181,7 @@ int __pthread_attr_getstackaddr(const pthread_attr_t *attr, void **stackaddr)
*stackaddr = attr->stackaddr; *stackaddr = attr->stackaddr;
return 0; return 0;
} }
weak_alias (__pthread_attr_getstackaddr, pthread_attr_etstackaddr) weak_alias (__pthread_attr_getstackaddr, pthread_attr_getstackaddr)
int __pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize) int __pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize)
{ {

View File

@ -853,7 +853,7 @@ long long int} and @code{unsigned long long int}, respectively.
This is the maximum value that can be represented by a @code{wchar_t}. This is the maximum value that can be represented by a @code{wchar_t}.
@xref{Wide Char Intro}. @xref{Wide Char Intro}.
@end table @end vtable
The header file @file{limits.h} also defines some additional constants The header file @file{limits.h} also defines some additional constants
that parameterize various operating system and file system limits. These that parameterize various operating system and file system limits. These
@ -1218,7 +1218,7 @@ These are similar to @code{FLT_EPSILON}, but for the data types
@code{double} and @code{long double}, respectively. The type of the @code{double} and @code{long double}, respectively. The type of the
macro's value is the same as the type it describes. The values are not macro's value is the same as the type it describes. The values are not
supposed to be greater than @code{1E-9}. supposed to be greater than @code{1E-9}.
@end table @end vtable
@node IEEE Floating Point @node IEEE Floating Point
@subsubsection IEEE Floating Point @subsubsection IEEE Floating Point

View File

@ -330,7 +330,7 @@ TRANS particular protocol being used by the socket. @xref{Socket Options}. */
#ifdef EPROTONOSUPPORT #ifdef EPROTONOSUPPORT
/* /*
TRANS The socket domain does not support the requested communications protocol TRANS The socket domain does not support the requested communications protocol
TRANS (perhaps because the requested protocol is completely invalid.) TRANS (perhaps because the requested protocol is completely invalid).
TRANS @xref{Creating a Socket}. */ TRANS @xref{Creating a Socket}. */
[ERR_REMAP (EPROTONOSUPPORT)] = N_("Protocol not supported"), [ERR_REMAP (EPROTONOSUPPORT)] = N_("Protocol not supported"),
#endif #endif