qubes-installer-qubes-os/anaconda/pyanaconda/isys/isys.c
Marek Marczykowski-Górecki 3e63d1dd37 anaconda: update to 21.48.21-1
Apply diff anaconda-20.25.16-1..anaconda-21.48.21-1
2016-03-22 02:27:15 +13:00

93 lines
2.4 KiB
C

/*
* 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 <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <Python.h>
#include <stdio.h>
#include <sys/time.h>
#include <unistd.h>
#include <sys/types.h>
#include <signal.h>
#include <execinfo.h>
#include <stdlib.h>
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: */