Changeset: ec32d648585b for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/ec32d648585b
Modified Files:
gdk/gdk_system.c
Branch: default
Log Message:
Fix windows compilation.
diffs (12 lines):
diff --git a/gdk/gdk_system.c b/gdk/gdk_system.c
--- a/gdk/gdk_system.c
+++ b/gdk/gdk_system.c
@@ -907,7 +907,7 @@ MT_kill_thread(struct mtthread *t)
/* detached thread */
HANDLE h;
bool ret = false;
- h = OpenThread(THREAD_ALL_ACCESS, 0, (DWORD) tid);
+ h = OpenThread(THREAD_ALL_ACCESS, 0, (DWORD) t->tid);
if (h == NULL)
return false;
if (TerminateThread(h, -1))
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]