-
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.
from Thread.async_interrupt_timing to Thread.handle_interrupt, from Thread.async_interrupted? to Thread.pending_interrupt?. Also rename option from `defer' to `never'. [ruby-core:51074] [ruby-trunk - Feature ruby#6762] * vm_core.c, thread.c: rename functions and data structure `async_errinfo' to `pending_interrupt'. * thread.c: add global variables sym_immediate, sym_on_blocking and sym_never. * cont.c, process.c, vm.c, signal.c: ditto. * lib/sync.rb, lib/thread.rb: catch up this renaming. * test/ruby/test_thread.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38577 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
10 changed files
with
208 additions
and
170 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,23 @@ | ||
Sun Dec 23 19:09:16 2012 Koichi Sasada <[email protected]> | ||
|
||
* thread.c: rename methods: | ||
from Thread.async_interrupt_timing to Thread.handle_interrupt, | ||
from Thread.async_interrupted? to Thread.pending_interrupt?. | ||
Also rename option from `defer' to `never'. | ||
[ruby-core:51074] [ruby-trunk - Feature #6762] | ||
|
||
* vm_core.c, thread.c: rename functions and data structure | ||
`async_errinfo' to `pending_interrupt'. | ||
|
||
* thread.c: add global variables sym_immediate, sym_on_blocking and | ||
sym_never. | ||
|
||
* cont.c, process.c, vm.c, signal.c: ditto. | ||
|
||
* lib/sync.rb, lib/thread.rb: catch up this renaming. | ||
|
||
* test/ruby/test_thread.rb: ditto. | ||
|
||
Sun Dec 23 17:57:30 2012 Nobuyoshi Nakada <[email protected]> | ||
|
||
* lib/profiler.rb (Profiler__::PROFILE_PROC, print_profile): store | ||
|
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
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
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
Oops, something went wrong.