From: nobu@... Date: 2021-08-03T00:38:36+00:00 Subject: [ruby-core:104758] [Ruby master Misc#18059] Which FL_USERx are open to extension libraries? Issue #18059 has been reported by nobu (Nobuyoshi Nakada). ---------------------------------------- Misc #18059: Which FL_USERx are open to extension libraries? https://bugs.ruby-lang.org/issues/18059 * Author: nobu (Nobuyoshi Nakada) * Status: Open * Priority: Normal ---------------------------------------- Often the following failure occurs in `test-spec`. ``` RBasic support for regular objects supports copying the flags from one object over to the other FAILED Expected 81920 == 33636352 to be truthy but was false /tmp/ruby/v3/src/trunk/spec/ruby/optional/capi/shared/rbasic.rb:71:in `block (2 levels) in ' /tmp/ruby/v3/src/trunk/spec/ruby/optional/capi/rbasic_spec.rb:8:in `' ``` `81920 == 0x14000` `33636352 == 0x2014000` The difference `0x2000000` is `FL_USER13`, which is used as `ROBJECT_TRANSIENT_FLAG`. This flag is set when any `Object` instance has some amount of instance variables. In this particular case, it is possible to fix just by excluding the bit. But, the question is which flags are open to extension libraries. My guess is these flags are available for `T_DATA` classes, but not for `T_OBJECT`. Any thoughts? -- https://bugs.ruby-lang.org/ Unsubscribe: