Rui Figueira

Results 8 issues of Rui Figueira

Hi Don, I'm trying to use dynamic sample names, and the visualizer is not showing the names. E.g: ![image](https://github.com/Celtoys/Remotery/assets/1397363/feca55a5-90f5-4141-8faf-67567f339e2a) I looked at Remotery's code and couldn't spot what's causing this....

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,...

bug
windows

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...