diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-23 13:48:39 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-03-23 13:48:39 (GMT) |
commit | aefa7ebf0ff0f73feee7ab24f4cdcb2014d83ee5 (patch) | |
tree | 39560da26771d1e10add697e558bb727639fdbb0 /Python/thread.c | |
parent | 1e2147b9d75a64df370a9393c2b5b9d170dc0afd (diff) | |
download | cpython-aefa7ebf0ff0f73feee7ab24f4cdcb2014d83ee5.zip cpython-aefa7ebf0ff0f73feee7ab24f4cdcb2014d83ee5.tar.gz cpython-aefa7ebf0ff0f73feee7ab24f4cdcb2014d83ee5.tar.bz2 |
bpo-6532: Make the thread id an unsigned integer. (#781)
* bpo-6532: Make the thread id an unsigned integer.
From C API side the type of results of PyThread_start_new_thread() and
PyThread_get_thread_ident(), the id parameter of
PyThreadState_SetAsyncExc(), and the thread_id field of PyThreadState
changed from "long" to "unsigned long".
* Restore a check in thread_get_ident().
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/thread.c b/Python/thread.c index 63eeb1e..3a52e1e 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -172,7 +172,7 @@ struct key { struct key *next; /* The thread id, according to PyThread_get_thread_ident(). */ - long id; + unsigned long id; /* The key and its associated value. */ int key; @@ -208,7 +208,7 @@ static struct key * find_key(int set_value, int key, void *value) { struct key *p, *prev_p; - long id = PyThread_get_thread_ident(); + unsigned long id = PyThread_get_thread_ident(); if (!keymutex) return NULL; @@ -312,7 +312,7 @@ PyThread_get_key_value(int key) void PyThread_delete_key_value(int key) { - long id = PyThread_get_thread_ident(); + unsigned long id = PyThread_get_thread_ident(); struct key *p, **q; PyThread_acquire_lock(keymutex, 1); @@ -338,7 +338,7 @@ PyThread_delete_key_value(int key) void PyThread_ReInitTLS(void) { - long id = PyThread_get_thread_ident(); + unsigned long id = PyThread_get_thread_ident(); struct key *p, **q; if (!keymutex) |