diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-09 23:56:17 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-09 23:56:17 +0000 |
| commit | fb82a4b9fe8546aef74029304e00e8312ce3e3a8 (patch) | |
| tree | 98c897ade51a40f84895bc737485e5fa0afafe90 /include/ruby | |
| parent | 5eb49c2c90174d3848750544c53636d5df839437 (diff) | |
| download | ruby-fb82a4b9fe8546aef74029304e00e8312ce3e3a8.tar.gz ruby-fb82a4b9fe8546aef74029304e00e8312ce3e3a8.tar.xz ruby-fb82a4b9fe8546aef74029304e00e8312ce3e3a8.zip | |
* gc.c (STACK_LEVEL_MAX, ruby_stack_length): returns size_t.
[ruby-core:18207]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
| -rw-r--r-- | include/ruby/intern.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h index 243e7015a..acd8d84c6 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -330,7 +330,7 @@ VALUE rb_file_directory_p(VALUE,VALUE); void ruby_set_stack_size(size_t); NORETURN(void rb_memerror(void)); int ruby_stack_check(void); -int ruby_stack_length(VALUE**); +size_t ruby_stack_length(VALUE**); int rb_during_gc(void); void rb_gc_mark_locations(VALUE*, VALUE*); void rb_mark_tbl(struct st_table*); |
