e8c4910e2e
win32/msvc cc does not recognize the %z format specifier which caused invalid references and segfaults on win32. Until FreeRDP gets format specifier macros we'll cast size_t to unsigned long and use the %lu specifier. Also simplified winpr_backtrace_symbols() a little bit and fixed it to allocate the correct amount of bytes for the return buffer.
29 lines
497 B
C
29 lines
497 B
C
#include <stdio.h>
|
|
#include <winpr/debug.h>
|
|
|
|
int TestBacktrace(int argc, char* argv[])
|
|
{
|
|
int rc = -1;
|
|
size_t used, x;
|
|
char **msg;
|
|
void *stack = winpr_backtrace(20);
|
|
if (!stack)
|
|
{
|
|
fprintf(stderr, "winpr_backtrace failed!\n");
|
|
return -1;
|
|
}
|
|
|
|
msg = winpr_backtrace_symbols(stack, &used);
|
|
if (msg)
|
|
{
|
|
for (x=0; x<used; x++)
|
|
printf("%lu: %s\n", (unsigned long)x, msg[x]);
|
|
rc = 0;
|
|
}
|
|
winpr_backtrace_symbols_fd(stack, fileno(stdout));
|
|
|
|
winpr_backtrace_free(stack);
|
|
|
|
return rc;
|
|
}
|