2000-05-21  Ulrich Drepper  <drepper@redhat.com>

	* manual/memory.texi: Document memory handling functions.
	* manual/time.texi: Document timespec and friends.
	* manual/conf.texi: Fix references.
	* manual/ctype.texi: Likewise.
	* manual/errno.texi: Likewise.
	* manual/intro.texi: Likewise.
	* manual/locale.texi: Likewise.
	* manual/sysinfo.texi: Likewise.
	Patches by Bryan Henderson <bryanh@giraffe-data.com>.
This commit is contained in:
Ulrich Drepper 2000-05-21 21:22:28 +00:00
parent 371071d573
commit 99a206167b
9 changed files with 1059 additions and 430 deletions

View File

@ -1,3 +1,15 @@
2000-05-21 Ulrich Drepper <drepper@redhat.com>
* manual/memory.texi: Document memory handling functions.
* manual/time.texi: Document timespec and friends.
* manual/conf.texi: Fix references.
* manual/ctype.texi: Likewise.
* manual/errno.texi: Likewise.
* manual/intro.texi: Likewise.
* manual/locale.texi: Likewise.
* manual/sysinfo.texi: Likewise.
Patches by Bryan Henderson <bryanh@giraffe-data.com>.
2000-05-09 Jes Sorensen <jes@linuxcare.com>
* sysdeps/ia64/dl-machine.h: Move DL_SYMBOL_ADDRESS definition to...

View File

@ -366,7 +366,7 @@ Inquire about the parameter corresponding to @code{_POSIX_VERSION}.
@comment POSIX.1
@item _SC_CLK_TCK
Inquire about the parameter corresponding to @code{CLOCKS_PER_SEC};
@pxref{Basic CPU Time}.
@pxref{CPU Time}.
@comment unistd.h
@comment GNU

View File

@ -1,4 +1,4 @@
@node Character Handling, String and Array Utilities, Memory Allocation, Top
@node Character Handling, String and Array Utilities, Memory, Top
@c %MENU% Character testing and conversion functions
@chapter Character Handling

View File

@ -1,4 +1,4 @@
@node Error Reporting, Memory Allocation, Introduction, Top
@node Error Reporting, Memory, Introduction, Top
@chapter Error Reporting
@c %MENU% How library functions report errors
@cindex error reporting

View File

@ -572,10 +572,11 @@ debugging mechanism which allows you to put assertions in your code, and
have diagnostic messages printed if the tests fail.
@item
@ref{Memory Allocation}, describes the GNU library's facilities for
dynamic allocation of storage. If you do not know in advance how much
storage your program needs, you can allocate it dynamically instead,
and manipulate it via pointers.
@ref{Memory}, describes the GNU library's facilities for managing and
using virtual and real memory, including dynamic allocation of virtual
memory. If you do not know in advance how much memory your program
needs, you can allocate it dynamically instead, and manipulate it via
pointers.
@item
@ref{Character Handling}, contains information about character

View File

@ -57,7 +57,7 @@ The collating sequence for the local language and character set
Formatting of numbers and currency amounts (@pxref{General Numeric}).
@item
Formatting of dates and times (@pxref{Formatting Date and Time}).
Formatting of dates and times (@pxref{Formatting Calendar Time}).
@item
What language to use for output, including error messages
@ -157,7 +157,7 @@ monetary; see @ref{General Numeric}.
@comment ISO
@item LC_TIME
This category applies to formatting date and time values; see
@ref{Formatting Date and Time}.
@ref{Formatting Calendar Time}.
@comment locale.h
@comment XOPEN
@ -351,7 +351,7 @@ what information is provided by the currently selected locale. This is
how the locale model is meant to work normally.
As an example take the @code{strftime} function, which is meant to nicely
format date and time information (@pxref{Formatting Date and Time}).
format date and time information (@pxref{Formatting Calendar Time}).
Part of the standard information contained in the @code{LC_TIME}
category is the names of the months. Instead of requiring the
programmer to take care of providing the translations the

File diff suppressed because it is too large Load Diff

View File

@ -11,9 +11,8 @@ can make changes.
@menu
* Host Identification:: Determining the name of the machine.
* Hardware/Software Type ID:: Determining the hardware type of the
machine and what operating system it is
running.
* Platform Type:: Determining operating system and basic
machine type
* Filesystem Handling:: Controlling/querying mounts
* System Parameters:: Getting and setting various system parameters
@end menu
@ -216,8 +215,8 @@ each machine.
@end table
@end deftypefun
@node Hardware/Software Type ID
@section Hardware/Software Type Identification
@node Platform Type
@section Platform Type Identification
You can use the @code{uname} function to find out some information about
the type of computer your program is running on. This function and the
@ -308,7 +307,7 @@ possibility.
@node Filesystem Handling
@section Controlling/querying mounts
@section Controlling and Querying Mounts
All files are in filesystems, and before you can access any file, its
filesystem must be mounted. Because of Unix's concept of
@ -337,10 +336,10 @@ gets stored.
@menu
* Mount Information:: What is or could be mounted?
* Mount/Unmount/Remount:: Controlling what is mounted and how
* Mount-Unmount-Remount:: Controlling what is mounted and how
@end menu
@node Mount Information, Mount/Unmount/Remount, , Filesystem Handling
@node Mount Information, Mount-Unmount-Remount, , Filesystem Handling
For some programs it is desirable and necessary to access information
about whether a certain filesystem is mounted and, if it is, where, or
@ -756,7 +755,7 @@ without relying on facilities outside the kernel to keep @file{mtab} up
to date.
@node Mount/Unmount/Remount, , Mount Information, Filesystem Handling
@node Mount-Unmount-Remount, , Mount Information, Filesystem Handling
This section describes the functions for mounting, unmounting, and
remounting filesystems.
@ -1187,7 +1186,7 @@ parameters are:
@item
@code{gethostname}, @code{sethostname} (@xref{Host Identification}.)
@item
@code{uname} (@xref{Hardware/Software Type ID}.)
@code{uname} (@xref{Platform Type}.)
@item
@code{bdflush}
@end itemize

File diff suppressed because it is too large Load Diff