Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2011-11-23 22:56:57 +0400
committerChristopher Faylor <me@cgf.cx>2011-11-23 22:56:57 +0400
commit9f65451e3e9b5a3a5c7c35343daee24a09d1d3a2 (patch)
tree778e4c4965103ae07c865747fa27c0f7ae419f88 /winsup/cygwin/tty.cc
parentcc07096c5c951629a3dad84b5f37d4d3ce3af8cc (diff)
* 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/tty.cc')
-rw-r--r--winsup/cygwin/tty.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/winsup/cygwin/tty.cc b/winsup/cygwin/tty.cc
index 095c5b5df..829d773aa 100644
--- a/winsup/cygwin/tty.cc
+++ b/winsup/cygwin/tty.cc
@@ -158,9 +158,10 @@ tty::not_allocated (HANDLE& r, HANDLE& w)
then it exists although we may not have privileges to actually use it. */
char pipename[sizeof("ptyNNNN-from-master")];
__small_sprintf (pipename, "pty%d-from-master", get_unit ());
- /* fhandler_pipe::create_selectable returns 0 when creation succeeds */
- return fhandler_pipe::create_selectable (&sec_none, &r, &w, 128 * 1024,
- pipename, 0) == 0;
+ /* fhandler_pipe::create returns 0 when creation succeeds */
+ return fhandler_pipe::create (&sec_none, &r, &w,
+ fhandler_pty_common::pipesize, pipename,
+ 0) == 0;
}
bool