/* * isys.c * * Copyright (C) 2007, 2008, 2009 Red Hat, Inc. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "config.h" #include #include #include #include #include #include #include #include static PyObject * doSync(PyObject * s, PyObject * args); static PyObject * doSegvHandler(PyObject *s, PyObject *args); static PyObject * doSetSystemTime(PyObject *s, PyObject *args); static PyMethodDef isysModuleMethods[] = { { "sync", (PyCFunction) doSync, METH_VARARGS, NULL}, { "handleSegv", (PyCFunction) doSegvHandler, METH_VARARGS, NULL }, { "set_system_time", (PyCFunction) doSetSystemTime, METH_VARARGS, NULL}, { NULL, NULL, 0, NULL } } ; /* cppcheck-suppress unusedFunction */ void init_isys(void) { Py_InitModule("_isys", isysModuleMethods); } static PyObject * doSync(PyObject * s, PyObject * args) { int fd; if (!PyArg_ParseTuple(args, "", &fd)) return NULL; sync(); Py_INCREF(Py_None); return Py_None; } static PyObject * doSegvHandler(PyObject *s, PyObject *args) { void *array[20]; size_t size; char **strings; size_t i; signal(SIGSEGV, SIG_DFL); /* back to default */ size = backtrace (array, 20); strings = backtrace_symbols (array, size); printf ("Anaconda received SIGSEGV!. Backtrace:\n"); for (i = 0; i < size; i++) printf ("%s\n", strings[i]); free (strings); exit(1); } static PyObject * doSetSystemTime(PyObject *s, PyObject *args) { struct timeval tv; tv.tv_usec = 0; if (!PyArg_ParseTuple(args, "L", &(tv.tv_sec))) return NULL; if (settimeofday(&tv, NULL) != 0) PyErr_SetFromErrno(PyExc_SystemError); Py_INCREF(Py_None); return Py_None; } /* vim:set shiftwidth=4 softtabstop=4: */