1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/*
* Copyright (c) 2000 Sasha Vasko <sasha at aftercode.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include <unistd.h>
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
#endif
#include <sys/times.h>
#if defined ___AIX || defined _AIX || defined __QNX__ || defined ___AIXV3 || defined AIXV3 || defined _SEQUENT_
#include <sys/select.h>
#endif
#include "astypes.h"
#include "sleep.h"
/**************************************************************************
* Sleep for n microseconds
*************************************************************************/
void
sleep_a_little (int n)
{
struct timeval value;
if (n <= 0)
return;
value.tv_usec = n % 1000000;
value.tv_sec = n / 1000000;
PORTABLE_SELECT (1, 0, 0, 0, &value);
}
void
sleep_a_millisec (int n)
{
struct timeval value;
if (n <= 0)
return;
value.tv_usec = (n % 1000)*1000;
value.tv_sec = n / 1000;
PORTABLE_SELECT (1, 0, 0, 0, &value);
}
static clock_t _as_ticker_last_tick = 0;
static clock_t _as_ticker_tick_size = 1;
static clock_t _as_ticker_tick_time = 0;
void
start_ticker (unsigned int size)
{
struct tms t;
_as_ticker_last_tick = times (&t); /* in system ticks */
if (_as_ticker_tick_time == 0)
{
register clock_t delta = _as_ticker_last_tick;
/* calibrating clock - how many ms per cpu tick ? */
sleep_a_millisec (100);
_as_ticker_last_tick = times (&t);
delta = _as_ticker_last_tick - delta ;
if( delta <= 0 )
_as_ticker_tick_time = 100;
else if( delta <= 100 )
_as_ticker_tick_time = 101 / delta;
else
_as_ticker_tick_time = 1 ;
}
_as_ticker_tick_size = size; /* in ms */
}
void
wait_tick ()
{
struct tms t;
register clock_t curr = (times (&t) - _as_ticker_last_tick) * _as_ticker_tick_time;
if (curr < _as_ticker_tick_size)
sleep_a_millisec (_as_ticker_tick_size - curr);
_as_ticker_last_tick = times (&t);
}
int
is_tick ()
{
struct tms t;
register clock_t curr = (times (&t) - _as_ticker_last_tick) * _as_ticker_tick_time;
return (curr >= _as_ticker_tick_size) ;
}
|