diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-10-03 07:43:17 -0700 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-10-03 07:43:17 -0700 |
commit | 9de940b59e37677d7347532b98c63f92aa74ec0c (patch) | |
tree | b89d3772053ec56f05902a33675c5c296e303755 /src/sysdep.c | |
parent | 57507bf8b5e37c0d9355aaafbf5abb46998af392 (diff) | |
download | emacs-9de940b59e37677d7347532b98c63f92aa74ec0c.tar.gz |
* src/sysdep.c (flush_pending_output): Remove code, does not do
anything on any platform.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r-- | src/sysdep.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 091b1b1e513..027ebef9576 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -363,22 +363,7 @@ wait_for_termination (int pid) void flush_pending_output (int channel) { -#ifndef DOS_NT - /* If we try this, we get hit with SIGTTIN, because - the child's tty belongs to the child's pgrp. */ -#else -#ifdef TCFLSH - ioctl (channel, TCFLSH, 1); -#else -#ifdef TIOCFLUSH - int zero = 0; - /* 3rd arg should be ignored - but some 4.2 kernels actually want the address of an int - and nonzero means something different. */ - ioctl (channel, TIOCFLUSH, &zero); -#endif -#endif -#endif + /* FIXME: maybe this function should be removed */ } /* Set up the terminal at the other end of a pseudo-terminal that |