# HG changeset patch # User tomkiewicz@cpw.pidgin.im # Date 1318620283 0 # Node ID b8646c6ae19a6cf978ca1b0eb204852a741d0c98 # Parent 265311f1eed6b8eb72e6dc679ed5f5a0ffb74d11 Gadu-Gadu: more debug messages for win32thread resolver. diff -r 265311f1eed6 -r b8646c6ae19a libpurple/protocols/gg/lib/resolver.c --- a/libpurple/protocols/gg/lib/resolver.c Fri Oct 14 18:36:16 2011 +0000 +++ b/libpurple/protocols/gg/lib/resolver.c Fri Oct 14 19:24:43 2011 +0000 @@ -508,6 +508,8 @@ return -1; } + gg_debug(GG_DEBUG_MISC, "// gg_resolve_win32thread() creating pipes...\n"); + if (socket_pipe(pipes) == -1) { gg_debug(GG_DEBUG_MISC, "// gg_resolve_win32thread() unable to create pipes (errno=%d, %s)\n", errno, strerror(errno)); return -1; @@ -529,6 +531,8 @@ d->fd = pipes[1]; + gg_debug(GG_DEBUG_MISC, "// gg_resolve_win32thread() creating thread...\n"); + h = CreateThread(NULL, 0, gg_resolve_win32thread_thread, d, 0, &dwTId);