diff options
author | Andreas Jaeger <aj@suse.de> | 2001-05-21 17:38:30 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-05-21 17:38:30 +0000 |
commit | 0bc93a2fb1ab0b29988199bfe85fb73a2bacbfe7 (patch) | |
tree | 5ad4fd19aadc293938df24d843121a40318c1344 /manual/terminal.texi | |
parent | be594011d008677cf9679f4a10fdd10ce74c94fb (diff) | |
download | glibc-0bc93a2fb1ab0b29988199bfe85fb73a2bacbfe7.zip glibc-0bc93a2fb1ab0b29988199bfe85fb73a2bacbfe7.tar.gz glibc-0bc93a2fb1ab0b29988199bfe85fb73a2bacbfe7.tar.bz2 |
Update.
2001-05-21 Andreas Jaeger <aj@suse.de>
* locale/programs/ld-collate.c (handle_ellipsis): Fix message.
Patch by Philipp Thomas <pthomas@suse.de>.
Diffstat (limited to 'manual/terminal.texi')
-rw-r--r-- | manual/terminal.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manual/terminal.texi b/manual/terminal.texi index ae8158e..50e221a 100644 --- a/manual/terminal.texi +++ b/manual/terminal.texi @@ -1734,12 +1734,12 @@ The @var{filedes} is not associated with a terminal device. The @code{tcdrain} function waits until all queued output to the terminal @var{filedes} has been transmitted. -This function is a cancelation point in multi-threaded programs. This +This function is a cancellation point in multi-threaded programs. This is a problem if the thread allocates some resources (like memory, file descriptors, semaphores or whatever) at the time @code{tcdrain} is called. If the thread gets canceled these resources stay allocated until the program ends. To avoid this calls to @code{tcdrain} should be -protected using cancelation handlers. +protected using cancellation handlers. @c ref pthread_cleanup_push / pthread_cleanup_pop The return value is normally zero. In the event of an error, a value @@ -1964,11 +1964,11 @@ error conditions are defined for this function: @item EBADF The @var{filedes} argument is not a valid file descriptor. -@item ENINVAL +@item EINVAL The @var{filedes} argument is not associated with a master pseudo-terminal device. -@item EACCESS +@item EACCES The slave pseudo-terminal device corresponding to the master associated with @var{filedes} could not be accessed. @end table |