cpython/Modules/timingmodule.c

88 lines
1.2 KiB
C
Raw Normal View History

/*
* Author: George V. Neville-Neil
*/
1997-01-13 18:57:42 -04:00
#include "Python.h"
/* Our stuff... */
#include "timing.h"
1997-01-13 18:57:42 -04:00
static PyObject *
start_timing(self, args)
1997-01-13 18:57:42 -04:00
PyObject *self;
PyObject *args;
{
1997-01-13 18:57:42 -04:00
if (!PyArg_Parse(args, ""))
return NULL;
1997-01-13 18:57:42 -04:00
Py_INCREF(Py_None);
BEGINTIMING;
return Py_None;
}
1997-01-13 18:57:42 -04:00
static PyObject *
finish_timing(self, args)
1997-01-13 18:57:42 -04:00
PyObject *self;
PyObject *args;
{
1997-01-13 18:57:42 -04:00
if (!PyArg_Parse(args, ""))
return NULL;
1997-01-13 18:57:42 -04:00
ENDTIMING
Py_INCREF(Py_None);
return Py_None;
}
1997-01-13 18:57:42 -04:00
static PyObject *
seconds(self, args)
1997-01-13 18:57:42 -04:00
PyObject *self;
PyObject *args;
{
1997-01-13 18:57:42 -04:00
if (!PyArg_Parse(args, ""))
return NULL;
1997-01-13 18:57:42 -04:00
return PyInt_FromLong(TIMINGS);
}
1997-01-13 18:57:42 -04:00
static PyObject *
milli(self, args)
1997-01-13 18:57:42 -04:00
PyObject *self;
PyObject *args;
{
1997-01-13 18:57:42 -04:00
if (!PyArg_Parse(args, ""))
return NULL;
1997-01-13 18:57:42 -04:00
return PyInt_FromLong(TIMINGMS);
}
1997-01-13 18:57:42 -04:00
static PyObject *
micro(self, args)
1997-01-13 18:57:42 -04:00
PyObject *self;
PyObject *args;
{
1997-01-13 18:57:42 -04:00
if (!PyArg_Parse(args, ""))
return NULL;
1997-01-13 18:57:42 -04:00
return PyInt_FromLong(TIMINGUS);
}
1997-01-13 18:57:42 -04:00
static PyMethodDef timing_methods[] = {
{"start", start_timing},
{"finish", finish_timing},
{"seconds", seconds},
{"milli", milli},
{"micro", micro},
{NULL, NULL}
};
DL_EXPORT(void) inittiming()
{
1997-01-13 18:57:42 -04:00
(void)Py_InitModule("timing", timing_methods);
if (PyErr_Occurred())
Py_FatalError("can't initialize module timing");
}