diff options
| author | Guido van Rossum <guido@python.org> | 2001-10-16 21:50:04 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2001-10-16 21:50:04 +0000 |
| commit | eeb16b9ebb169edffd4e10c2445a0929dc456519 (patch) | |
| tree | e8c47ff1a700b53a2224d6950eee35229cb39277 | |
| parent | 3be4df72ee9f65b0ac3afbe6e85b14fa2f4828cd (diff) | |
| download | cpython-eeb16b9ebb169edffd4e10c2445a0929dc456519.tar.gz | |
Fix a bug in the previous checkin. The wrong bootstrap function was
passed to _beginthread().
| -rw-r--r-- | Python/thread_nt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread_nt.h b/Python/thread_nt.h index 21aac29a49..6eac020ee0 100644 --- a/Python/thread_nt.h +++ b/Python/thread_nt.h @@ -193,7 +193,7 @@ long PyThread_start_new_thread(void (*func)(void *), void *arg) 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; |
