calloop icon indicating copy to clipboard operation
calloop copied to clipboard

A callback-based Event Loop

Results 23 calloop issues
Sort by recently updated
recently updated
newest added

Bumps [peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages) from 3 to 4. Release notes Sourced from peaceiris/actions-gh-pages's releases. actions-github-pages v4.0.0 See CHANGELOG.md for more details. actions-github-pages v3.9.3 See CHANGELOG.md for more details. actions-github-pages v3.9.2 See CHANGELOG.md...

dependencies
github_actions

The fact that signals are only supported on Linux is currently one of the issues using Smithay on BSDs. It looks like it should be possible to implement this with...

Currently `Ping` is implemented using a `pipe`, which is a generic unix way of implementing it. However some platforms provide other primitives that could be used more efficiently for this,...

enhancement

To be added in the `sys` module.

enhancement

I am new to concurrent programming. I read the Calloop book and I am struggling to understand how this enables concurrency. From the documentation of the run method it seems...

It shouldn't be that hard, and it would remove some of the proc-macro crates (`syn`, `quote`) from the dependencies of `winit`.

There are a few inconsistencies in Calloop's higher-level event sources, and even though they are extremely minor, I thought I'd make the suggestion since I've coded up an alternative for...

When multiple are registered at the same time, those registered first should have priority to make scheduling behavior easier to predict. I don't think this should be added as documented...

`std::io::Error` does not implement `UnwindSafe` on account of its ability to wrap a `Box`. This infects `Generic` which in turn infects `Channel`, which is inconvenient because it means you can't...

I am creating an event source to handle IPC Events by reading a socket: ```rust pub struct IPCSource { socket_source: calloop::generic::Generic, } impl calloop::EventSource for IPCSource { type Event =...