diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-07-07 03:08:08 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-07-07 03:08:08 +0000 |
commit | 135c75727d44d84422355465a42f8e9c485e8f79 (patch) | |
tree | 26151b1baad611ab4b8664432435dbe727b64c1b | |
parent | c5dad98c41a720a15c9dcc96d3df570cd9e23df3 (diff) |
* cont.c (cont_free): remove mysterious fflush()
introduced at r19890, maybe accidentaly.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51174 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | cont.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Jul 7 12:05:37 2015 Koichi Sasada <[email protected]> + + * cont.c (cont_free): remove mysterious fflush() + introduced at r19890, maybe accidentaly. + Tue Jul 7 11:45:14 2015 Koichi Sasada <[email protected]> * proc.c (rb_method_call): because data->me should be non-NULL, @@ -226,7 +226,7 @@ cont_free(void *ptr) RUBY_FREE_ENTER("cont"); if (ptr) { rb_context_t *cont = ptr; - RUBY_FREE_UNLESS_NULL(cont->saved_thread.stack); fflush(stdout); + RUBY_FREE_UNLESS_NULL(cont->saved_thread.stack); #if FIBER_USE_NATIVE if (cont->type == CONTINUATION_CONTEXT) { /* cont */ |