Juha Lepola

Results 9 issues of Juha Lepola

Markdown support helps to streamline the publishing of the results in GitHub. I.e. remove the need to reformat the console output to Markdown table format when publishing the results in...

enhancement
help wanted

I'm adding support to [proxide](https://github.com/Rantanen/proxide/) proxy for capturing the stack traces of the client process that makes requests through the proxy when the client process and the proxide proxy reside...

We could model our exception as follows: std::logic_error ->intercom::logic_error - -> intercom::no_such_interface - -> ... std::runtime_exception -> intercom::runtime_exception - -> ... This was the next task I was planning to...

Currently _MSC_VER is used as a substitute but it prevents the use of the library with e.g. Clang on Windows.

On Windows platform unloading is handled with the combination of [DllCanUnloadNow](https://msdn.microsoft.com/en-us/library/windows/desktop/ms690368.aspx) and [CoFreeUnusedLibraries](https://msdn.microsoft.com/en-us/library/windows/desktop/ms679712.aspx). Our Rust libraries should support this on Windows. On other platforms we need to implement the required...

The capture is done if the client provided the process id and the thread id of the client's thread for the capture. A parametrization will be added in the future...

This adds parts of the infrastructure required to display the callstack in the ui. And adds a test to verify the basic capturing concept works. The implementation requires utilizing rstack_self...

Currently the task in htt2p.rs only reports that capturing the callstack is not supported on any operating system. But now with the asynchronously executed capture task it will be possible...

The area becomes visible if the client included both the process id and the thread id of the calling thread in the headers of a request. Support for capturing and...