2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
* \file timing.h
|
2009-01-04 17:27:10 +01:00
|
|
|
*
|
2011-01-06 13:28:03 +01:00
|
|
|
* \brief Portable interface to the CPU cycle counter
|
|
|
|
*
|
2010-07-18 12:13:04 +02:00
|
|
|
* Copyright (C) 2006-2010, Brainspark B.V.
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
2010-07-18 12:13:04 +02:00
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2009-07-28 19:23:11 +02:00
|
|
|
* All rights reserved.
|
2009-01-04 17:27:10 +01: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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2009-01-03 22:51:57 +01:00
|
|
|
#ifndef POLARSSL_TIMING_H
|
|
|
|
#define POLARSSL_TIMING_H
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief timer structure
|
|
|
|
*/
|
|
|
|
struct hr_time
|
|
|
|
{
|
|
|
|
unsigned char opaque[32];
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-04-24 17:28:55 +02:00
|
|
|
extern volatile int alarmed;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Return the CPU cycle counter value
|
|
|
|
*/
|
|
|
|
unsigned long hardclock( void );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Return the elapsed time in milliseconds
|
|
|
|
*
|
|
|
|
* \param val points to a timer structure
|
|
|
|
* \param reset if set to 1, the timer is restarted
|
|
|
|
*/
|
|
|
|
unsigned long get_timer( struct hr_time *val, int reset );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Setup an alarm clock
|
|
|
|
*
|
|
|
|
* \param seconds delay before the "alarmed" flag is set
|
|
|
|
*/
|
|
|
|
void set_alarm( int seconds );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Sleep for a certain amount of time
|
2009-07-28 09:18:38 +02:00
|
|
|
*
|
2011-01-06 13:28:03 +01:00
|
|
|
* \param milliseconds delay in milliseconds
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
|
|
|
void m_sleep( int milliseconds );
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* timing.h */
|