Ted Mielczarek
Ted Mielczarek
Now that Travis CI has ended their free tier, CI should migrate to GitHub Actions. [The `actions-rs` quickstart example](https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md) is probably a good place to start.
Chrome's [trace viewer](https://github.com/catapult-project/catapult/blob/master/tracing/docs/getting-started.md) has a [trace file format](https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU/edit?usp=sharing). @legneato pointed out that buck supports generating that format, and this tool could too. That would mean having access to a much...
Windows provides an API to associate an IO completion port with a Job object, by calling [`SetInformationJobObject`](https://msdn.microsoft.com/en-us/library/windows/desktop/ms686216(v=vs.85).aspx) with `JobObjectAssociateCompletionPortInformation` and passing in a [`JOBOBJECT_ASSOCIATE_COMPLETION_PORT`](https://msdn.microsoft.com/en-us/library/windows/desktop/ms684141(v=vs.85).aspx). The MSDN docs say the notifications...
It would be great to have macOS support. ptrace doesn't have the same options there, but I finally found [the necessary APIs](https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man3/dispatch_source_create.3.html) that should enable this. Specifically, calling `dispatch_source_create` with...