Staging
v0.5.1
https://github.com/python/cpython
Revision 3e43d8382c48d8c8d2e965b090cf48c6b8d3fdc4 authored by Guido van Rossum on 10 August 1995, 14:21:49 UTC, committed by Guido van Rossum on 10 August 1995, 14:21:49 UTC
1 parent 0bbbea1
Raw File
Tip revision: 3e43d8382c48d8c8d2e965b090cf48c6b8d3fdc4 authored by Guido van Rossum on 10 August 1995, 14:21:49 UTC
clarify optional status
Tip revision: 3e43d83
timingmodule.c
/*
 * Author: George V. Neville-Neil
 */

#include "allobjects.h"
#include "import.h"
#include "modsupport.h"
#include "ceval.h"

/* Our stuff... */
#include "timing.h"

static object *
start_timing(self, args)
    object *self;
    object *args;
{
    if (!getargs(args, ""))
	return NULL;

    INCREF(None);
    BEGINTIMING;
    return None;
}

static object *
finish_timing(self, args)
    object *self;
    object *args;
{
    if (!getargs(args, ""))
	return NULL;

    ENDTIMING    
    INCREF(None);
    return None;
}

static object *
seconds(self, args)
    object *self;
    object *args;
{
    if (!getargs(args, ""))
	return NULL;

    return newintobject(TIMINGS);

}

static object *
milli(self, args)
    object *self;
    object *args;
{
    if (!getargs(args, ""))
	return NULL;

    return newintobject(TIMINGMS);

}
static object *
micro(self, args)
    object *self;
    object *args;
{
    if (!getargs(args, ""))
	return NULL;

    return newintobject(TIMINGUS);

}


static struct methodlist timing_methods[] = {
   {"start", start_timing},
   {"finish", finish_timing},
   {"seconds", seconds},
   {"milli", milli},
   {"micro", micro},
   {NULL, NULL}
};


void inittiming()
{
    object *m;

    m = initmodule("timing", timing_methods);
   
}
back to top