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

* internal.h: add comments (cautions).

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32497 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2011-07-10 12:52:03 +00:00
parent 7506a580fe
commit ce698d4c0d
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sun Jul 10 21:51:29 2011 Koichi Sasada <ko1@atdot.net>
* internal.h: add comments (cautions).
Sun Jul 10 20:59:38 2011 Shota Fukumori <sorah@tubusu.net>
* lib/test/unit.rb: Add new class variable `@@testfile_prefix`.

View file

@ -200,9 +200,14 @@ void Init_prelude(void);
#endif
const char *rb_objspace_data_type_name(VALUE obj);
/* experimental. these APIs can be changed. */
/* Temporary. This API will be removed (renamed). */
VALUE rb_thread_io_blocking_region(rb_blocking_function_t *func, void *data1, int fd);
/* experimental.
* These APIs can be changed on Ruby 1.9.4 or later.
* We will change these APIs (spac, name and so on) if there are something wrong.
* If you use these APIs, catch up future changes.
*/
void *rb_thread_call_with_gvl(void *(*func)(void *), void *data1);
VALUE rb_thread_call_without_gvl(
rb_blocking_function_t *func, void *data1,