summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-24 12:23:52 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-24 12:23:52 +0000
commit68455d6480d2545447ba65d043da56a3775c91d6 (patch)
treeb09cb1143e085257f0b52d3750baa5af930b75f8 /include
parent686823b721f13a610e933acb3a8c7acf9b0e8292 (diff)
downloadruby-68455d6480d2545447ba65d043da56a3775c91d6.tar.gz
ruby-68455d6480d2545447ba65d043da56a3775c91d6.tar.xz
ruby-68455d6480d2545447ba65d043da56a3775c91d6.zip
comment changed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/io.h b/include/ruby/io.h
index c8c5d7ad5..5a8687ab6 100644
--- a/include/ruby/io.h
+++ b/include/ruby/io.h
@@ -30,10 +30,10 @@ extern "C" {
typedef struct rb_io_t {
int fd; /* file descriptor */
FILE *stdio_file; /* stdio ptr for read/write if available */
- int mode; /* mode flags */
+ int mode; /* mode flags: FMODE_XXXs */
rb_pid_t pid; /* child's pid (for pipes) */
int lineno; /* number of lines read */
- VALUE pathv; /* pathname for file */
+ VALUE pathv; /* pathname for file */
void (*finalize)(struct rb_io_t*,int); /* finalize proc */
char *wbuf; /* wbuf_off + wbuf_len <= wbuf_capa */