Commit 092b50ab authored by Jim Fulton's avatar Jim Fulton

Updated to work with Python 1.5.2 new API names.

parent 1a86efc5
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE. DAMAGE.
$Id: ThreadLock.c,v 1.5 1998/11/17 21:43:50 jim Exp $ $Id: ThreadLock.c,v 1.6 1999/01/04 23:45:05 jim Exp $
If you have questions regarding this software, If you have questions regarding this software,
contact: contact:
...@@ -46,11 +46,24 @@ ...@@ -46,11 +46,24 @@
*/ */
static char ThreadLock_module_documentation[] = static char ThreadLock_module_documentation[] =
"" ""
"\n$Id: ThreadLock.c,v 1.5 1998/11/17 21:43:50 jim Exp $" "\n$Id: ThreadLock.c,v 1.6 1999/01/04 23:45:05 jim Exp $"
; ;
#include "Python.h" #include "Python.h"
#ifdef WITH_THREAD #ifdef WITH_THREAD
#if PYTHON_API_VERSION > 1007
#include "pythread.h"
#define get_thread_ident PyThread_get_thread_ident
#define acquire_lock PyThread_acquire_lock
#define release_lock PyThread_release_lock
#define type_lock PyThread_type_lock
#define free_lock PyThread_free_lock
#define allocate_lock PyThread_allocate_lock
#else
#include "listobject.h" #include "listobject.h"
#ifdef PyList_SET_ITEM #ifdef PyList_SET_ITEM
#include "pythread.h" #include "pythread.h"
...@@ -59,6 +72,8 @@ static char ThreadLock_module_documentation[] = ...@@ -59,6 +72,8 @@ static char ThreadLock_module_documentation[] =
#endif #endif
#endif #endif
#endif
static PyObject *ErrorObject; static PyObject *ErrorObject;
/* ----------------------------------------------------- */ /* ----------------------------------------------------- */
...@@ -282,7 +297,7 @@ void ...@@ -282,7 +297,7 @@ void
initThreadLock() initThreadLock()
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.5 $"; char *rev="$Revision: 1.6 $";
m = Py_InitModule4("ThreadLock", Module_methods, m = Py_InitModule4("ThreadLock", Module_methods,
ThreadLock_module_documentation, ThreadLock_module_documentation,
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE. DAMAGE.
$Id: ThreadLock.c,v 1.5 1998/11/17 21:43:50 jim Exp $ $Id: ThreadLock.c,v 1.6 1999/01/04 23:45:05 jim Exp $
If you have questions regarding this software, If you have questions regarding this software,
contact: contact:
...@@ -46,11 +46,24 @@ ...@@ -46,11 +46,24 @@
*/ */
static char ThreadLock_module_documentation[] = static char ThreadLock_module_documentation[] =
"" ""
"\n$Id: ThreadLock.c,v 1.5 1998/11/17 21:43:50 jim Exp $" "\n$Id: ThreadLock.c,v 1.6 1999/01/04 23:45:05 jim Exp $"
; ;
#include "Python.h" #include "Python.h"
#ifdef WITH_THREAD #ifdef WITH_THREAD
#if PYTHON_API_VERSION > 1007
#include "pythread.h"
#define get_thread_ident PyThread_get_thread_ident
#define acquire_lock PyThread_acquire_lock
#define release_lock PyThread_release_lock
#define type_lock PyThread_type_lock
#define free_lock PyThread_free_lock
#define allocate_lock PyThread_allocate_lock
#else
#include "listobject.h" #include "listobject.h"
#ifdef PyList_SET_ITEM #ifdef PyList_SET_ITEM
#include "pythread.h" #include "pythread.h"
...@@ -59,6 +72,8 @@ static char ThreadLock_module_documentation[] = ...@@ -59,6 +72,8 @@ static char ThreadLock_module_documentation[] =
#endif #endif
#endif #endif
#endif
static PyObject *ErrorObject; static PyObject *ErrorObject;
/* ----------------------------------------------------- */ /* ----------------------------------------------------- */
...@@ -282,7 +297,7 @@ void ...@@ -282,7 +297,7 @@ void
initThreadLock() initThreadLock()
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.5 $"; char *rev="$Revision: 1.6 $";
m = Py_InitModule4("ThreadLock", Module_methods, m = Py_InitModule4("ThreadLock", Module_methods,
ThreadLock_module_documentation, ThreadLock_module_documentation,
......
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