Commit 43162b8a authored by Benjamin Peterson's avatar Benjamin Peterson

take linkage def outside of WITH_THREAD conditional (closes #14569)

parent 504a83f0
......@@ -22,6 +22,9 @@ the expense of doing their own locking).
#endif
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifdef WITH_THREAD
#include "pythread.h"
......@@ -30,10 +33,6 @@ static PyThread_type_lock head_mutex = NULL; /* Protects interp->tstate_head */
#define HEAD_LOCK() PyThread_acquire_lock(head_mutex, WAIT_LOCK)
#define HEAD_UNLOCK() PyThread_release_lock(head_mutex)
#ifdef __cplusplus
extern "C" {
#endif
/* The single PyInterpreterState used by this process'
GILState implementation
*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment