commit | 2c40adb1e4d09caef9a459864598c0b2518e7c86 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Oct 16 21:50:04 2001 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Oct 16 21:50:04 2001 +0000 |
tree | b54ab4b4b025cab6f933fa86843e28da5314791e | |
parent | 9074ef60818e561674e601f2859c799a28b00a78 [diff] |
Fix a bug in the previous checkin. The wrong bootstrap function was passed to _beginthread().
diff --git a/Python/thread_nt.h b/Python/thread_nt.h index 21aac29..6eac020 100644 --- a/Python/thread_nt.h +++ b/Python/thread_nt.h
@@ -193,7 +193,7 @@ obj->arg = arg; obj->done = CreateSemaphore(NULL, 0, 1, NULL); - rv = _beginthread(func, 0, obj); /* use default stack size */ + rv = _beginthread(bootstrap, 0, obj); /* use default stack size */ if (rv != (unsigned long)-1) { success = 1;