blob: b2c7fd7d4d55066621c89ba689612d2eecb97868 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
** LuaProfiler
** Copyright Kepler Project 2005-2007 (http://www.keplerproject.org/luaprofiler)
** $Id: clocks.h,v 1.4 2007/08/22 19:23:53 carregal Exp $
*/
/*****************************************************************************
clocks.h:
Module to register the time (seconds) between two events
Design:
'lprofC_start_timer()' marks the first event
'lprofC_get_seconds()' gives you the seconds elapsed since the timer
was started
*****************************************************************************/
#include <time.h>
void lprofC_start_timer(clock_t *time_marker);
float lprofC_get_seconds(clock_t time_marker);
|