ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:62902] [ruby-trunk - Feature #9893] [Open] [RFC] README.EXT: document rb_gc_register_mark_object
       [not found] <redmine.issue-9893.20140602041337@ruby-lang.org>
@ 2014-06-02  4:13 ` normalperson
  2014-07-03  3:25 ` [ruby-core:63531] [ruby-trunk - Feature #9893] [Assigned] " nagachika00
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: normalperson @ 2014-06-02  4:13 UTC (permalink / raw
  To: ruby-core

Issue #9893 has been reported by Eric Wong.

----------------------------------------
Feature #9893: [RFC] README.EXT: document rb_gc_register_mark_object
https://bugs.ruby-lang.org/issues/9893

* Author: Eric Wong
* Status: Open
* Priority: Low
* Assignee: Koichi Sasada
* Category: doc
* Target version: current: 2.2.0
----------------------------------------
ref [ruby-core:62862]

Any comment on officially supporting this as part of the C API?

diff --git a/README.EXT b/README.EXT
index d66d6c5..dded850 100644
--- a/README.EXT
+++ b/README.EXT
@@ -1176,6 +1176,12 @@ void rb_global_variable(VALUE *var)

   Tells GC to protect these variables.

+void rb_gc_register_mark_object(VALUE val)
+
+  Tells GC to protect the object referenced by val.  This requires less
+  memory to track than rb_global_variable, but may only be used if the C
 == Constant Definition

 void rb_define_const(VALUE klass, const char *name, VALUE val) ::




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [ruby-core:63531] [ruby-trunk - Feature #9893] [Assigned] [RFC] README.EXT: document rb_gc_register_mark_object
       [not found] <redmine.issue-9893.20140602041337@ruby-lang.org>
  2014-06-02  4:13 ` [ruby-core:62902] [ruby-trunk - Feature #9893] [Open] [RFC] README.EXT: document rb_gc_register_mark_object normalperson
@ 2014-07-03  3:25 ` nagachika00
  2014-07-03  3:28 ` [ruby-core:63533] [ruby-trunk - Feature #9893] " nagachika00
  2014-07-03  3:30 ` [ruby-core:63534] [ruby-trunk - Feature #9893] [Closed] " nagachika00
  3 siblings, 0 replies; 4+ messages in thread
From: nagachika00 @ 2014-07-03  3:25 UTC (permalink / raw
  To: ruby-core

Issue #9893 has been updated by Tomoyuki Chikanaga.

Status changed from Open to Assigned

----------------------------------------
Feature #9893: [RFC] README.EXT: document rb_gc_register_mark_object
https://bugs.ruby-lang.org/issues/9893#change-47579

* Author: Eric Wong
* Status: Assigned
* Priority: Low
* Assignee: Koichi Sasada
* Category: doc
* Target version: current: 2.2.0
----------------------------------------
ref [ruby-core:62862]

Any comment on officially supporting this as part of the C API?

diff --git a/README.EXT b/README.EXT
index d66d6c5..dded850 100644
--- a/README.EXT
+++ b/README.EXT
@@ -1176,6 +1176,12 @@ void rb_global_variable(VALUE *var)

   Tells GC to protect these variables.

+void rb_gc_register_mark_object(VALUE val)
+
+  Tells GC to protect the object referenced by val.  This requires less
+  memory to track than rb_global_variable, but may only be used if the C
 == Constant Definition

 void rb_define_const(VALUE klass, const char *name, VALUE val) ::




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [ruby-core:63533] [ruby-trunk - Feature #9893] [RFC] README.EXT: document rb_gc_register_mark_object
       [not found] <redmine.issue-9893.20140602041337@ruby-lang.org>
  2014-06-02  4:13 ` [ruby-core:62902] [ruby-trunk - Feature #9893] [Open] [RFC] README.EXT: document rb_gc_register_mark_object normalperson
  2014-07-03  3:25 ` [ruby-core:63531] [ruby-trunk - Feature #9893] [Assigned] " nagachika00
@ 2014-07-03  3:28 ` nagachika00
  2014-07-03  3:30 ` [ruby-core:63534] [ruby-trunk - Feature #9893] [Closed] " nagachika00
  3 siblings, 0 replies; 4+ messages in thread
From: nagachika00 @ 2014-07-03  3:28 UTC (permalink / raw
  To: ruby-core

Issue #9893 has been updated by Tomoyuki Chikanaga.

Duplicates Feature #9894: [RFC] README.EXT: document rb_gc_register_mark_object added

----------------------------------------
Feature #9893: [RFC] README.EXT: document rb_gc_register_mark_object
https://bugs.ruby-lang.org/issues/9893#change-47580

* Author: Eric Wong
* Status: Assigned
* Priority: Low
* Assignee: Koichi Sasada
* Category: doc
* Target version: current: 2.2.0
----------------------------------------
ref [ruby-core:62862]

Any comment on officially supporting this as part of the C API?

diff --git a/README.EXT b/README.EXT
index d66d6c5..dded850 100644
--- a/README.EXT
+++ b/README.EXT
@@ -1176,6 +1176,12 @@ void rb_global_variable(VALUE *var)

   Tells GC to protect these variables.

+void rb_gc_register_mark_object(VALUE val)
+
+  Tells GC to protect the object referenced by val.  This requires less
+  memory to track than rb_global_variable, but may only be used if the C
 == Constant Definition

 void rb_define_const(VALUE klass, const char *name, VALUE val) ::




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [ruby-core:63534] [ruby-trunk - Feature #9893] [Closed] [RFC] README.EXT: document rb_gc_register_mark_object
       [not found] <redmine.issue-9893.20140602041337@ruby-lang.org>
                   ` (2 preceding siblings ...)
  2014-07-03  3:28 ` [ruby-core:63533] [ruby-trunk - Feature #9893] " nagachika00
@ 2014-07-03  3:30 ` nagachika00
  3 siblings, 0 replies; 4+ messages in thread
From: nagachika00 @ 2014-07-03  3:30 UTC (permalink / raw
  To: ruby-core

Issue #9893 has been updated by Tomoyuki Chikanaga.

Status changed from Assigned to Closed

sorry for noise. This is duplicated ticket (#9894)

----------------------------------------
Feature #9893: [RFC] README.EXT: document rb_gc_register_mark_object
https://bugs.ruby-lang.org/issues/9893#change-47582

* Author: Eric Wong
* Status: Closed
* Priority: Low
* Assignee: Koichi Sasada
* Category: doc
* Target version: current: 2.2.0
----------------------------------------
ref [ruby-core:62862]

Any comment on officially supporting this as part of the C API?

diff --git a/README.EXT b/README.EXT
index d66d6c5..dded850 100644
--- a/README.EXT
+++ b/README.EXT
@@ -1176,6 +1176,12 @@ void rb_global_variable(VALUE *var)

   Tells GC to protect these variables.

+void rb_gc_register_mark_object(VALUE val)
+
+  Tells GC to protect the object referenced by val.  This requires less
+  memory to track than rb_global_variable, but may only be used if the C
 == Constant Definition

 void rb_define_const(VALUE klass, const char *name, VALUE val) ::




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-07-03  3:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <redmine.issue-9893.20140602041337@ruby-lang.org>
2014-06-02  4:13 ` [ruby-core:62902] [ruby-trunk - Feature #9893] [Open] [RFC] README.EXT: document rb_gc_register_mark_object normalperson
2014-07-03  3:25 ` [ruby-core:63531] [ruby-trunk - Feature #9893] [Assigned] " nagachika00
2014-07-03  3:28 ` [ruby-core:63533] [ruby-trunk - Feature #9893] " nagachika00
2014-07-03  3:30 ` [ruby-core:63534] [ruby-trunk - Feature #9893] [Closed] " nagachika00

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).