aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
Commit message (Expand)AuthorAgeFilesLines
* * io.c: add rb_read_internal() as blocking function.ko12007-11-231-11/+29
* * gc.h, vm_core.h: decl of rb_gc_save_machine_context()ko12007-11-201-2/+22
* * io.c (rb_io_close_on_exec_p): new method IO#close_on_exec?.akr2007-11-201-0/+96
* * include/ruby/win32.h win32/win32.c (rb_w32_pipe_exec): use dual fdusa2007-11-201-2/+2
* * include/ruby/io.h (rb_io_t): add tied_io_for_writing member.akr2007-11-201-24/+146
* * io.c (rb_io_each_byte): should update rbuf_off and rbuf_len formatz2007-11-091-2/+2
* * io.c (rb_io_tell, rb_io_seek): check errno too. [ruby-dev:32093]nobu2007-10-251-2/+3
* * io.c (Init_IO): remove obsolete variables: $defout, $deferr.matz2007-10-041-18/+0
* * io.c (rb_io_fdopen): create IO object from fd.nobu2007-09-281-0/+9
* * io.c (rb_io_getline_fast, rb_io_getline_1): set encoding to thenobu2007-09-281-5/+10
* * io.c (io_ungetc): reallocate internal buffer if pushing datamatz2007-09-251-7/+4
* * io.c (popen_exec), process.c (rb_spawn): stop other threads beforenobu2007-09-201-0/+1
* * io.c (rb_io_s_sysopen): should not use alloca for unknowen sizenobu2007-09-121-2/+2
* * io.c (rb_io_getc): forgot to commit rb_enc_mbclen() fix.matz2007-09-061-1/+1
* * io.c (rb_io_each_byte): caused infinite loop. [ruby-dev:31652]matz2007-08-261-3/+5
* * io.c (swallow): removed condition using an unset variable.nobu2007-08-251-7/+9
* * encoding.c: provide basic features for M17N.matz2007-08-251-94/+196
* * array.c (rb_ary_s_try_convert): a new class method to convertmatz2007-08-241-0/+18
* * io.c (rb_io_s_foreach): argument count check before makingmatz2007-08-201-1/+1
* * io.c (argf_readpartial): argf_forward needs argc and argv.nobu2007-08-151-4/+13
* * io.c (ARGF_FORWARD): wrongly compares with current_file withmatz2007-08-151-5/+5
* * io.c (rb_io_initialize, argf_each_line, argf_each_byte): suppressnobu2007-08-151-7/+1
* * io.c (argf_close): always close via method.matz2007-08-141-53/+29
* * io.c (pipe_open): fix for win32 platforms.nobu2007-08-071-5/+4
* * io.c (pipe_open_v, pipe_open_s): separate array and stringnobu2007-08-041-33/+39
* * io.c (rb_f_p): return nil if no argument. [ruby-dev:31285]nobu2007-07-241-1/+1
* * include/ruby: moved public headers.nobu2007-06-101-4/+4
* * io.c (rb_f_p): returns arguments to intervene. [ruby-dev:29736]matz2007-06-051-2/+9
* * error.c (rb_notimplement), io.c (pipe_open): removed definitenobu2007-04-041-1/+1
* * io.c (pipe_open): refined the message of NotImplementedError.nobu2007-04-041-11/+19
* * io.c (pipe_open): raise NotImplementedError for command "-" onnobu2007-04-041-7/+9
* * io.c (popen_exec): should not close close-on-exec FDs.nobu2007-04-041-0/+3
* * file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):nobu2007-02-241-87/+87
* * io.c (rb_f_syscall): Fix buffer overflow with syscallknu2007-02-131-0/+2
* * intern.h: prepare rb_last_status_get() and rb_last_status_set().ko12007-02-051-1/+1
* * eval_thread.c, common.mk: remove eval_thread.c.ko12007-02-051-2/+1
* * io.c (rb_io_getline_fast, rb_io_getline): increase linenonobu2007-01-061-16/+44
* * io.c (argf_read): fix wrong replacement. [ruby-dev:30070]matz2007-01-061-1/+1
* * io.c (rb_io_getline): lineno update condition was wrong.matz2007-01-031-2/+2
* * io.c (ruby_dup): start GC on ENOMEM as well.matz2007-01-031-1/+1
* * ext/stringio/stringio.c (strio_gets): accepts limit argument.matz2006-12-291-99/+132
* * string.c (rb_str_lines): now takes optional argument for thematz2006-10-161-0/+33
* * io.c (rb_io_print): no special handling for nil as well as puts.nobu2006-09-231-10/+3
* * ruby.h (struct RArray): embed small arrays.matz2006-09-021-23/+23
* * file.c (test_identical, rb_file_s_truncate): use RSTRING_PTR andusa2006-08-311-5/+5
* * ruby.h (struct RString): embed small strings.matz2006-08-311-83/+75
* * io.c (io_reopen): STDERR.reopen(open("/dev/tty", "w")) should notakr2006-08-061-5/+3
* * io.c (io_reopen): STDERR.reopen(File.open("/dev/null", "w")) shouldakr2006-08-031-2/+4
* * io.c (io_close): always calls "close" method of the receiver.matz2006-07-271-5/+7
* * io.c (popen_exec): close file descriptors other than standard I/Os.nobu2006-07-031-4/+0