Timo

Results 22 comments of Timo

For me this was also necessary to cross-compile vsome-ip 3.1.20.3 with boost 1.74 for the Raspberry Pi 1 with Rasperry Pi OS. Thanks a lot for sharing your findings!

I have encountered the same issue when using the rust implementation of wasmer 2.3.0 (and wasmer_wasi crate 2.3.0). I can instantiate 83 modules but the 84th one always errors with...

Hey, I would like to work on this issue (first time working on Tokio). But I have a question regarding the implementation of `AsyncWrite` for `AsyncFd`: How should the implementation...

I thought of this basically as a "default implementation" of `Async{Read | Write}` for `AsyncFd` implementations. People could use this in cases where there is no need for a specialized...

I checked the API of the socket types of the master branch oof `mio` and compared them with the current version in the standard library (1.77.0). The following functions are...

> > Traits: > > > > * `AsFd` > > > > * `AsSocket` > > > > * `From` (and vice versa) > > > > * `From`...

Hey, I would like to work on this. I think we should also implement the `From` trait for the other socket types as well? @Thomasdezeeuw, what's your opinion on this?

> See the manual page: https://www.man7.org/linux/man-pages/man7/epoll.7.html, can't link directly but see the "Will closing a file descriptor cause it to be removed from all epoll interest lists?" question in the...

Hey, thanks for your contribution! I think we should also apply the same fix to the `event_notifier_kqueue` for consistency and to be sure that the error won't happen again when...

I would agree that this is not possible. Kqueue removes the file descriptor from its set when the file descriptor gets closed. As far as I know there is no...