<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/include, branch ruby_3_0</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>merge revision(s) 29f6f79e7396018962eb25c5f5e409f5fe28a73b: [Backport #17788] [Backport #18574]</title>
<updated>2022-03-13T06:20:35+00:00</updated>
<author>
<name>nagachika</name>
<email>nagachika@ruby-lang.org</email>
</author>
<published>2022-03-13T06:20:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=2bb5fa495bf9d366d3c1fefc6b093dc4830f27bf'/>
<id>2bb5fa495bf9d366d3c1fefc6b093dc4830f27bf</id>
<content type='text'>
	Get `ruby_nonempty_memcpy` to have C linkage

	Fixes [Bug #17788]
	---
	 include/ruby/internal/memory.h | 2 ++
	 1 file changed, 2 insertions(+)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	Get `ruby_nonempty_memcpy` to have C linkage

	Fixes [Bug #17788]
	---
	 include/ruby/internal/memory.h | 2 ++
	 1 file changed, 2 insertions(+)
</pre>
</div>
</content>
</entry>
<entry>
<title>merge revision(s) bcc2bb28b04054106f4a36e8fd69b2af6ecb033a: [Backport #18500]</title>
<updated>2022-03-12T07:36:40+00:00</updated>
<author>
<name>nagachika</name>
<email>nagachika@ruby-lang.org</email>
</author>
<published>2022-03-12T07:36:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=bac99c5175bf58815846f9987093a6d944d07fd3'/>
<id>bac99c5175bf58815846f9987093a6d944d07fd3</id>
<content type='text'>
	Fix stack buffer overflow

	https://hackerone.com/reports/1306859
	---
	 include/ruby/internal/memory.h | 6 +++---
	 random.c                       | 7 ++-----
	 2 files changed, 5 insertions(+), 8 deletions(-)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	Fix stack buffer overflow

	https://hackerone.com/reports/1306859
	---
	 include/ruby/internal/memory.h | 6 +++---
	 random.c                       | 7 ++-----
	 2 files changed, 5 insertions(+), 8 deletions(-)
</pre>
</div>
</content>
</entry>
<entry>
<title>merge revision(s) ecb2ff60507a41c624f59cb9da6a008ab3ec36e1: [Backport #18403]</title>
<updated>2022-03-12T06:52:46+00:00</updated>
<author>
<name>nagachika</name>
<email>nagachika@ruby-lang.org</email>
</author>
<published>2022-03-12T06:52:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=e413a8ff970fc7692e6c0050a23678605ade884e'/>
<id>e413a8ff970fc7692e6c0050a23678605ade884e</id>
<content type='text'>
	intern/select/posix.h: remove unused parameter from rb_fd_dup

	This unused parameter seems to be accidently introduced by https://github.com/ruby/ruby/commit/9e6e39c
	---
	 include/ruby/internal/intern/select/posix.h | 3 +--
	 1 file changed, 1 insertion(+), 2 deletions(-)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	intern/select/posix.h: remove unused parameter from rb_fd_dup

	This unused parameter seems to be accidently introduced by https://github.com/ruby/ruby/commit/9e6e39c
	---
	 include/ruby/internal/intern/select/posix.h | 3 +--
	 1 file changed, 1 insertion(+), 2 deletions(-)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed a typo [Bug #17522]</title>
<updated>2021-01-13T08:07:38+00:00</updated>
<author>
<name>Tee KOBAYASHI</name>
<email>xtkoba+ruby@gmail.com</email>
</author>
<published>2021-01-09T04:23:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=98ca667b9835fed7709ef192eac966aca98bf50d'/>
<id>98ca667b9835fed7709ef192eac966aca98bf50d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed dangling imemo_tmpbuf</title>
<updated>2021-01-13T08:07:17+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2021-01-02T03:11:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5b2a0fc682ce69e2b95532ce1116dcb32e6aa011'/>
<id>5b2a0fc682ce69e2b95532ce1116dcb32e6aa011</id>
<content type='text'>
The count of rb_alloc_tmp_buffer_with_count is the allocation size
counted in VALUE size but not in the requested element size.

Co-authored-by: Yusuke Endoh &lt;mame@ruby-lang.org&gt;
Co-authored-by: Koichi Sasada &lt;ko1@atdot.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The count of rb_alloc_tmp_buffer_with_count is the allocation size
counted in VALUE size but not in the requested element size.

Co-authored-by: Yusuke Endoh &lt;mame@ruby-lang.org&gt;
Co-authored-by: Koichi Sasada &lt;ko1@atdot.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>expose some C-APIs for ractor</title>
<updated>2021-01-13T08:07:02+00:00</updated>
<author>
<name>Koichi Sasada</name>
<email>ko1@atdot.net</email>
</author>
<published>2021-01-06T06:30:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=1614dd9fd44e27aa5afc6de94602ac7292962d11'/>
<id>1614dd9fd44e27aa5afc6de94602ac7292962d11</id>
<content type='text'>
expose some C-APIs to try to make ractor utilities on external gems.

* add
  * rb_ractor_local_storage_value_lookup() to check availability
* expose
  * rb_ractor_make_shareable()
  * rb_ractor_make_shareable_copy()
  * rb_proc_isolate() (not public)
  * rb_proc_isolate_bang() (not public)
  * rb_proc_ractor_make_shareable() (not public)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
expose some C-APIs to try to make ractor utilities on external gems.

* add
  * rb_ractor_local_storage_value_lookup() to check availability
* expose
  * rb_ractor_make_shareable()
  * rb_ractor_make_shareable_copy()
  * rb_proc_isolate() (not public)
  * rb_proc_isolate_bang() (not public)
  * rb_proc_ractor_make_shareable() (not public)
</pre>
</div>
</content>
</entry>
<entry>
<title>Use RBIMPL_COMPILER_{SINCE,BEFORE} for MSVC</title>
<updated>2020-12-24T07:22:50+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2020-12-24T07:16:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b343d547923cf29456910b20fcd1c0a58ed68176'/>
<id>b343d547923cf29456910b20fcd1c0a58ed68176</id>
<content type='text'>
Pointed out by @shyouhei.

NOTE: Already we have dropped the support for older MSVCs,
probably prior to 1300 or 1400.  Remove the conditional code,
especially in win32/Makefile.sub.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Pointed out by @shyouhei.

NOTE: Already we have dropped the support for older MSVCs,
probably prior to 1300 or 1400.  Remove the conditional code,
especially in win32/Makefile.sub.
</pre>
</div>
</content>
</entry>
<entry>
<title>shareable_constant_value: experimental_copy</title>
<updated>2020-12-24T05:28:47+00:00</updated>
<author>
<name>Koichi Sasada</name>
<email>ko1@atdot.net</email>
</author>
<published>2020-12-24T01:59:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=6f29716f9ffb710af7f344839ec67ef2b8a48ab2'/>
<id>6f29716f9ffb710af7f344839ec67ef2b8a48ab2</id>
<content type='text'>
"experimental_everything" makes the assigned value, it means
the assignment change the state of assigned value.
"experimental_copy" tries to make a deep copy and make copyied object
sharable.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"experimental_everything" makes the assigned value, it means
the assignment change the state of assigned value.
"experimental_copy" tries to make a deep copy and make copyied object
sharable.
</pre>
</div>
</content>
</entry>
<entry>
<title>Expose atomic operation macros with RUBY prefix</title>
<updated>2020-12-24T02:43:21+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2020-12-23T05:09:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=6ed6b85ece8733518a7da0c3ec714f20d1102bf5'/>
<id>6ed6b85ece8733518a7da0c3ec714f20d1102bf5</id>
<content type='text'>
Now we need atomic operations, which are lighter than mutex, more
widely for extension libraries because of Ractor.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now we need atomic operations, which are lighter than mutex, more
widely for extension libraries because of Ractor.
</pre>
</div>
</content>
</entry>
<entry>
<title>[memory_view] Fix some grammar issues in a comment</title>
<updated>2020-12-24T00:32:54+00:00</updated>
<author>
<name>Kenta Murata</name>
<email>mrkn@mrkn.jp</email>
</author>
<published>2020-12-24T00:32:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=05a756b3323d23b8f6ec899eaa83f7172ada0999'/>
<id>05a756b3323d23b8f6ec899eaa83f7172ada0999</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
