Klim Tsoutsman

Results 26 comments of Klim Tsoutsman

The issue is I want to run the entire `build` target (e.g. merge sections, copy crate objects, strip files, etc.), but I'm not sure how to create a new target...

Aaaand GitHub removed everything that I typed up :smile:. > In your TSC example, the `tsc` crate should be the one issuing CPUID commands to determine whether the TSC exists...

There are ways of avoiding floating point operations by expressing the frequency in GHz (1 GHzonemeans 1 tick per nanosecond) when calculating subsecond intervals. It is probably simpler to use...

We only expose one source of randomness, so implementing the trait seems unnecessary. The functions would have to be converted to methods on a ZST, and the caller would have...

I've changed the PR to simply add a new unused `rand` interface addressing the points of our discussion. I've added explicit initialization to `captain` but I'm not sure if we...

> infallible init That's because `tsc` is incorrectly infallible; it doesn't check whether the counter exists. But that's a separate issue.

#636 found all the already passing complexity lints.

> Thanks @dcampbell24! Does this include all of the crates, even optional ones? (specified using `make full` or by passing `--all-features` to cargo)? I'm traveling at the moment and can't...

Thanks to @dcampbell24, the rest of the passing lints were readded in #638.

> To clarify, this new Mutex type is what std would use in its platform-specific lower layers in order to provide std::sync::Mutex? If so, I'm not sure why we'd need...