diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-02-23 23:19:39 +0000 |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-02-23 23:19:39 +0000 |
commit | adfc80bd8111de9e5045e9d693dfc8b6821bed75 (patch) | |
tree | 48499b4fe14c46259c09e2a0ec964b9e88b18675 /Python/thread_nt.h | |
parent | f20f9c299ee093fd67c5b3caf0b5013af71c3136 (diff) | |
download | cpython-git-adfc80bd8111de9e5045e9d693dfc8b6821bed75.tar.gz |
#4852: Remove dead code in every thread implementation, unused for many years.
Diffstat (limited to 'Python/thread_nt.h')
-rw-r--r-- | Python/thread_nt.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Python/thread_nt.h b/Python/thread_nt.h index 633fe4018f..0c5d1929c3 100644 --- a/Python/thread_nt.h +++ b/Python/thread_nt.h @@ -203,16 +203,6 @@ PyThread_exit_thread(void) #endif } -#ifndef NO_EXIT_PROG -void -PyThread_exit_prog(int status) -{ - dprintf(("PyThread_exit_prog(%d) called\n", status)); - if (!initialized) - exit(status); -} -#endif /* NO_EXIT_PROG */ - /* * Lock support. It has too be implemented as semaphores. * I [Dag] tried to implement it with mutex but I could find a way to |