5 ms·
We haven't looked at libdispatch specifically; would welcome your feedback on how we compare. We hope we do well here; we've had some nice results: https://git
by wezfurlong 13y ago
We haven't looked at libdispatch specifically; would welcome your feedback on how we compare.
We hope we do well here; we've had some nice results:
https://github.com/facebook/libphenom/commit/c2753c2154a0cffc0bd70e8f28dd0ea884aab4fd https://github.com/facebook/libphenom/commit/c2753c2154a0cff...
- wezfurlong 13y agoThis is the test code referenced by that commit: https://github.com/facebook/libphenom/blob/master/tests/tpool.c https://github.com/facebook/libphenom/blob/master/tests/tpoo...
- IPGlider 13y agoThat looks nice. I used libdispatch to prototype a server and would be great to compare with other libraries before starting the project. libPhenom seems to have much more features, maybe even more than I need, but the documentation seems good. I will try to make another prototype with your lib. Thanks.
- nwmcsween 13y agoWhy do you do -fno-omit-frame-pointer on x86_64 the ABI requires dwarf or is there something I'm missing?
- wezfurlong 13y agoFrame pointers make things easier for tools to get backtraces without requiring complex dwarf unwinders. The observability is something I value more than not being able to use that register for other things.