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 63 64 65
|
#ifdef WITH_DEPENDENCY
#include "dependency.h"
#else
#include <malloc.h>
#include <stdlib.h>
#include <stdint.h>
#include <math.h>
#if defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 28)
#include <threads.h>
#endif
#endif
#include <Python.h>
static __thread int tres = 0;
static PyObject *
run(PyObject *self, PyObject *args)
{
int res;
(void)self;
(void)args;
#ifdef WITH_DEPENDENCY
res = dep_run();
#elif defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 28)
res = thrd_equal(thrd_current(), thrd_current()) ? 0 : 1;
#elif defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 24)
res = (int)nextupf(0.0F);
#elif defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 17)
res = (int)(intptr_t)secure_getenv("NON_EXISTING_ENV_VARIABLE");
#elif defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 10)
res = malloc_info(0, stdout);
#else
res = 0;
#endif
return PyLong_FromLong(res + tres);
}
static PyObject *
set_tres(PyObject *self, PyObject *args)
{
(void)self;
(void)args;
tres = 1;
return PyLong_FromLong(tres);
}
/* Module initialization */
PyMODINIT_FUNC PyInit_testdependencies(void)
{
static PyMethodDef module_methods[] = {
{"run", (PyCFunction)run, METH_NOARGS, "run."},
{"set_tres", (PyCFunction)set_tres, METH_NOARGS, "set_tres."},
{NULL} /* Sentinel */
};
static struct PyModuleDef moduledef = {
PyModuleDef_HEAD_INIT,
"testdependencies",
"testdependencies module",
-1,
module_methods,
};
return PyModule_Create(&moduledef);
}
|