4lDO2
df6ecd983b
0.1.19
2026-08-02 14:29:44 +02:00
Jeremy Soller
de72922b02
Merge branch 'call-multiple-fds' into 'master'
...
feat: call with multiple fds
See merge request redox-os/libredox!29
2026-08-01 06:17:56 -06:00
Anhad Singh
a2110bbaa5
fix(call): verify flags in call_{ro,wo}
...
Bail if `CallFlags::READ` is set in `call_wo` as that will allow the
caller to mutate immutable slices. Similarly, bail if `CallFlags::WRITE`
is set in `call_ro`.
Signed-off-by: Anhad Singh <andypython@protonmail.com >
Co-authored-by: @4lDO2
2026-08-01 18:51:46 +10:00
Anhad Singh
7c4dbc2b9b
feat: call with multiple fds
...
Signed-off-by: Anhad Singh <andypython@protonmail.com >
2026-07-31 18:03:18 +10:00
Jeremy Soller
bedf0129b9
Merge branch 'fcntl' into 'master'
...
feat: Add fcntl
See merge request redox-os/libredox!27
2026-07-01 08:01:38 -06:00
Ibuki Omatsu
0899f212c0
feat: Add fcntl
2026-07-01 08:01:37 -06:00
Jacob Lorentzon
7040cf71b3
Merge branch 'relpathat' into 'master'
...
feat: Add relpathat
See merge request redox-os/libredox!26
2026-05-27 16:02:55 +02:00
Ibuki Omatsu
5cc70f148f
feat: Add relpathat
2026-05-27 16:02:55 +02:00
Jeremy Soller
f14358d4d8
Merge branch 'prio-sched-version' into 'master'
...
Bump version
See merge request redox-os/libredox!25
2026-04-09 15:21:52 -06:00
Akshit Gaur
65aa9e1272
Bump version
2026-04-06 14:46:33 +05:30
Jeremy Soller
eb3b30ed33
Merge branch 'priority-sched' into 'master'
...
{Get/Set}ProcPriority
See merge request redox-os/libredox!24
2026-04-04 07:40:47 -06:00
Jeremy Soller
c2f1a4f763
Merge branch 'MSG_FLAGS' into 'master'
...
Add MSG flags for sockets
See merge request redox-os/libredox!22
2026-03-24 11:02:02 -06:00
Akshit Gaur
33192ebab7
{Get/Set}ProcPriority
2026-03-23 22:50:21 +05:30
Benton60
477f6e6ae9
bump version
2026-03-22 12:13:02 -04:00
Benton60
c7b39521e4
add MSG flags for sockets
2026-03-22 12:13:02 -04:00
Jeremy Soller
0076e6e034
Merge branch 'priority-sched' into 'master'
...
Add Set and Get Priority
See merge request redox-os/libredox!23
2026-03-22 06:59:27 -06:00
Akshit Gaur
1b859147f5
Add Set and Get Priority
2026-03-22 17:51:09 +05:30
Jeremy Soller
094dc72d36
Merge branch 'base-libc' into 'master'
...
fix: Fix feature dependencies
See merge request redox-os/libredox!21
2026-02-28 07:10:06 -07:00
Ibuki Omatsu
35d51ab014
fix: Fix feature dependencies
2026-02-28 07:10:05 -07:00
Jeremy Soller
653c5b41b9
Merge branch 'protocol' into 'master'
...
feat: Move redox-rt::protocol into libredox::protocol. Add getdents and futimens.
See merge request redox-os/libredox!20
2026-02-27 08:37:26 -07:00
Ibuki Omatsu
17f21113a0
feat: Move redox-rt::protocol into libredox::protocol. Add getdents and futimens.
2026-02-27 08:37:26 -07:00
Jeremy Soller
6a75c953a6
Merge branch 'nsmgr' into 'master'
...
Add Fd::new, setns, getns, and register_scheme_to_ns.
See merge request redox-os/libredox!18
2025-12-27 07:47:25 -07:00
Ibuki Omatsu
6c5a628461
Add Fd::new, setns, getns, and register_scheme_to_ns.
2025-12-27 07:47:25 -07:00
Jeremy Soller
cfbb2c3d39
Merge branch 'update-syscall' into 'master'
...
chore: Bump version and update redox_syscall.
See merge request redox-os/libredox!19
2025-12-16 07:43:30 -07:00
Ibuki Omatsu
9db478544d
chore: Bump version and update redox_syscall.
2025-12-16 07:43:30 -07:00
Jeremy Soller
616d2e81f7
Merge branch 'getens' into 'master'
...
Add getens.
See merge request redox-os/libredox!15
2025-09-09 07:36:12 -06:00
Ibuki Omatsu
fd13f1b8dd
Add getens.
2025-09-09 07:36:12 -06:00
Jeremy Soller
33c6543c67
Merge branch 'waitpid-flags' into 'master'
...
Add waitpid flags
See merge request redox-os/libredox!14
2025-08-11 14:12:30 -06:00
Wildan M
b4c4fb9fd1
Add waitpid flags
2025-08-09 07:31:24 +07:00
Jeremy Soller
f0b019173e
Merge branch 'master' into 'master'
...
Bump version to 0.1.9
See merge request redox-os/libredox!12
2025-07-30 19:48:52 -06:00
Ibuki Omatsu
dc9aee240a
Bump version to 0.1.9
2025-07-30 19:48:52 -06:00
Jeremy Soller
53fd2f4530
Merge branch 'call_redox_syscall_feature' into 'master'
...
fix: Add cfg attribute for the redox_syscall feature to all call functions.
See merge request redox-os/libredox!11
2025-07-30 15:34:25 -06:00
Ibuki Omatsu
86444c59a2
fix: Add cfg attribute for the redox_syscall feature to all call functions.
2025-07-30 15:34:25 -06:00
Jeremy Soller
c6c2ae6ce6
Merge branch 'call' into 'master'
...
feat: Add call_ro, call_wo and call_wr to call module.
See merge request redox-os/libredox!10
2025-07-28 09:33:13 -06:00
Ibuki Omatsu
c8ad74b402
feat: Add call_ro, call_wo and call_wr to call module.
2025-07-28 09:33:13 -06:00
Jacob Lorentzon
c2e45479c9
Merge branch 'fd-call' into 'master'
...
feat: Add call as a new method of Fd.
See merge request redox-os/libredox!9
2025-07-26 16:21:23 +02:00
Ibuki Omatsu
144500e2c9
feat: Add call as a new method of Fd.
2025-07-26 16:21:22 +02:00
Jeremy Soller
2cacc86d93
Merge branch 'redox_get_socket_token' into 'master'
...
refactor: Use redox_get_socket_token from relibc
See merge request redox-os/libredox!8
2025-07-19 07:36:33 -06:00
Ibuki Omatsu
c21fcb6847
refactor: Use redox_get_socket_token from relibc
2025-07-19 07:36:33 -06:00
Jeremy Soller
927f8f0578
Merge branch 'get_proc_creds_cap' into 'master'
...
feat: Change get_proc_credentials to use capability fd and add get_socket_token.
See merge request redox-os/libredox!6
2025-07-18 18:27:36 -06:00
Ibuki Omatsu
690884e0a6
feat: Change get_proc_credentials to use capability fd and add get_socket_token.
2025-07-18 18:27:36 -06:00
Jeremy Soller
69d53bef29
Merge branch 'openat-update' into 'master'
...
Add fcntl_flags to openat
See merge request redox-os/libredox!7
2025-07-07 15:18:41 -06:00
Darley Barreto
6e05857046
Add fcntl_flags to openat
2025-07-05 12:55:13 -03:00
Jeremy Soller
540f302456
Merge branch 'redox_get_proc_credentials' into 'master'
...
feat: Add get_proc_credentials functions.
See merge request redox-os/libredox!3
2025-06-25 08:48:33 -06:00
Ibuki Omatsu
7bb0cff932
feat: Add get_proc_credentials functions.
2025-06-25 08:48:33 -06:00
Jacob Lorentzon
4273b8ac67
Merge branch 'openat' into 'master'
...
Add openat
See merge request redox-os/libredox!1
2025-04-05 18:00:33 +00:00
Darley Barreto
2a04c02f36
Add openat
2025-04-05 12:35:10 -03:00
4lDO2
70bf561aef
0.1.3
2024-03-18 17:08:27 +01:00
4lDO2
fa1739a954
Add mkns API.
2024-03-18 17:08:14 +01:00
4lDO2
0cd9eec99e
Libredox 0.1.2
2024-03-12 17:04:55 +01:00