changeset 32744:b8646c6ae19a

Gadu-Gadu: more debug messages for win32thread resolver.
author tomkiewicz@cpw.pidgin.im
date Fri, 14 Oct 2011 19:24:43 +0000
parents 265311f1eed6
children 1cec4425d0cc
files libpurple/protocols/gg/lib/resolver.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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);