summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-29 14:52:32 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-29 14:52:32 +0000
commit139856220957a63c46a290089e6f3e692f95762d (patch)
tree28b7b65bc7b769286366fc1e428e70e8190bf34c
parentf81eabe7ef4ce49b2d946483879e9273802fdace (diff)
downloadruby-139856220957a63c46a290089e6f3e692f95762d.tar.gz
ruby-139856220957a63c46a290089e6f3e692f95762d.tar.xz
ruby-139856220957a63c46a290089e6f3e692f95762d.zip
comment modified.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14784 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 10e8cb9dd..a5a5f9374 100644
--- a/io.c
+++ b/io.c
@@ -545,7 +545,7 @@ io_fflush(rb_io_t *fptr)
l = PIPE_BUF;
}
r = rb_write_internal(fptr->fd, fptr->wbuf+wbuf_off, l);
- /* xxx: Other threads modified wbuf in non-append operation.
+ /* xxx: Other threads may modify wbuf.
* A lock is required, definitely. */
rb_io_check_closed(fptr);
if (fptr->wbuf_len <= r) {