summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-22 00:24:45 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-22 00:24:45 +0000
commit3381bd94d175bc5cc369bb3aeb210be24da49d3f (patch)
treed907fedca56f5dd3d3da51a7fd1201c884e5d837
parent275c6951cc2cda02810d5f023e3d61dc10f3984d (diff)
* README.EXT: translated README.EXT.ja
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--README.EXT4
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index cbe4d58ca3..813344744b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Jun 22 09:22:32 2008 URABE Shyouhei <shyouhei@ruby-lang.org>
+
+ * README.EXT: translated README.EXT.ja
+
Sun Jun 22 00:42:02 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (rb_w32_osid, rb_w32_osver, CreateChild): XP is
diff --git a/README.EXT b/README.EXT
index daf67a5038..509bffba32 100644
--- a/README.EXT
+++ b/README.EXT
@@ -458,6 +458,10 @@ function to free the pointer allocation. If this is -1, the pointer
will be just freed. The functions mark and free will be called from
garbage collector.
+These mark / free functions are invoked during GC execution. No
+object allocations are allowed during it, so do not allocate ruby
+objects inside them.
+
You can allocate and wrap the structure in one step.
Data_Make_Struct(klass, type, mark, free, sval)