diff options
author | Christopher Faylor <me@cgf.cx> | 2011-11-23 18:56:57 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2011-11-23 18:56:57 +0000 |
commit | 9f65451e3e9b5a3a5c7c35343daee24a09d1d3a2 (patch) | |
tree | 778e4c4965103ae07c865747fa27c0f7ae419f88 /winsup/cygwin/fhandler_fifo.cc | |
parent | cc07096c5c951629a3dad84b5f37d4d3ce3af8cc (diff) | |
download | cygnal-9f65451e3e9b5a3a5c7c35343daee24a09d1d3a2.tar.gz cygnal-9f65451e3e9b5a3a5c7c35343daee24a09d1d3a2.tar.bz2 cygnal-9f65451e3e9b5a3a5c7c35343daee24a09d1d3a2.zip |
* fhandler.h (fhandler_pipe::create): Rename from the misnamed
"create_selectable". Change return to DWORD.
(fhandler_pty_common::pipesize): New constant.
* fhandler_fifo.cc (fhandler_fifo::fhandler_fifo): Reflect create_selectable
name change.
* miscfuncs.cc (CreatePipeOverlapped): Ditto.
* pipe.cc (fhandler_pipe::create): Ditto.
(fhandler_pipe::create): Rename from the misnamed "create_selectable". Return
DWORD. Only set pipe size to default when it is passed in as zero.
* fhandler_tty.cc (fhandler_pty_master::setup): Ditto. Use
fhandler_pty_common::pipesize rather than a raw constant.
* tty.cc (tty::not_allocated): Ditto.
* sigproc.cc (sigproc_init): Use create_selectable to create the signal pipe to
get a more appropriate message based pipe.
Diffstat (limited to 'winsup/cygwin/fhandler_fifo.cc')
-rw-r--r-- | winsup/cygwin/fhandler_fifo.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_fifo.cc b/winsup/cygwin/fhandler_fifo.cc index 0b1b7b562..a7aecef96 100644 --- a/winsup/cygwin/fhandler_fifo.cc +++ b/winsup/cygwin/fhandler_fifo.cc @@ -34,7 +34,7 @@ fhandler_fifo::fhandler_fifo (): #define fnevent(w) fifo_name (npbuf, w "-event") #define fnpipe() fifo_name (npbuf, "fifo") #define create_pipe(r, w) \ - fhandler_pipe::create_selectable (sa_buf, (r), (w), 0, fnpipe (), open_mode) + fhandler_pipe::create (sa_buf, (r), (w), 0, fnpipe (), open_mode) char * fhandler_fifo::fifo_name (char *buf, const char *what) |