summaryrefslogtreecommitdiff
path: root/include/termios.h
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-11-04 22:52:26 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-11-04 22:52:26 +0000
commit005d20f04dff3665c9533417bdad06d7d208bf9a (patch)
treebfe0aa8c46149f67794cd45a4fdb259c57b521cf /include/termios.h
parentd8059900ddf188607828b12a174b83decade3d61 (diff)
Sync up w/ glibc
Diffstat (limited to 'include/termios.h')
-rw-r--r--include/termios.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/termios.h b/include/termios.h
index 2c66457e2..9698b1fbd 100644
--- a/include/termios.h
+++ b/include/termios.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991,92,93,94,96,97,98,99 Free Software Foundation, Inc.
+/* Copyright (C) 1991,92,93,94,96,97,98,99, 2003 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
@@ -80,8 +80,11 @@ extern void cfmakeraw (struct termios *__termios_p) __THROW;
/* Send zero bits on FD. */
extern int tcsendbreak (int __fd, int __duration) __THROW;
-/* Wait for pending output to be written on FD. */
-extern int tcdrain (int __fd) __THROW;
+/* Wait for pending output to be written on FD.
+
+ This function is a cancellation point and therefore not marked with
+ __THROW. */
+extern int tcdrain (int __fd);
/* Flush pending data on FD.
Values for QUEUE_SELECTOR (TC{I,O,IO}FLUSH) are in <bits/termios.h>. */