Hello,
Compile this sample program with clang 3.9.1 in 64bits mode
#include
int my_func(char c, double d)
{
std::cout << "c: " << c << std::endl;
std::cout << "d:" << d << std::endl;
return 0;
}
int main(int argc, char const *argv[])
{
int i = 0;
i++;
i++;
my_func('a', 10.1);
i++;
i++;
return 0
Hello,
As written in MSDN documentation
https://msdn.microsoft.com/fr-fr/library/windows/desktop/ms681400%28v=vs.85%29.aspx?f=255&MSPPError=-2147217396
UnDecorateSymbolName function is not thread safe and must be mutex guarded.
Thanks,
Olivier
___
lldb