ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:108543] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms.
@ 2022-05-13 13:54 byroot (Jean Boussier)
  2022-05-20 17:07 ` [ruby-core:108640] " mdalessio (Mike Dalessio)
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: byroot (Jean Boussier) @ 2022-05-13 13:54 UTC (permalink / raw)
  To: ruby-core

Issue #18779 has been reported by byroot (Jean Boussier).

----------------------------------------
Bug #18779: `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms. 
https://bugs.ruby-lang.org/issues/18779

* Author: byroot (Jean Boussier)
* Status: Open
* Priority: Normal
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN
----------------------------------------
I received several bug report on native gems using `GC.verify_compaction_references` in their test suite.

Examples:

  - https://github.com/msgpack/msgpack-ruby/pull/275/files
  - https://github.com/Shopify/bootsnap/pull/414/files

I think that when `!GC_COMPACTION_SUPPORTED`, rather than raise `NotImplementedError`, we should instead define these methods as `rb_f_notimplement` like `Process.fork` on Windows.

This way `GC.respond_to?(:compact)` would be a proper way to test for compaction support.

Unfortunately, these methods are defined through `.rb` files with `Primitive`, and I don't know wether it's possible to check `GC_COMPACTION_SUPPORTED` from there, nor if it's possible to define a `rb_f_notimplement` method.

cc @tenderlovemaking 



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

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

* [ruby-core:108640] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms.
  2022-05-13 13:54 [ruby-core:108543] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms byroot (Jean Boussier)
@ 2022-05-20 17:07 ` mdalessio (Mike Dalessio)
  2022-05-23 22:54 ` [ruby-core:108658] " mdalessio (Mike Dalessio)
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: mdalessio (Mike Dalessio) @ 2022-05-20 17:07 UTC (permalink / raw)
  To: ruby-core

Issue #18779 has been updated by mdalessio (Mike Dalessio).


After working through this in https://github.com/sparklemotion/nokogiri/pull/2532#issuecomment-1121302762 I agree that Ruby should provide an easier mechanism for discovering whether compaction is supported.

----------------------------------------
Bug #18779: `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms. 
https://bugs.ruby-lang.org/issues/18779#change-97687

* Author: byroot (Jean Boussier)
* Status: Open
* Priority: Normal
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN
----------------------------------------
I received several bug report on native gems using `GC.verify_compaction_references` in their test suite.

Examples:

  - https://github.com/msgpack/msgpack-ruby/pull/275/files
  - https://github.com/Shopify/bootsnap/pull/414/files

I think that when `!GC_COMPACTION_SUPPORTED`, rather than raise `NotImplementedError`, we should instead define these methods as `rb_f_notimplement` like `Process.fork` on Windows.

This way `GC.respond_to?(:compact)` would be a proper way to test for compaction support.

Unfortunately, these methods are defined through `.rb` files with `Primitive`, and I don't know wether it's possible to check `GC_COMPACTION_SUPPORTED` from there, nor if it's possible to define a `rb_f_notimplement` method.

cc @tenderlovemaking 



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

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

* [ruby-core:108658] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms.
  2022-05-13 13:54 [ruby-core:108543] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms byroot (Jean Boussier)
  2022-05-20 17:07 ` [ruby-core:108640] " mdalessio (Mike Dalessio)
@ 2022-05-23 22:54 ` mdalessio (Mike Dalessio)
  2022-05-24 17:05 ` [ruby-core:108667] " byroot (Jean Boussier)
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: mdalessio (Mike Dalessio) @ 2022-05-23 22:54 UTC (permalink / raw)
  To: ruby-core

Issue #18779 has been updated by mdalessio (Mike Dalessio).


I've submitted a pull request that addresses this behavior in the way @byroot described above:

https://github.com/ruby/ruby/pull/5934



----------------------------------------
Bug #18779: `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms. 
https://bugs.ruby-lang.org/issues/18779#change-97702

* Author: byroot (Jean Boussier)
* Status: Open
* Priority: Normal
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN
----------------------------------------
I received several bug report on native gems using `GC.verify_compaction_references` in their test suite.

Examples:

  - https://github.com/msgpack/msgpack-ruby/pull/275/files
  - https://github.com/Shopify/bootsnap/pull/414/files

I think that when `!GC_COMPACTION_SUPPORTED`, rather than raise `NotImplementedError`, we should instead define these methods as `rb_f_notimplement` like `Process.fork` on Windows.

This way `GC.respond_to?(:compact)` would be a proper way to test for compaction support.

Unfortunately, these methods are defined through `.rb` files with `Primitive`, and I don't know wether it's possible to check `GC_COMPACTION_SUPPORTED` from there, nor if it's possible to define a `rb_f_notimplement` method.

cc @tenderlovemaking 



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

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

* [ruby-core:108667] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms.
  2022-05-13 13:54 [ruby-core:108543] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms byroot (Jean Boussier)
  2022-05-20 17:07 ` [ruby-core:108640] " mdalessio (Mike Dalessio)
  2022-05-23 22:54 ` [ruby-core:108658] " mdalessio (Mike Dalessio)
@ 2022-05-24 17:05 ` byroot (Jean Boussier)
  2022-05-31  9:59 ` [ruby-core:108742] " jaruga (Jun Aruga)
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: byroot (Jean Boussier) @ 2022-05-24 17:05 UTC (permalink / raw)
  To: ruby-core

Issue #18779 has been updated by byroot (Jean Boussier).

Backport changed from 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN to 2.7: WONTFIX, 3.0: REQUIRED, 3.1: REQUIRED
Status changed from Open to Closed

The PR was merged so we can now close this. 

I'm marking 3.0 and 3.1 for backport. The two commits are:

  - `6ddec1082d06431111123c03b18ca41e7a2cec12`
  - `e9623f7432b4603735c74b6f0bb683a9bf19c2c6`



----------------------------------------
Bug #18779: `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms. 
https://bugs.ruby-lang.org/issues/18779#change-97709

* Author: byroot (Jean Boussier)
* Status: Closed
* Priority: Normal
* Backport: 2.7: WONTFIX, 3.0: REQUIRED, 3.1: REQUIRED
----------------------------------------
I received several bug report on native gems using `GC.verify_compaction_references` in their test suite.

Examples:

  - https://github.com/msgpack/msgpack-ruby/pull/275/files
  - https://github.com/Shopify/bootsnap/pull/414/files

I think that when `!GC_COMPACTION_SUPPORTED`, rather than raise `NotImplementedError`, we should instead define these methods as `rb_f_notimplement` like `Process.fork` on Windows.

This way `GC.respond_to?(:compact)` would be a proper way to test for compaction support.

Unfortunately, these methods are defined through `.rb` files with `Primitive`, and I don't know wether it's possible to check `GC_COMPACTION_SUPPORTED` from there, nor if it's possible to define a `rb_f_notimplement` method.

cc @tenderlovemaking 



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

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

* [ruby-core:108742] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms.
  2022-05-13 13:54 [ruby-core:108543] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms byroot (Jean Boussier)
                   ` (2 preceding siblings ...)
  2022-05-24 17:05 ` [ruby-core:108667] " byroot (Jean Boussier)
@ 2022-05-31  9:59 ` jaruga (Jun Aruga)
  2022-05-31 10:01 ` [ruby-core:108743] " byroot (Jean Boussier)
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jaruga (Jun Aruga) @ 2022-05-31  9:59 UTC (permalink / raw)
  To: ruby-core

Issue #18779 has been updated by jaruga (Jun Aruga).


> I'm marking 3.0 and 3.1 for backport. The two commits are:
> 
>    6ddec1082d06431111123c03b18ca41e7a2cec12
>    e9623f7432b4603735c74b6f0bb683a9bf19c2c6

Did you backport to ruby_3_0 and ruby_3_1 branches? I cannot find the 2 commit hashes above.


----------------------------------------
Bug #18779: `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms. 
https://bugs.ruby-lang.org/issues/18779#change-97802

* Author: byroot (Jean Boussier)
* Status: Closed
* Priority: Normal
* Backport: 2.7: WONTFIX, 3.0: REQUIRED, 3.1: REQUIRED
----------------------------------------
I received several bug report on native gems using `GC.verify_compaction_references` in their test suite.

Examples:

  - https://github.com/msgpack/msgpack-ruby/pull/275/files
  - https://github.com/Shopify/bootsnap/pull/414/files

I think that when `!GC_COMPACTION_SUPPORTED`, rather than raise `NotImplementedError`, we should instead define these methods as `rb_f_notimplement` like `Process.fork` on Windows.

This way `GC.respond_to?(:compact)` would be a proper way to test for compaction support.

Unfortunately, these methods are defined through `.rb` files with `Primitive`, and I don't know wether it's possible to check `GC_COMPACTION_SUPPORTED` from there, nor if it's possible to define a `rb_f_notimplement` method.

cc @tenderlovemaking 



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

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

* [ruby-core:108743] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms.
  2022-05-13 13:54 [ruby-core:108543] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms byroot (Jean Boussier)
                   ` (3 preceding siblings ...)
  2022-05-31  9:59 ` [ruby-core:108742] " jaruga (Jun Aruga)
@ 2022-05-31 10:01 ` byroot (Jean Boussier)
  2022-05-31 10:26 ` [ruby-core:108744] " jaruga (Jun Aruga)
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: byroot (Jean Boussier) @ 2022-05-31 10:01 UTC (permalink / raw)
  To: ruby-core

Issue #18779 has been updated by byroot (Jean Boussier).


@jaruga no, I requested it, but it's the release manager of each branch that is supposed to do the backport.

These two commits are on master. The backported commits will likely be widely different as there was many changes in compaction APIs between 3.0 and master.

----------------------------------------
Bug #18779: `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms. 
https://bugs.ruby-lang.org/issues/18779#change-97803

* Author: byroot (Jean Boussier)
* Status: Closed
* Priority: Normal
* Backport: 2.7: WONTFIX, 3.0: REQUIRED, 3.1: REQUIRED
----------------------------------------
I received several bug report on native gems using `GC.verify_compaction_references` in their test suite.

Examples:

  - https://github.com/msgpack/msgpack-ruby/pull/275/files
  - https://github.com/Shopify/bootsnap/pull/414/files

I think that when `!GC_COMPACTION_SUPPORTED`, rather than raise `NotImplementedError`, we should instead define these methods as `rb_f_notimplement` like `Process.fork` on Windows.

This way `GC.respond_to?(:compact)` would be a proper way to test for compaction support.

Unfortunately, these methods are defined through `.rb` files with `Primitive`, and I don't know wether it's possible to check `GC_COMPACTION_SUPPORTED` from there, nor if it's possible to define a `rb_f_notimplement` method.

cc @tenderlovemaking 



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

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

* [ruby-core:108744] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms.
  2022-05-13 13:54 [ruby-core:108543] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms byroot (Jean Boussier)
                   ` (4 preceding siblings ...)
  2022-05-31 10:01 ` [ruby-core:108743] " byroot (Jean Boussier)
@ 2022-05-31 10:26 ` jaruga (Jun Aruga)
  2022-05-31 10:30 ` [ruby-core:108745] " byroot (Jean Boussier)
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jaruga (Jun Aruga) @ 2022-05-31 10:26 UTC (permalink / raw)
  To: ruby-core

Issue #18779 has been updated by jaruga (Jun Aruga).


> no, I requested it, but it's the release manager of each branch that is supposed to do the backport.

Sorry for my mistake. The "3.0: REQUIRED, 3.1: REQUIRED" (not DONE) shows the statuses clearly.

> These two commits are on master. The backported commits will likely be widely different as there was many changes in compaction APIs between 3.0 and master.

I see. How about changes between 3.1 and master? Many changes? I want to see the backport at least on Ruby 3.1.

Ah I found the 2 commits you shared on the PR below. But the commits were rebased on the master. That's why I could not find those on the master.
https://github.com/ruby/ruby/pull/5934/commits

I think the 2 commits on the master are below.
https://github.com/ruby/ruby/commit/0de1495f358e9b892dfa63d4b74f59b1d2903703
https://github.com/ruby/ruby/commit/0c36ba53192c5a0d245c9b626e4346a32d7d144e


----------------------------------------
Bug #18779: `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms. 
https://bugs.ruby-lang.org/issues/18779#change-97804

* Author: byroot (Jean Boussier)
* Status: Closed
* Priority: Normal
* Backport: 2.7: WONTFIX, 3.0: REQUIRED, 3.1: REQUIRED
----------------------------------------
I received several bug report on native gems using `GC.verify_compaction_references` in their test suite.

Examples:

  - https://github.com/msgpack/msgpack-ruby/pull/275/files
  - https://github.com/Shopify/bootsnap/pull/414/files

I think that when `!GC_COMPACTION_SUPPORTED`, rather than raise `NotImplementedError`, we should instead define these methods as `rb_f_notimplement` like `Process.fork` on Windows.

This way `GC.respond_to?(:compact)` would be a proper way to test for compaction support.

Unfortunately, these methods are defined through `.rb` files with `Primitive`, and I don't know wether it's possible to check `GC_COMPACTION_SUPPORTED` from there, nor if it's possible to define a `rb_f_notimplement` method.

cc @tenderlovemaking 



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

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

* [ruby-core:108745] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms.
  2022-05-13 13:54 [ruby-core:108543] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms byroot (Jean Boussier)
                   ` (5 preceding siblings ...)
  2022-05-31 10:26 ` [ruby-core:108744] " jaruga (Jun Aruga)
@ 2022-05-31 10:30 ` byroot (Jean Boussier)
  2022-11-30 13:39 ` [ruby-core:111089] " vo.x (Vit Ondruch)
  2023-03-25  1:56 ` [ruby-core:113006] " nagachika (Tomoyuki Chikanaga) via ruby-core
  8 siblings, 0 replies; 10+ messages in thread
From: byroot (Jean Boussier) @ 2022-05-31 10:30 UTC (permalink / raw)
  To: ruby-core

Issue #18779 has been updated by byroot (Jean Boussier).


Indeed, thank you.

----------------------------------------
Bug #18779: `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms. 
https://bugs.ruby-lang.org/issues/18779#change-97805

* Author: byroot (Jean Boussier)
* Status: Closed
* Priority: Normal
* Backport: 2.7: WONTFIX, 3.0: REQUIRED, 3.1: REQUIRED
----------------------------------------
I received several bug report on native gems using `GC.verify_compaction_references` in their test suite.

Examples:

  - https://github.com/msgpack/msgpack-ruby/pull/275/files
  - https://github.com/Shopify/bootsnap/pull/414/files

I think that when `!GC_COMPACTION_SUPPORTED`, rather than raise `NotImplementedError`, we should instead define these methods as `rb_f_notimplement` like `Process.fork` on Windows.

This way `GC.respond_to?(:compact)` would be a proper way to test for compaction support.

Unfortunately, these methods are defined through `.rb` files with `Primitive`, and I don't know wether it's possible to check `GC_COMPACTION_SUPPORTED` from there, nor if it's possible to define a `rb_f_notimplement` method.

cc @tenderlovemaking 



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

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

* [ruby-core:111089] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms.
  2022-05-13 13:54 [ruby-core:108543] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms byroot (Jean Boussier)
                   ` (6 preceding siblings ...)
  2022-05-31 10:30 ` [ruby-core:108745] " byroot (Jean Boussier)
@ 2022-11-30 13:39 ` vo.x (Vit Ondruch)
  2023-03-25  1:56 ` [ruby-core:113006] " nagachika (Tomoyuki Chikanaga) via ruby-core
  8 siblings, 0 replies; 10+ messages in thread
From: vo.x (Vit Ondruch) @ 2022-11-30 13:39 UTC (permalink / raw)
  To: ruby-core

Issue #18779 has been updated by vo.x (Vit Ondruch).


If it helps, this [1] is the patch we are carrying around in Fedora for Ruby 3.1. I would appreciate if is backported, because it influences files which are pregenerated and part of the release tarball [2].



[1]: https://src.fedoraproject.org/rpms/ruby/blob/9819174c8dd5a04f7cc47d50d586cc6f72b8f0b7/f/ruby-3.2.0-define-unsupported-gc-compaction-methods-as-rb_f_notimplement.patch
[2]: https://src.fedoraproject.org/rpms/ruby/blob/9819174c8dd5a04f7cc47d50d586cc6f72b8f0b7/f/ruby-3.2.0-define-unsupported-gc-compaction-methods_generated-files.patch

----------------------------------------
Bug #18779: `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms. 
https://bugs.ruby-lang.org/issues/18779#change-100354

* Author: byroot (Jean Boussier)
* Status: Closed
* Priority: Normal
* Backport: 2.7: WONTFIX, 3.0: REQUIRED, 3.1: REQUIRED
----------------------------------------
I received several bug report on native gems using `GC.verify_compaction_references` in their test suite.

Examples:

  - https://github.com/msgpack/msgpack-ruby/pull/275/files
  - https://github.com/Shopify/bootsnap/pull/414/files

I think that when `!GC_COMPACTION_SUPPORTED`, rather than raise `NotImplementedError`, we should instead define these methods as `rb_f_notimplement` like `Process.fork` on Windows.

This way `GC.respond_to?(:compact)` would be a proper way to test for compaction support.

Unfortunately, these methods are defined through `.rb` files with `Primitive`, and I don't know wether it's possible to check `GC_COMPACTION_SUPPORTED` from there, nor if it's possible to define a `rb_f_notimplement` method.

cc @tenderlovemaking 



-- 
https://bugs.ruby-lang.org/
 ______________________________________________
 ruby-core mailing list -- ruby-core@ml.ruby-lang.org
 To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
 ruby-core info -- https://ml.ruby-lang.org/mailman3/postorius/lists/ruby-core.ml.ruby-lang.org/

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

* [ruby-core:113006] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms.
  2022-05-13 13:54 [ruby-core:108543] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms byroot (Jean Boussier)
                   ` (7 preceding siblings ...)
  2022-11-30 13:39 ` [ruby-core:111089] " vo.x (Vit Ondruch)
@ 2023-03-25  1:56 ` nagachika (Tomoyuki Chikanaga) via ruby-core
  8 siblings, 0 replies; 10+ messages in thread
From: nagachika (Tomoyuki Chikanaga) via ruby-core @ 2023-03-25  1:56 UTC (permalink / raw)
  To: ruby-core; +Cc: nagachika (Tomoyuki Chikanaga)

Issue #18779 has been updated by nagachika (Tomoyuki Chikanaga).


MEMO: It seems that #18829 is required to be backported preceded for this issue.

----------------------------------------
Bug #18779: `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms. 
https://bugs.ruby-lang.org/issues/18779#change-102540

* Author: byroot (Jean Boussier)
* Status: Closed
* Priority: Normal
* Backport: 2.7: WONTFIX, 3.0: REQUIRED, 3.1: REQUIRED
----------------------------------------
I received several bug report on native gems using `GC.verify_compaction_references` in their test suite.

Examples:

  - https://github.com/msgpack/msgpack-ruby/pull/275/files
  - https://github.com/Shopify/bootsnap/pull/414/files

I think that when `!GC_COMPACTION_SUPPORTED`, rather than raise `NotImplementedError`, we should instead define these methods as `rb_f_notimplement` like `Process.fork` on Windows.

This way `GC.respond_to?(:compact)` would be a proper way to test for compaction support.

Unfortunately, these methods are defined through `.rb` files with `Primitive`, and I don't know wether it's possible to check `GC_COMPACTION_SUPPORTED` from there, nor if it's possible to define a `rb_f_notimplement` method.

cc @tenderlovemaking 



-- 
https://bugs.ruby-lang.org/
 ______________________________________________
 ruby-core mailing list -- ruby-core@ml.ruby-lang.org
 To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
 ruby-core info -- https://ml.ruby-lang.org/mailman3/postorius/lists/ruby-core.ml.ruby-lang.org/

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

end of thread, other threads:[~2023-03-25  1:56 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-13 13:54 [ruby-core:108543] [Ruby master Bug#18779] `GC.compact` and other compaction related methods should be defined as rb_f_notimplement on non supported platforms byroot (Jean Boussier)
2022-05-20 17:07 ` [ruby-core:108640] " mdalessio (Mike Dalessio)
2022-05-23 22:54 ` [ruby-core:108658] " mdalessio (Mike Dalessio)
2022-05-24 17:05 ` [ruby-core:108667] " byroot (Jean Boussier)
2022-05-31  9:59 ` [ruby-core:108742] " jaruga (Jun Aruga)
2022-05-31 10:01 ` [ruby-core:108743] " byroot (Jean Boussier)
2022-05-31 10:26 ` [ruby-core:108744] " jaruga (Jun Aruga)
2022-05-31 10:30 ` [ruby-core:108745] " byroot (Jean Boussier)
2022-11-30 13:39 ` [ruby-core:111089] " vo.x (Vit Ondruch)
2023-03-25  1:56 ` [ruby-core:113006] " nagachika (Tomoyuki Chikanaga) via ruby-core

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).