Rui Figueira
Rui Figueira
Hi Don, I'm trying to use dynamic sample names, and the visualizer is not showing the names. E.g:  I looked at Remotery's code and couldn't spot what's causing this....
Crash on shutdown if rmt_DestroyGlobalInstance is called right after initialization without delay.
I'm adding Remotery in an SDK I'm working on, and I found out that Remotery crashes if I don't have a delay after initialization. This is the callstack: ``` >...
Consider making those classes movable. This makes it easier to do things the same as in Asio. E.g in http://think-async.com/Asio/asio-1.10.6/src/examples/cpp11/echo/async_tcp_echo_server.cpp : ``` acceptor_.async_accept(socket_, [this](std::error_code ec) { if (!ec) { std::make_shared(std::move(socket_))->start();...
This would be the equivalent of Asio's service::dispatch. Unlike Service::post, dispatch will execute the handler right away if all the czspas guarantees can be met. This requires adding a Callstack...
This is so multiple threads can dequeue completed handlers. Pretty much like Asio. Although by allowing this, it would seriously complicate things for the user, since access to sockets would...
I'm hitting crashes/exceptions due to what seems to be incorrect handling of `IEnumWbemClassObject::Next` ``` ULONG u_return = 0; IWbemClassObject* obj = nullptr; int cpu_id = 0; while (wmi.enumerator) { wmi.enumerator->Next(WBEM_INFINITE,...
Hi, We are using csv-export and then pass that to our CI analysis tool to look for regressions in our SDK. According to the manual, the exported `mean_ns` is what...