Jeremy Soller
6092acc5bd
Merge branch 'timer-fn' into 'master'
...
Implement POSIX timer functions
See merge request redox-os/relibc!747
2025-10-15 08:10:06 -06:00
Wildan Mubarok
2efcd20fbc
Implement POSIX timer functions
2025-10-15 08:10:06 -06:00
auronandace
e4eada2e52
update spec links and imports for assert and fcntl headers
2025-10-12 17:25:03 +01:00
Jeremy Soller
d50ce16e0f
Merge branch 'add-posix-dent' into 'master'
...
Define posix_dent for posix_getdents
See merge request redox-os/relibc!746
2025-10-12 08:23:36 -06:00
Wildan M
135fba1f9f
rename posix_dent d_off
2025-10-12 20:37:21 +07:00
Wildan M
1712290deb
Define posix_dent for posix_getdents
2025-10-12 20:25:37 +07:00
auronandace
03c646222e
update spec links and imports for libgen and sys_resource
2025-10-11 19:21:36 +01:00
Jeremy Soller
02e4d98020
Merge branch 'panic-strlen' into 'master'
...
Avoid panic by uninitialized string of strlen
See merge request redox-os/relibc!744
2025-10-09 10:58:28 -06:00
Wildan M
036dd3fb73
Avoid panic by unitialized string of strlen
2025-10-09 23:52:45 +07:00
auronandace
900e27538b
fix formatting
2025-10-09 17:14:26 +01:00
auronandace
159b6dcdde
only import what is needed
2025-10-09 17:08:43 +01:00
auronandace
0d34c229ff
update and add spec links
2025-10-09 17:02:54 +01:00
Wildan M
efad028739
Fix getting total memory
2025-10-09 21:15:03 +07:00
Wildan M
cc325b8b0a
Fix compile
2025-10-09 13:24:03 +07:00
Wildan M
a118d5659b
Implement reading memory
2025-10-09 13:15:05 +07:00
Jeremy Soller
1dda8a00e7
Merge branch 'nulstr' into 'master'
...
Generalize CStr into NulStr, adding WStr
See merge request redox-os/relibc!739
2025-10-07 10:50:08 -06:00
4lDO2
1c5732ba36
Share almost all code between printf and wprintf.
2025-10-07 15:58:34 +02:00
Wildan M
38a64f2247
Define stub memory constants
2025-10-07 20:27:32 +07:00
4lDO2
96917f519e
Reuse PrintfIter for both printf and wprintf.
2025-10-06 16:16:48 +02:00
4lDO2
62cc63c351
WIP: Reimpl WPrintfIter also in safe code.
2025-10-06 16:16:48 +02:00
4lDO2
6dc2606886
Expand CStr to make PrintfIter fully safe.
2025-10-06 16:16:48 +02:00
4lDO2
24cf96393c
Expand Out wrapper and use it in utsname.
2025-10-05 20:01:12 +02:00
Jeremy Soller
ced734c162
Add RawCell::unsafe_set
2025-10-04 07:50:16 -06:00
Jeremy Soller
82084440ad
Support nightly-2025-10-03
2025-10-03 21:51:10 -06:00
Jeremy Soller
43b0f235ca
Implement pthread_getattr_np
2025-09-30 12:49:22 -06:00
Wildan Mubarok
7416ba6ff3
Implement posix_getdents
2025-09-23 10:57:13 -06:00
Wildan Mubarok
a4aa1a30a3
Fix timespec for semaphore
2025-09-23 00:44:02 +00:00
Jeremy Soller
6110a77044
Merge branch 'cstr_strchr' into 'master'
...
Add safe strchr method for CStr.
See merge request redox-os/relibc!723
2025-09-21 10:35:10 -06:00
4lDO2
9aeb9abd97
Add safe strchr method for CStr.
2025-09-21 17:00:45 +02:00
Jeremy Soller
38d667a58e
Merge branch 'printf-use-float-abs' into 'master'
...
printf: Use f64::abs
See merge request redox-os/relibc!639
2025-09-21 08:17:46 -06:00
Josh Megnauth
85c5e889fb
Implement fchmodat
...
Capability based `fchmod`. I also implemented unit tests for chmod,
fchmod, and fchmodat.
The unit tests check Redox-specific behavior, so some of the tests are
disabled for Linux.
2025-09-21 10:04:11 -04:00
Jacob Lorentzon
9c5f11fbc8
Add Out<T> wrapper
2025-09-21 14:36:12 +02:00
Josh Megnauth
1a2c8175d4
printf: Use f64::abs
2025-09-21 06:52:59 +00:00
Wildan M
b541ee43be
Change PATH separator to double colon
2025-09-19 21:48:38 +07:00
Jeremy Soller
f4a7bcf92d
Merge branch 'shadow-h' into 'master'
...
Implement shadow.h and argon2 crypt
See merge request redox-os/relibc!718
2025-09-19 06:45:18 -06:00
Wildan M
b8598f50ff
Add argon2 crypt
2025-09-19 15:41:05 +07:00
Wildan M
d3e44fa6b9
Apparently need to import FILE constant
2025-09-19 14:37:49 +07:00
Wildan M
0636af21a4
Add shadow.h support
2025-09-19 14:04:55 +07:00
auronandace
1bacd51b81
specify the type properly
2025-09-18 16:30:30 +01:00
auronandace
6607549abf
add constant to fnmatch.h
2025-09-18 16:17:11 +01:00
Josh Megnauth
03c0e3024c
Export fexecve
...
It turns out we have fexecve but it wasn't exported in unistd.h.
Related: #184
2025-09-18 02:38:15 -04:00
Josh Megnauth
c555503a35
Implement readlinkat
...
Like readlink except capability based. Most of this patch is refactoring
fstatat into a reusable, openat-like private function.
2025-09-18 01:27:55 +00:00
Josh Megnauth
c6a9a165ec
Implement fdopendir and fdclosedir
...
`fdopendir` takes ownership of a directory file descriptor instead of
opening one with a path. `fdclosedir` is a FreeBSD extension that
transfers ownership of the file descriptor in DIR to the user.
2025-09-17 08:24:48 -04:00
Wildan Mubarok
2f35c4a665
Fix getgrouplist len
2025-09-15 21:29:27 +00:00
Wildan Mubarok
94fbdd5159
Fix grp implementation
2025-09-15 21:14:53 +00:00
Jeremy Soller
fdb7532a67
Merge branch 'null_getaddrinfo' into 'master'
...
Implement getaddrinfo NULL nodename, AI_PASSIVE, AI_NUMERICHOST
Closes #223
See merge request redox-os/relibc!710
2025-09-15 06:47:27 -06:00
Wildan M
726a0fb1a8
Implement getaddrinfo NULL nodename, AI_PASSIVE, AI_NUMERICHOST
2025-09-15 15:10:50 +07:00
Josh Megnauth
28901b1b62
Impl AT_SYMLINK_NOFOLLOW and AT_EMPTY_PATH
...
AT_SYMLINK_NOFOLLOW acts on the symlink itself rather than following it.
AT_EMPTY_PATH acts on the directory if path is empty.
Currently, this is implemented in fstatat itself but the code is general
enough to be refactored once we get the other *at functions. It could
likely just live in openat itself.
2025-09-15 06:12:10 +00:00
Jeremy Soller
e1fa1ee7b7
Merge branch 'real_cpu' into 'master'
...
Implement reading CPU count
See merge request redox-os/relibc!709
2025-09-14 06:31:16 -06:00
Wildan M
d527cf455f
Implement reading CPU count
2025-09-14 18:45:38 +07:00