mirror of https://github.com/python/cpython.git
Renamed.
This commit is contained in:
parent
8069f43815
commit
d0c1042ff2
|
@ -32,7 +32,7 @@ PERFORMANCE OF THIS SOFTWARE.
|
||||||
/* Thread module */
|
/* Thread module */
|
||||||
/* Interface to Sjoerd's portable C thread library */
|
/* Interface to Sjoerd's portable C thread library */
|
||||||
|
|
||||||
#include "allobjects.h"
|
#include "Python.h"
|
||||||
|
|
||||||
#ifndef WITH_THREAD
|
#ifndef WITH_THREAD
|
||||||
Error! The rest of Python is not compiled with thread support.
|
Error! The rest of Python is not compiled with thread support.
|
||||||
|
@ -41,25 +41,25 @@ Rerun configure, adding a --with-thread option.
|
||||||
|
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
|
|
||||||
extern int threads_started;
|
extern int _PyThread_Started;
|
||||||
|
|
||||||
static object *ThreadError;
|
static PyObject *ThreadError;
|
||||||
|
|
||||||
|
|
||||||
/* Lock objects */
|
/* Lock objects */
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
OB_HEAD
|
PyObject_HEAD
|
||||||
type_lock lock_lock;
|
type_lock lock_lock;
|
||||||
} lockobject;
|
} lockobject;
|
||||||
|
|
||||||
staticforward typeobject Locktype;
|
staticforward PyTypeObject Locktype;
|
||||||
|
|
||||||
#define is_lockobject(v) ((v)->ob_type == &Locktype)
|
#define is_lockobject(v) ((v)->ob_type == &Locktype)
|
||||||
|
|
||||||
type_lock
|
type_lock
|
||||||
getlocklock(lock)
|
getlocklock(lock)
|
||||||
object *lock;
|
PyObject *lock;
|
||||||
{
|
{
|
||||||
if (lock == NULL || !is_lockobject(lock))
|
if (lock == NULL || !is_lockobject(lock))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -71,14 +71,14 @@ static lockobject *
|
||||||
newlockobject()
|
newlockobject()
|
||||||
{
|
{
|
||||||
lockobject *self;
|
lockobject *self;
|
||||||
self = NEWOBJ(lockobject, &Locktype);
|
self = PyObject_NEW(lockobject, &Locktype);
|
||||||
if (self == NULL)
|
if (self == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
self->lock_lock = allocate_lock();
|
self->lock_lock = allocate_lock();
|
||||||
if (self->lock_lock == NULL) {
|
if (self->lock_lock == NULL) {
|
||||||
DEL(self);
|
PyMem_DEL(self);
|
||||||
self = NULL;
|
self = NULL;
|
||||||
err_setstr(ThreadError, "can't allocate lock");
|
PyErr_SetString(ThreadError, "can't allocate lock");
|
||||||
}
|
}
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
@ -92,90 +92,90 @@ lock_dealloc(self)
|
||||||
release_lock(self->lock_lock);
|
release_lock(self->lock_lock);
|
||||||
|
|
||||||
free_lock(self->lock_lock);
|
free_lock(self->lock_lock);
|
||||||
DEL(self);
|
PyMem_DEL(self);
|
||||||
}
|
}
|
||||||
|
|
||||||
static object *
|
static PyObject *
|
||||||
lock_acquire_lock(self, args)
|
lock_acquire_lock(self, args)
|
||||||
lockobject *self;
|
lockobject *self;
|
||||||
object *args;
|
PyObject *args;
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (args != NULL) {
|
if (args != NULL) {
|
||||||
if (!getargs(args, "i", &i))
|
if (!PyArg_Parse(args, "i", &i))
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
i = 1;
|
i = 1;
|
||||||
|
|
||||||
BGN_SAVE
|
Py_BEGIN_ALLOW_THREADS
|
||||||
i = acquire_lock(self->lock_lock, i);
|
i = acquire_lock(self->lock_lock, i);
|
||||||
END_SAVE
|
Py_END_ALLOW_THREADS
|
||||||
|
|
||||||
if (args == NULL) {
|
if (args == NULL) {
|
||||||
INCREF(None);
|
Py_INCREF(Py_None);
|
||||||
return None;
|
return Py_None;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return newintobject((long)i);
|
return PyInt_FromLong((long)i);
|
||||||
}
|
}
|
||||||
|
|
||||||
static object *
|
static PyObject *
|
||||||
lock_release_lock(self, args)
|
lock_release_lock(self, args)
|
||||||
lockobject *self;
|
lockobject *self;
|
||||||
object *args;
|
PyObject *args;
|
||||||
{
|
{
|
||||||
if (!getnoarg(args))
|
if (!PyArg_NoArgs(args))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
/* Sanity check: the lock must be locked */
|
/* Sanity check: the lock must be locked */
|
||||||
if (acquire_lock(self->lock_lock, 0)) {
|
if (acquire_lock(self->lock_lock, 0)) {
|
||||||
release_lock(self->lock_lock);
|
release_lock(self->lock_lock);
|
||||||
err_setstr(ThreadError, "release unlocked lock");
|
PyErr_SetString(ThreadError, "release unlocked lock");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
release_lock(self->lock_lock);
|
release_lock(self->lock_lock);
|
||||||
INCREF(None);
|
Py_INCREF(Py_None);
|
||||||
return None;
|
return Py_None;
|
||||||
}
|
}
|
||||||
|
|
||||||
static object *
|
static PyObject *
|
||||||
lock_locked_lock(self, args)
|
lock_locked_lock(self, args)
|
||||||
lockobject *self;
|
lockobject *self;
|
||||||
object *args;
|
PyObject *args;
|
||||||
{
|
{
|
||||||
if (!getnoarg(args))
|
if (!PyArg_NoArgs(args))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (acquire_lock(self->lock_lock, 0)) {
|
if (acquire_lock(self->lock_lock, 0)) {
|
||||||
release_lock(self->lock_lock);
|
release_lock(self->lock_lock);
|
||||||
return newintobject(0L);
|
return PyInt_FromLong(0L);
|
||||||
}
|
}
|
||||||
return newintobject(1L);
|
return PyInt_FromLong(1L);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct methodlist lock_methods[] = {
|
static PyMethodDef lock_methods[] = {
|
||||||
{"acquire_lock", (method)lock_acquire_lock},
|
{"acquire_lock", (PyCFunction)lock_acquire_lock},
|
||||||
{"acquire", (method)lock_acquire_lock},
|
{"acquire", (PyCFunction)lock_acquire_lock},
|
||||||
{"release_lock", (method)lock_release_lock},
|
{"release_lock", (PyCFunction)lock_release_lock},
|
||||||
{"release", (method)lock_release_lock},
|
{"release", (PyCFunction)lock_release_lock},
|
||||||
{"locked_lock", (method)lock_locked_lock},
|
{"locked_lock", (PyCFunction)lock_locked_lock},
|
||||||
{"locked", (method)lock_locked_lock},
|
{"locked", (PyCFunction)lock_locked_lock},
|
||||||
{NULL, NULL} /* sentinel */
|
{NULL, NULL} /* sentinel */
|
||||||
};
|
};
|
||||||
|
|
||||||
static object *
|
static PyObject *
|
||||||
lock_getattr(self, name)
|
lock_getattr(self, name)
|
||||||
lockobject *self;
|
lockobject *self;
|
||||||
char *name;
|
char *name;
|
||||||
{
|
{
|
||||||
return findmethod(lock_methods, (object *)self, name);
|
return Py_FindMethod(lock_methods, (PyObject *)self, name);
|
||||||
}
|
}
|
||||||
|
|
||||||
static typeobject Locktype = {
|
static PyTypeObject Locktype = {
|
||||||
OB_HEAD_INIT(&Typetype)
|
PyObject_HEAD_INIT(&PyType_Type)
|
||||||
0, /*ob_size*/
|
0, /*ob_size*/
|
||||||
"lock", /*tp_name*/
|
"lock", /*tp_name*/
|
||||||
sizeof(lockobject), /*tp_size*/
|
sizeof(lockobject), /*tp_size*/
|
||||||
|
@ -196,113 +196,113 @@ static void
|
||||||
t_bootstrap(args_raw)
|
t_bootstrap(args_raw)
|
||||||
void *args_raw;
|
void *args_raw;
|
||||||
{
|
{
|
||||||
object *args = (object *) args_raw;
|
PyObject *args = (PyObject *) args_raw;
|
||||||
object *func, *arg, *res;
|
PyObject *func, *arg, *res;
|
||||||
|
|
||||||
threads_started++;
|
_PyThread_Started++;
|
||||||
|
|
||||||
restore_thread((void *)NULL);
|
PyEval_RestoreThread((void *)NULL);
|
||||||
func = gettupleitem(args, 0);
|
func = PyTuple_GetItem(args, 0);
|
||||||
arg = gettupleitem(args, 1);
|
arg = PyTuple_GetItem(args, 1);
|
||||||
res = call_object(func, arg);
|
res = PyEval_CallObject(func, arg);
|
||||||
DECREF(args); /* Matches the INCREF(args) in thread_start_new_thread */
|
Py_DECREF(args); /* Matches the INCREF(args) in thread_start_new_thread */
|
||||||
if (res == NULL) {
|
if (res == NULL) {
|
||||||
if (err_occurred() == SystemExit)
|
if (PyErr_Occurred() == PyExc_SystemExit)
|
||||||
err_clear();
|
PyErr_Clear();
|
||||||
else {
|
else {
|
||||||
fprintf(stderr, "Unhandled exception in thread:\n");
|
fprintf(stderr, "Unhandled exception in thread:\n");
|
||||||
print_error(); /* From pythonmain.c */
|
PyErr_Print(); /* From pythonmain.c */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
DECREF(res);
|
Py_DECREF(res);
|
||||||
(void) save_thread(); /* Should always be NULL */
|
(void) PyEval_SaveThread(); /* Should always be NULL */
|
||||||
exit_thread();
|
exit_thread();
|
||||||
}
|
}
|
||||||
|
|
||||||
static object *
|
static PyObject *
|
||||||
thread_start_new_thread(self, args)
|
thread_start_new_thread(self, args)
|
||||||
object *self; /* Not used */
|
PyObject *self; /* Not used */
|
||||||
object *args;
|
PyObject *args;
|
||||||
{
|
{
|
||||||
object *func, *arg;
|
PyObject *func, *arg;
|
||||||
|
|
||||||
if (!getargs(args, "(OO)", &func, &arg))
|
if (!PyArg_Parse(args, "(OO)", &func, &arg))
|
||||||
return NULL;
|
return NULL;
|
||||||
INCREF(args);
|
Py_INCREF(args);
|
||||||
/* Initialize the interpreter's stack save/restore mechanism */
|
/* Initialize the interpreter's stack save/restore mechanism */
|
||||||
init_save_thread();
|
PyEval_InitThreads();
|
||||||
if (!start_new_thread(t_bootstrap, (void*) args)) {
|
if (!start_new_thread(t_bootstrap, (void*) args)) {
|
||||||
DECREF(args);
|
Py_DECREF(args);
|
||||||
err_setstr(ThreadError, "can't start new thread\n");
|
PyErr_SetString(ThreadError, "can't start new thread\n");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
/* Otherwise the DECREF(args) is done by t_bootstrap */
|
/* Otherwise the DECREF(args) is done by t_bootstrap */
|
||||||
INCREF(None);
|
Py_INCREF(Py_None);
|
||||||
return None;
|
return Py_None;
|
||||||
}
|
}
|
||||||
|
|
||||||
static object *
|
static PyObject *
|
||||||
thread_exit_thread(self, args)
|
thread_exit_thread(self, args)
|
||||||
object *self; /* Not used */
|
PyObject *self; /* Not used */
|
||||||
object *args;
|
PyObject *args;
|
||||||
{
|
{
|
||||||
if (!getnoarg(args))
|
if (!PyArg_NoArgs(args))
|
||||||
return NULL;
|
return NULL;
|
||||||
err_set(SystemExit);
|
PyErr_SetNone(PyExc_SystemExit);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef NO_EXIT_PROG
|
#ifndef NO_EXIT_PROG
|
||||||
static object *
|
static PyObject *
|
||||||
thread_exit_prog(self, args)
|
thread_exit_prog(self, args)
|
||||||
object *self; /* Not used */
|
PyObject *self; /* Not used */
|
||||||
object *args;
|
PyObject *args;
|
||||||
{
|
{
|
||||||
int sts;
|
int sts;
|
||||||
if (!getargs(args, "i", &sts))
|
if (!PyArg_Parse(args, "i", &sts))
|
||||||
return NULL;
|
return NULL;
|
||||||
goaway(sts); /* Calls exit_prog(sts) or _exit_prog(sts) */
|
Py_Exit(sts); /* Calls exit_prog(sts) or _exit_prog(sts) */
|
||||||
for (;;) { } /* Should not be reached */
|
for (;;) { } /* Should not be reached */
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static object *
|
static PyObject *
|
||||||
thread_allocate_lock(self, args)
|
thread_allocate_lock(self, args)
|
||||||
object *self; /* Not used */
|
PyObject *self; /* Not used */
|
||||||
object *args;
|
PyObject *args;
|
||||||
{
|
{
|
||||||
if (!getnoarg(args))
|
if (!PyArg_NoArgs(args))
|
||||||
return NULL;
|
return NULL;
|
||||||
return (object *) newlockobject();
|
return (PyObject *) newlockobject();
|
||||||
}
|
}
|
||||||
|
|
||||||
static object *
|
static PyObject *
|
||||||
thread_get_ident(self, args)
|
thread_get_ident(self, args)
|
||||||
object *self; /* Not used */
|
PyObject *self; /* Not used */
|
||||||
object *args;
|
PyObject *args;
|
||||||
{
|
{
|
||||||
long ident;
|
long ident;
|
||||||
if (!getnoarg(args))
|
if (!PyArg_NoArgs(args))
|
||||||
return NULL;
|
return NULL;
|
||||||
ident = get_thread_ident();
|
ident = get_thread_ident();
|
||||||
if (ident == -1) {
|
if (ident == -1) {
|
||||||
err_setstr(ThreadError, "no current thread ident");
|
PyErr_SetString(ThreadError, "no current thread ident");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
return newintobject(ident);
|
return PyInt_FromLong(ident);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct methodlist thread_methods[] = {
|
static PyMethodDef thread_methods[] = {
|
||||||
{"start_new_thread", (method)thread_start_new_thread},
|
{"start_new_thread", (PyCFunction)thread_start_new_thread},
|
||||||
{"start_new", (method)thread_start_new_thread},
|
{"start_new", (PyCFunction)thread_start_new_thread},
|
||||||
{"allocate_lock", (method)thread_allocate_lock},
|
{"allocate_lock", (PyCFunction)thread_allocate_lock},
|
||||||
{"allocate", (method)thread_allocate_lock},
|
{"allocate", (PyCFunction)thread_allocate_lock},
|
||||||
{"exit_thread", (method)thread_exit_thread},
|
{"exit_thread", (PyCFunction)thread_exit_thread},
|
||||||
{"exit", (method)thread_exit_thread},
|
{"exit", (PyCFunction)thread_exit_thread},
|
||||||
{"get_ident", (method)thread_get_ident},
|
{"get_ident", (PyCFunction)thread_get_ident},
|
||||||
#ifndef NO_EXIT_PROG
|
#ifndef NO_EXIT_PROG
|
||||||
{"exit_prog", (method)thread_exit_prog},
|
{"exit_prog", (PyCFunction)thread_exit_prog},
|
||||||
#endif
|
#endif
|
||||||
{NULL, NULL} /* sentinel */
|
{NULL, NULL} /* sentinel */
|
||||||
};
|
};
|
||||||
|
@ -313,20 +313,20 @@ static struct methodlist thread_methods[] = {
|
||||||
void
|
void
|
||||||
initthread()
|
initthread()
|
||||||
{
|
{
|
||||||
object *m, *d;
|
PyObject *m, *d;
|
||||||
|
|
||||||
/* Create the module and add the functions */
|
/* Create the module and add the functions */
|
||||||
m = initmodule("thread", thread_methods);
|
m = Py_InitModule("thread", thread_methods);
|
||||||
|
|
||||||
/* Add a symbolic constant */
|
/* Add a symbolic constant */
|
||||||
d = getmoduledict(m);
|
d = PyModule_GetDict(m);
|
||||||
ThreadError = newstringobject("thread.error");
|
ThreadError = PyString_FromString("thread.error");
|
||||||
INCREF(ThreadError);
|
Py_INCREF(ThreadError);
|
||||||
dictinsert(d, "error", ThreadError);
|
PyDict_SetItemString(d, "error", ThreadError);
|
||||||
|
|
||||||
/* Check for errors */
|
/* Check for errors */
|
||||||
if (err_occurred())
|
if (PyErr_Occurred())
|
||||||
fatal("can't initialize module thread");
|
Py_FatalError("can't initialize module thread");
|
||||||
|
|
||||||
/* Initialize the C thread library */
|
/* Initialize the C thread library */
|
||||||
init_thread();
|
init_thread();
|
||||||
|
|
Loading…
Reference in New Issue