2006-06-02 05:36:31 -05:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* Copyright (C) 2006 by Dominic Rath *
|
|
|
|
|
* Dominic.Rath@gmx.de *
|
2008-07-25 01:54:17 -05:00
|
|
|
|
* *
|
2008-09-20 05:50:53 -05:00
|
|
|
|
* Copyright (C) 2007,2008 <EFBFBD>yvind Harboe *
|
2008-07-25 01:54:17 -05:00
|
|
|
|
* oyvind.harboe@zylin.com *
|
2008-09-20 05:50:53 -05:00
|
|
|
|
* *
|
|
|
|
|
* Copyright (C) 2008 by Spencer Oliver *
|
|
|
|
|
* spen@spen-soft.co.uk *
|
2006-06-02 05:36:31 -05:00
|
|
|
|
* *
|
|
|
|
|
* 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, write to the *
|
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
#ifndef TIME_SUPPORT_H
|
|
|
|
|
#define TIME_SUPPORT_H
|
|
|
|
|
|
2008-04-09 00:55:23 -05:00
|
|
|
|
#ifdef TIME_WITH_SYS_TIME
|
|
|
|
|
# include <sys/time.h>
|
|
|
|
|
# include <time.h>
|
|
|
|
|
#else
|
|
|
|
|
# ifdef HAVE_SYS_TIME_H
|
|
|
|
|
# include <sys/time.h>
|
|
|
|
|
# else
|
|
|
|
|
# include <time.h>
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
2006-06-02 05:36:31 -05:00
|
|
|
|
|
|
|
|
|
extern int timeval_subtract(struct timeval *result, struct timeval *x, struct timeval *y);
|
|
|
|
|
extern int timeval_add(struct timeval *result, struct timeval *x, struct timeval *y);
|
|
|
|
|
extern int timeval_add_time(struct timeval *result, int sec, int usec);
|
2008-03-13 03:17:01 -05:00
|
|
|
|
/* gettimeofday() timeval in 64 bit ms */
|
2008-08-05 07:27:18 -05:00
|
|
|
|
extern long long timeval_ms(void);
|
2006-06-02 05:36:31 -05:00
|
|
|
|
|
2007-03-15 08:36:44 -05:00
|
|
|
|
typedef struct duration_s
|
|
|
|
|
{
|
|
|
|
|
struct timeval start;
|
|
|
|
|
struct timeval duration;
|
|
|
|
|
} duration_t;
|
|
|
|
|
|
2008-10-13 01:52:05 -05:00
|
|
|
|
extern void duration_start_measure(duration_t *duration);
|
2007-03-15 08:36:44 -05:00
|
|
|
|
extern int duration_stop_measure(duration_t *duration, char **text);
|
|
|
|
|
|
2006-06-02 05:36:31 -05:00
|
|
|
|
#endif /* TIME_SUPPORT_H */
|