<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm-project.git/libc/src/sys/time/linux/utimes.cpp, branch users/mingmingl-llvm/samplefdo-profile-format</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/'/>
<entry>
<title>[libc][NFC] Clean up utimes and setsid (#155495)</title>
<updated>2025-08-26T23:31:09+00:00</updated>
<author>
<name>Michael Jones</name>
<email>michaelrj@google.com</email>
</author>
<published>2025-08-26T23:31:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=b6a0802deacb977b806fc8b21f7d3af219546456'/>
<id>b6a0802deacb977b806fc8b21f7d3af219546456</id>
<content type='text'>
Simplify utims a bit and add proper error handling to setsid as
described in the standard</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Simplify utims a bit and add proper error handling to setsid as
described in the standard</pre>
</div>
</content>
</entry>
<entry>
<title>[libc] Fix utimes build when full_build=OFF (#149668)</title>
<updated>2025-07-19T19:37:42+00:00</updated>
<author>
<name>Mikhail R. Gadelha</name>
<email>mikhail@igalia.com</email>
</author>
<published>2025-07-19T19:37:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=5753be4ea29a01a601eeee7380a2f5a284711d7a'/>
<id>5753be4ea29a01a601eeee7380a2f5a284711d7a</id>
<content type='text'>
We might pull a header from the host where tv_nsec is not a long, 
so compilation would fail with an implicit conversion error.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We might pull a header from the host where tv_nsec is not a long, 
so compilation would fail with an implicit conversion error.
</pre>
</div>
</content>
</entry>
<entry>
<title>[libc] Move libc_errno.h to libc/src/__support and make LIBC_ERRNO_MODE_SYSTEM to be header-only. (#143187)</title>
<updated>2025-06-11T20:25:27+00:00</updated>
<author>
<name>lntue</name>
<email>lntue@google.com</email>
</author>
<published>2025-06-11T20:25:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=d87eea35fac5a34a841c637db8908128409a184e'/>
<id>d87eea35fac5a34a841c637db8908128409a184e</id>
<content type='text'>
This is the first step in preparation for:
https://discourse.llvm.org/t/rfc-make-clang-builtin-math-functions-constexpr-with-llvm-libc-to-support-c-23-constexpr-math-functions/86450</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is the first step in preparation for:
https://discourse.llvm.org/t/rfc-make-clang-builtin-math-functions-constexpr-with-llvm-libc-to-support-c-23-constexpr-math-functions/86450</pre>
</div>
</content>
</entry>
<entry>
<title>[libc] Enable utimes function for riscv (#139181)</title>
<updated>2025-05-13T21:59:49+00:00</updated>
<author>
<name>Mikhail R. Gadelha</name>
<email>mikhail@igalia.com</email>
</author>
<published>2025-05-13T21:59:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=36b4ffeb7ea731dabddc2188950c57053e39ca03'/>
<id>36b4ffeb7ea731dabddc2188950c57053e39ca03</id>
<content type='text'>
RV32 uses SYS_utimensat_time64 instead of SYS_utimensat but the call is
the same.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RV32 uses SYS_utimensat_time64 instead of SYS_utimensat but the call is
the same.
</pre>
</div>
</content>
</entry>
<entry>
<title>[libc][NFC] replace NULL with nullptr (#134464)</title>
<updated>2025-04-04T23:55:43+00:00</updated>
<author>
<name>Michael Jones</name>
<email>michaelrj@google.com</email>
</author>
<published>2025-04-04T23:55:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=e8b52acca2376aac90ba8e2927e52ddd5253bcbb'/>
<id>e8b52acca2376aac90ba8e2927e52ddd5253bcbb</id>
<content type='text'>
Simple cleanup</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Simple cleanup</pre>
</div>
</content>
</entry>
<entry>
<title>[libc] Implemented utimes (Issue #133953) (#134167)</title>
<updated>2025-04-03T23:19:12+00:00</updated>
<author>
<name>Aditya Tejpaul</name>
<email>97700214+hoarfrost32@users.noreply.github.com</email>
</author>
<published>2025-04-03T23:19:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=d33ae41c621dfbfb1eda5d469e2fb146ef49fbf9'/>
<id>d33ae41c621dfbfb1eda5d469e2fb146ef49fbf9</id>
<content type='text'>
This pull request implements the `utimes` command in libc ([Issue
#133953](https://github.com/llvm/llvm-project/issues/133953)).

- [x] Add the implementation of `utimes` in `/src/sys/time`.
- [x] Add tests for `utimes` in `/test/src/sys/time`. 
- [x] Add `utimes` to
[entrypoints.txt](https://github.com/llvm/llvm-project/blob/main/libc/config/linux/x86_64/entrypoints.txt)
for at least x86_64 and whatever you're building on
- [x] Add `utimes` to
[include/sys/time.yaml](https://github.com/llvm/llvm-project/blob/main/libc/include/sys/time.yaml)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This pull request implements the `utimes` command in libc ([Issue
#133953](https://github.com/llvm/llvm-project/issues/133953)).

- [x] Add the implementation of `utimes` in `/src/sys/time`.
- [x] Add tests for `utimes` in `/test/src/sys/time`. 
- [x] Add `utimes` to
[entrypoints.txt](https://github.com/llvm/llvm-project/blob/main/libc/config/linux/x86_64/entrypoints.txt)
for at least x86_64 and whatever you're building on
- [x] Add `utimes` to
[include/sys/time.yaml](https://github.com/llvm/llvm-project/blob/main/libc/include/sys/time.yaml)</pre>
</div>
</content>
</entry>
</feed>
