-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* gc.c (gc_sweep): also adjust heaps_limits when free unused heap
page. [ruby-core:00526] * io.c (io_fflush): condition to retry can occur. * io.c (io_write): returned 0 wrongly if no error occurred. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2947 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
4 changed files
with
31 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
Wed Oct 9 07:11:25 2002 Nobuyoshi Nakada <[email protected]> | ||
|
||
* gc.c (gc_sweep): also adjust heaps_limits when free unused heap | ||
page. [ruby-core:00526] | ||
|
||
* io.c (io_fflush): condition to retry can occur. | ||
|
||
* io.c (io_write): returned 0 wrongly if no error occurred. | ||
|
||
Tue Oct 8 14:19:07 2002 Nobuyoshi Nakada <[email protected]> | ||
|
||
* io.c (io_write): must check returned value from fwrite() before | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -946,6 +946,7 @@ gc_sweep() | |
else { | ||
if (i != j) { | ||
heaps[j] = heaps[i]; | ||
heaps_limits[j] = heaps_limits[i]; | ||
} | ||
j++; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#define RUBY_VERSION "1.7.3" | ||
#define RUBY_RELEASE_DATE "2002-10-08" | ||
#define RUBY_RELEASE_DATE "2002-10-09" | ||
#define RUBY_VERSION_CODE 173 | ||
#define RUBY_RELEASE_CODE 20021008 | ||
#define RUBY_RELEASE_CODE 20021009 |