summaryrefslogtreecommitdiff
path: root/obsolete/geneticthread.c
blob: 33520a67a7602c14747fd18a5e0870cbc72ce6e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * This is a python module implementing real threads.
 */
#include <Python.h>
#include <pthread.h>

/**
 * Callback for the thread. Just calls the argument's python function.
 */
static void * thread_cb (void * arg)
{
	PyObject * arglist;

	arglist = Py_BuildValue("()",NULL);
	PyEval_CallObject((PyObject*)arg, arglist);
    Py_DECREF(arglist);
	Py_DECREF((PyObject*)arg);

	return NULL;
}

/**
 * Function called from the python application.
 */
static PyObject * thread_start (PyObject * self, PyObject *args)
{
	PyObject *temp;
	pthread_t ID;

    if (PyArg_ParseTuple(args, "O:thread_start", &temp))  // get argument
	{
        if (!PyCallable_Check(temp)) // not callable
		{
            PyErr_SetString(PyExc_TypeError, "parameter must be callable");
            return NULL;
        }
        Py_INCREF(temp);         /* Add a reference to new callback */
		int status = pthread_create(&ID, NULL, thread_cb, (void*) temp);
		if (status)
		{
			PyErr_SetString(PyExc_SystemError, "error during thread start");
			return NULL;
		}
    }
	
	Py_RETURN_NONE;
}

static PyMethodDef ThreadMethods[] = {
    {"thread_start",  thread_start, METH_VARARGS,
     "Start a new thread."},
    {NULL, NULL, 0, NULL}        /* Sentinel */
};

/**
 * Init function.
 */
PyMODINIT_FUNC
initgeneticthread(void)
{
    (void) Py_InitModule("geneticthread", ThreadMethods);
}
assword-store.sh?h=1.7.2&id=0f0483f789e4819b029cf2f9d8168a6172da4d92&follow=1'>init: allow deinitializationJason A. Donenfeld2-2/+18 2014-04-18bash-completion: filter dot files from resultsJason A. Donenfeld1-3/+8 2014-04-18reencrypt: remove option, do automaticallyJason A. Donenfeld5-39/+25 2014-04-18reencryption: add to completion filesJason A. Donenfeld3-1/+5 2014-04-18Specify variable gpg.Jason A. Donenfeld1-1/+1 2014-04-18style: don't escape new line on &&Jason A. Donenfeld1-2/+2 2014-04-18reencryption: remove temporary file on failureJason A. Donenfeld1-1/+1 2014-04-18reencryption: only reencrypt files when requiredJason A. Donenfeld2-16/+37 2014-04-17cp: typo as cvJason A. Donenfeld1-1/+1 2014-04-17bash: gpg_id is localJason A. Donenfeld1-0/+1 2014-04-17move/copy: always reencrypt passwords at destinationJason A. Donenfeld5-25/+56 2014-04-17makefile: allow platform files with gnu sedJason A. Donenfeld1-7/+8 2014-04-17mv: Add pass mv/rename supportJason A. Donenfeld5-3/+78 2014-04-17revelation2pass: add plain XML importJavali1-11/+15 2014-04-17platform: add cygwin supportJason A. Donenfeld2-1/+17