summaryrefslogtreecommitdiffstats
path: root/ext/dl
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-01 01:46:56 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-01 01:46:56 +0000
commit545dfac5d42d1b6951a5db2395bde5247741f568 (patch)
tree350a8efd632ae88772e17eae8e533af36f6db9db /ext/dl
parent3fdf73f236d5a8816df18bf7dbdbd66610d3e427 (diff)
downloadruby-545dfac5d42d1b6951a5db2395bde5247741f568.tar.gz
ruby-545dfac5d42d1b6951a5db2395bde5247741f568.tar.xz
ruby-545dfac5d42d1b6951a5db2395bde5247741f568.zip
* ext/dl/cptr.c (rb_dlptr_to_value) added documentation
* test/dl/test_cptr.rb (test_to_value) testing DL::CPtr#to_value git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dl')
-rw-r--r--ext/dl/cptr.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/dl/cptr.c b/ext/dl/cptr.c
index 488b31202..555236f2a 100644
--- a/ext/dl/cptr.c
+++ b/ext/dl/cptr.c
@@ -197,6 +197,11 @@ rb_dlptr_to_i(VALUE self)
return PTR2NUM(data->ptr);
}
+/*
+ * call-seq: to_value
+ *
+ * Cast this CPtr to a ruby object.
+ */
VALUE
rb_dlptr_to_value(VALUE self)
{