1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

NEWS: add note about Fiddle GVL release

* NEWS: note Fiddle GVL release [Feature #11607]
* ext/fiddle/function.c (Init_fiddle_function): document above, too

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53036 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
normal 2015-12-11 07:43:09 +00:00
parent 4973efd7ca
commit a26d09da85
2 changed files with 6 additions and 1 deletions

3
NEWS
View file

@ -270,6 +270,9 @@ with all sufficient information, see the ChangeLog file.
* Rake * Rake
* Rake is removed from stdlib. [Feature #11025] * Rake is removed from stdlib. [Feature #11025]
* Fiddle
* Fiddle::Function#call releases the GVL. [Feature #11607]
=== Built-in global variables compatibility issues === Built-in global variables compatibility issues
* $SAFE * $SAFE

View file

@ -272,7 +272,9 @@ Init_fiddle_function(void)
/* /*
* Document-method: call * Document-method: call
* *
* Calls the constructed Function, with +args+ * Calls the constructed Function, with +args+.
* Caller must ensure the underlying function is called in a
* thread-safe manner if running in a multi-threaded process.
* *
* For an example see Fiddle::Function * For an example see Fiddle::Function
* *