You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, would the library be accepting implementations for sched_(set|get)attr functions? as per libc crate (and man pages) here , because these two are not exposed by glibc, libc crate will not be supporting these. Is is possible for nix to provide wrapper over them, or does nix only provides wrappers for stuff accepted over libc?
I'd like to contribute the implementations if they are acceptable. Thank you!
The text was updated successfully, but these errors were encountered:
We generally don't like raw syscalls since they are inherently unsafe, but we indeed have some interfaces that directly use syscalls in Nix, so it should be fine.
A rough search didn't show me that there is a well-maintained crate that has these interfaces exposed, then I guess we would accept them:)
CONVENTIONS.md has some typical patterns that we use while creating wrappers, you can have a look. If you don't know how to start, take a look at the existing interfaces, there are a lot of them you can refer to
Hello, would the library be accepting implementations for sched_(set|get)attr functions? as per libc crate (and man pages) here , because these two are not exposed by glibc, libc crate will not be supporting these. Is is possible for nix to provide wrapper over them, or does nix only provides wrappers for stuff accepted over libc?
I'd like to contribute the implementations if they are acceptable. Thank you!
The text was updated successfully, but these errors were encountered: