summaryrefslogtreecommitdiffstats
path: root/Python/thread_pthread.h
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2004-03-03 08:42:23 (GMT)
committerSkip Montanaro <skip@pobox.com>2004-03-03 08:42:23 (GMT)
commit6babcc2ad48f94ee15afac4a28c6f898937e20c7 (patch)
treef23f323354a14eafdfbfc763d1174eefa253f820 /Python/thread_pthread.h
parent35c62e58c555ce66f382ea0743abd4e7861f849e (diff)
downloadcpython-6babcc2ad48f94ee15afac4a28c6f898937e20c7.zip
cpython-6babcc2ad48f94ee15afac4a28c6f898937e20c7.tar.gz
cpython-6babcc2ad48f94ee15afac4a28c6f898937e20c7.tar.bz2
typo
Diffstat (limited to 'Python/thread_pthread.h')
-rw-r--r--Python/thread_pthread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h
index db8eab1..8645c0f 100644
--- a/Python/thread_pthread.h
+++ b/Python/thread_pthread.h
@@ -174,7 +174,7 @@ PyThread_start_new_thread(void (*func)(void *), void *arg)
/* XXX This implementation is considered (to quote Tim Peters) "inherently
hosed" because:
- - It does not guanrantee the promise that a non-zero integer is returned.
+ - It does not guarantee the promise that a non-zero integer is returned.
- The cast to long is inherently unsafe.
- It is not clear that the 'volatile' (for AIX?) and ugly casting in the
latter return statement (for Alpha OSF/1) are any longer necessary.