2004-01-29 01:02:12 +00:00
|
|
|
/*
|
2014-12-05 09:31:08 +00:00
|
|
|
* Timing functions.
|
|
|
|
*
|
2018-10-12 10:28:09 +00:00
|
|
|
* Copyright (C) 2014 Michael Smith <msmith@icecast.org>,
|
|
|
|
* Karl Heyes <karl@xiph.org>,
|
|
|
|
* Jack Moffitt <jack@icecast.org>,
|
|
|
|
* Moritz Grimm <mdgrimm@gmx.net>,
|
|
|
|
* Ralph Giles <giles@xiph.org>,
|
|
|
|
* Copyright (C) 2012-2018 Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>
|
2014-12-05 09:31:08 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
2004-01-29 01:02:12 +00:00
|
|
|
|
2018-10-12 10:16:06 +00:00
|
|
|
#ifndef _LIBIGLOO__TIMING_H_
|
|
|
|
#define _LIBIGLOO__TIMING_H_
|
2001-09-10 02:24:39 +00:00
|
|
|
|
2018-11-02 11:29:00 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-11-02 11:20:04 +00:00
|
|
|
#include <igloo/config.h>
|
2018-11-01 13:23:50 +00:00
|
|
|
|
2001-10-20 21:28:09 +00:00
|
|
|
#include <sys/types.h>
|
2018-11-01 13:23:50 +00:00
|
|
|
#ifdef IGLOO_CTC_HAVE_INTTYPES_H
|
2009-07-07 16:37:31 +00:00
|
|
|
#include <inttypes.h>
|
2018-11-01 13:23:50 +00:00
|
|
|
#elif defined(IGLOO_CTC_HAVE_STDINT_H)
|
2002-02-07 01:04:09 +00:00
|
|
|
#include <stdint.h>
|
2001-10-20 21:28:09 +00:00
|
|
|
#endif
|
2002-02-07 01:04:09 +00:00
|
|
|
|
2007-03-06 13:35:29 +00:00
|
|
|
#if defined(_WIN32) && !defined(int64_t)
|
2002-02-07 01:04:09 +00:00
|
|
|
typedef __int64 int64_t;
|
|
|
|
typedef unsigned __int64 uint64_t;
|
2001-10-20 21:28:09 +00:00
|
|
|
#endif
|
2001-10-20 05:03:24 +00:00
|
|
|
|
2018-10-12 10:55:24 +00:00
|
|
|
uint64_t igloo_timing_get_time(void);
|
|
|
|
void igloo_timing_sleep(uint64_t sleeptime);
|
2001-09-10 02:24:39 +00:00
|
|
|
|
2018-11-02 11:29:00 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-09-10 02:24:39 +00:00
|
|
|
#endif /* __TIMING_H__ */
|