<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/time.c, branch v4.0.3</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Make `ruby_reset_leap_second_info` internal</title>
<updated>2025-12-08T03:11:58+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2025-12-08T03:04:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=a82aa08fe0112aefd35e28dc5ca3f9ea9238ae17'/>
<id>a82aa08fe0112aefd35e28dc5ca3f9ea9238ae17</id>
<content type='text'>
It is exported only for the extension library to test, but the method
is no longer used since 29e31e72fb5a14194a78ec974c4ba56c33ad8d45.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is exported only for the extension library to test, but the method
is no longer used since 29e31e72fb5a14194a78ec974c4ba56c33ad8d45.
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid allocating intermediate string in zone_str</title>
<updated>2025-11-16T23:23:28+00:00</updated>
<author>
<name>John Hawthorn</name>
<email>john@hawthorn.email</email>
</author>
<published>2025-11-14T20:53:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=bdeee7012c37834a17712c7aaa8c602ae1208a8e'/>
<id>bdeee7012c37834a17712c7aaa8c602ae1208a8e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>time.c: fix time_mark_and_move when WIDEVALUE_IS_WIDER</title>
<updated>2025-08-09T11:32:53+00:00</updated>
<author>
<name>Jean Boussier</name>
<email>jean.boussier@gmail.com</email>
</author>
<published>2025-08-09T08:54:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=2a6345e957c01f4495323723c7a3d7ac0d4ac339'/>
<id>2a6345e957c01f4495323723c7a3d7ac0d4ac339</id>
<content type='text'>
In such case the pointer need to be casted.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In such case the pointer need to be casted.
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert `time` to use `rb_gc_mark_and_move`</title>
<updated>2025-08-07T19:00:00+00:00</updated>
<author>
<name>Jean Boussier</name>
<email>jean.boussier@gmail.com</email>
</author>
<published>2025-08-07T12:48:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=1aabd2cb365ff0a236609fe1c4ab193d16027757'/>
<id>1aabd2cb365ff0a236609fe1c4ab193d16027757</id>
<content type='text'>
The `p-&gt;field = rb_gc_location(p-&gt;field)` isn't ideal because it means all
references are rewritten on compaction, regardless of whether the referenced
object has moved. This isn't good for caches nor for Copy-on-Write.

`rb_gc_mark_and_move` avoid needless writes, and most of the time allow to
have a single function for both marking and updating references.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The `p-&gt;field = rb_gc_location(p-&gt;field)` isn't ideal because it means all
references are rewritten on compaction, regardless of whether the referenced
object has moved. This isn't good for caches nor for Copy-on-Write.

`rb_gc_mark_and_move` avoid needless writes, and most of the time allow to
have a single function for both marking and updating references.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use `&lt;&gt;` for a system header</title>
<updated>2025-07-24T03:56:08+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2025-07-24T03:56:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b246fb604e9674922cde6353c657b61f61ccb743'/>
<id>b246fb604e9674922cde6353c657b61f61ccb743</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add write barrier on tm_from_time-&gt;timew</title>
<updated>2025-06-18T17:17:34+00:00</updated>
<author>
<name>John Hawthorn</name>
<email>john@hawthorn.email</email>
</author>
<published>2025-06-08T17:52:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=6b3fa2356321832cb0c22e3f289498bb686a0019'/>
<id>6b3fa2356321832cb0c22e3f289498bb686a0019</id>
<content type='text'>
We want to always use time_set_timew, as timew is 64-bit even on 32-bit
platforms so we need to be careful to both write that size, but still
trigger write barriers if we end up with a heap object.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We want to always use time_set_timew, as timew is 64-bit even on 32-bit
platforms so we need to be careful to both write that size, but still
trigger write barriers if we end up with a heap object.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing write barrier to time_init_copy</title>
<updated>2025-06-18T17:17:34+00:00</updated>
<author>
<name>John Hawthorn</name>
<email>john@hawthorn.email</email>
</author>
<published>2025-06-08T17:59:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=0e2067dfa74ed77ad4cab79104c86503c7cfd434'/>
<id>0e2067dfa74ed77ad4cab79104c86503c7cfd434</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Write barrier for zone on time</title>
<updated>2025-06-18T17:17:34+00:00</updated>
<author>
<name>John Hawthorn</name>
<email>john@hawthorn.email</email>
</author>
<published>2025-06-08T06:30:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7439f353784fa3f35316ea671e531e3a45dd2416'/>
<id>7439f353784fa3f35316ea671e531e3a45dd2416</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Normalize subseconds using `wideint_t` instead of `time_t`</title>
<updated>2025-06-13T10:35:52+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2025-06-13T09:25:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=583ce06c0e6f7d10e1b485a4ca32cf797eab62cf'/>
<id>583ce06c0e6f7d10e1b485a4ca32cf797eab62cf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Conversion is needed between `WIDEVALUE` and `VALUE`</title>
<updated>2025-06-13T10:35:52+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2025-06-11T14:33:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b8de3cfb04e4d510d3a3af73029a9ca5ab39f79e'/>
<id>b8de3cfb04e4d510d3a3af73029a9ca5ab39f79e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
