diff options
author | Tom Tromey <tromey@redhat.com> | 2008-12-22 16:25:17 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2008-12-22 16:25:17 +0000 |
commit | f2f35b75ff2ed85fc9be04608e88dc3345d9617e (patch) | |
tree | a4f5a4ec55598f839c6c7bb209586911420f8758 /gdb | |
parent | ba163c7e4485a5653070684f15f8eb06d62683a5 (diff) | |
download | binutils-f2f35b75ff2ed85fc9be04608e88dc3345d9617e.zip binutils-f2f35b75ff2ed85fc9be04608e88dc3345d9617e.tar.gz binutils-f2f35b75ff2ed85fc9be04608e88dc3345d9617e.tar.bz2 |
2008-12-22 Paul Pluzhnikov <ppluzhnikov@google.com>
* python/python-internal.h (PyEval_ReleaseLock): New define.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/python/python-internal.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 49fecf4..8d2980b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2008-12-22 Paul Pluzhnikov <ppluzhnikov@google.com> + + * python/python-internal.h (PyEval_ReleaseLock): New define. + 2008-12-22 Tom Tromey <tromey@redhat.com> * c-exp.y (ident_tokens): New global. diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index dbc0a53..b2d7757 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -52,6 +52,7 @@ typedef Py_intptr_t Py_ssize_t; #define PyEval_InitThreads() 0 #define PyThreadState_Swap(ARG) (ARG) #define PyEval_InitThreads() 0 +#define PyEval_ReleaseLock() 0 #endif struct value; |