diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-13 02:06:09 (GMT) |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-13 02:06:09 (GMT) |
commit | ac6bd46d5c30f4e643120aeef1ccd531801a2181 (patch) | |
tree | f753bb13f17b1490ca3c26580c16f1d32ea748dc /Python/pystate.c | |
parent | 28c5f1fa169ddaec9ad4914e2c263e383390ae43 (diff) | |
download | cpython-ac6bd46d5c30f4e643120aeef1ccd531801a2181.zip cpython-ac6bd46d5c30f4e643120aeef1ccd531801a2181.tar.gz cpython-ac6bd46d5c30f4e643120aeef1ccd531801a2181.tar.bz2 |
spread the extern "C" { } magic pixie dust around. Python itself builds now
using a C++ compiler. Still lots and lots of errors in the modules built by
setup.py, and a bunch of warnings from g++ in the core.
Diffstat (limited to 'Python/pystate.c')
-rw-r--r-- | Python/pystate.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index ca19b76..9c85b5c 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -37,6 +37,10 @@ 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 */ @@ -552,4 +556,11 @@ PyGILState_Release(PyGILState_STATE oldstate) else if (oldstate == PyGILState_UNLOCKED) PyEval_SaveThread(); } + +#ifdef __cplusplus +} +#endif + #endif /* WITH_THREAD */ + + |