Josh Junon
Josh Junon
yeah I'm sure it hasn't caused problems but I was adding a test and noticed it, figured it seemed kind of strange and was a potential cause for false positives...
@axboe Feel free to re-open. I'll re-title and submit a PR to do exactly what you said in your last sentence as I agree entirely :)
@markpapadakis Have you taken a look at the benchmarks that are quoted above? They use many connections at once, thus many FDs at once. uring still consistently performs worse, in...
@alexhultman Check netty/netty#10622 - I won't have any bandwidth for the next day or two, but maybe that will pique your interest.
Also, just to add (note that I was a skeptic above as well): Hypervisors tend to level out epoll vs io_uring performance benchmarks in my findings - if you're within...
Meh I never use `find_package` personally as it is usually a huge headache. I tend to just `add_subdirectory` directly. Feel free to PR though. :)
Yep definitely using CoreFoundation (it's a game engine, with a bunch of window calls). Glad it wasn't localized to my application ^^ As for testing the patches, should I rebase...
Output from `feature/wqthread_fix`. Built valgrind with `./autogen.sh && ./configure && make && sudo make install && valgrind /path/to/my/app` ``` --77136-- UNKNOWN mach_msg unhandled MACH_SEND_TRAILER option (repeated 8 times) valgrind: m_syswrap/syswrap-amd64-darwin.c:512...
Alright, sounds good :) Let me know if I can help in any way! Thanks for all of the work you've done, it's incredibly appreciated.
Throwing makes the most sense, or in the case that `-fno-exceptions` is on, then `std::abort()` and document that invalid input is simply not tolerated.