From 95c85c3ff65c2dfc4b0533f3e285c5ab977a4273 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 18 Dec 2008 14:33:31 +0000 Subject: rdoc update. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20863 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/pty/pty.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'ext') diff --git a/ext/pty/pty.c b/ext/pty/pty.c index ce4acbb29..c44953ca1 100644 --- a/ext/pty/pty.c +++ b/ext/pty/pty.c @@ -450,12 +450,18 @@ pty_close_pty(VALUE assoc) * The value of the block is returned. * master_io and slave_file is closed when return if they are not closed. * - * The filename of the slave is slave_file.path. + * The filename of the slave_file is slave_file.path. + * + * PTY.open {|m, s| + * p m #=> # + * p s #=> # + * p s.path #=> "/dev/pts/1" + * } * * # Change the buffering type in factor command, - * # assuming that it uses stdio for stdout buffering. + * # assuming that factor uses stdio for stdout buffering. * # If IO.pipe is used instead of PTY.open, - * # this deadlocks because factor's stdout is fully buffered. + * # this code deadlocks because factor's stdout is fully buffered. * m, s = PTY.open * system("stty raw", :in=>s) # disable newline conversion. * r, w = IO.pipe -- cgit