Matt Millett
Matt Millett
The unexpected behavior persists even when I say `bbs_build install --install_dir /home/my/bde`: The artifacts are installed into `/home/my/bde/opt/bb`.
I also tried `bbs_build install --component pkgconfig` and that printed: ``` Install cmd: cmake -DCMAKE_INSTALL_PREFIX=/opt/bb -DCOMPONENT=pkgconfig -P cmake_install.cmake -- Install configuration: "RelWithDebInfo" -- Install component: "pkgconfig" ``` But didn't seem...
Are you able to post the complete code for your client? Stripped down if possible, but something that still reproduces this data race report from tsan.
It is an unfortunate reality that timer APIs are a mix of absolute and relative times, with some supporting one but not the other, and some supporting both. For example...
The difference is described in the section titled "Asynchronous Operation" in the `ntci::StreamSocket` class documentation. The result of `createXyxCallback` associates a function with an arbitrary strand and an optional mechanism...
I agree. Defaults are documented in some cases, e.g. https://github.com/bloomberg/ntf-core/blob/main/groups/nts/ntsa/ntsa_endpointoptions.h, but not all. We should revisit each value-semantic "options" and "configuration" type and ensure all fields have documented defaults. I...
The `MSG_NOSIGNAL` flag is already automatically used for `sendmsg` calls on Linux. A PR need only address applying the SO_NOSIGPIPE (if available on the target platform.)