Max Blachman

Results 21 issues of Max Blachman

Would it be a good idea to allow consumers of autocfg to probe if their compiler is nightly or not? This could be used in instances where a crate uses...

Is there a list of boards/microcontrollers officially supported by SdFat? I recently discovered that the ATmega4808/4809 (Arduino Nano Every) deals with SPI registers differently from the ATmega328, which makes this...

Here's a function I was messing around with that would make supporting multiple ABIs easier. ```c int read_syacall_arg(pid_t pid, void * dst, size_t len, struct user_regs_struct * uregs, int arg_idx)...

Here's a proof of concept for how to write tests for this library. `test_nanosleep.c`, a simple program that waits for 10 seconds using `clock_nanosleep` ```c #include int main() { struct...

There are a boatload of syscalls dealing with time. It would be nice if this library dealt with all of them that use relative time, like timeouts. Absolute time, like...

Is there some reason that we have both [`nix::time::ClockId`](https://docs.rs/nix/0.19.0/nix/time/struct.ClockId.html) and [`nix::sys::timerfd::ClockId`](https://docs.rs/nix/0.19.0/nix/sys/timerfd/enum.ClockId.html)? It seems like `nix::time::ClockId` is more complete - defining more types of clocks for different operating systems. It looks...

`gettimeofday`, ~`clock_gettime`~, ~`clock_settime`~, ~`clock_getres`~, `nanosleep` and `clock_nanosleep` seem to be supported by various *nixes (at least Linux and FreeBSD), but bindings are not included in this crate. I'd be happy...

This crate makes use of features so that "you don't pay for what you don't use" and to support no_std while allowing for extensions that require the standard library. This...

We effectively restrict the type of Ratios by only `impl`ing `new()` and `new_raw()` on `T: Clone + Integer`. This appears to work well, but putting the same restrictions on the...

breaking change