8 * Timer library implementation.
\r
10 * Adam Dunkels <adam@sics.se>
\r
14 * Copyright (c) 2004, Swedish Institute of Computer Science.
\r
15 * All rights reserved.
\r
17 * Redistribution and use in source and binary forms, with or without
\r
18 * modification, are permitted provided that the following conditions
\r
20 * 1. Redistributions of source code must retain the above copyright
\r
21 * notice, this list of conditions and the following disclaimer.
\r
22 * 2. Redistributions in binary form must reproduce the above copyright
\r
23 * notice, this list of conditions and the following disclaimer in the
\r
24 * documentation and/or other materials provided with the distribution.
\r
25 * 3. Neither the name of the Institute nor the names of its contributors
\r
26 * may be used to endorse or promote products derived from this software
\r
27 * without specific prior written permission.
\r
29 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
\r
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
\r
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
\r
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
\r
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
\r
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
\r
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
\r
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
\r
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
\r
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\r
41 * This file is part of the Contiki operating system.
\r
43 * Author: Adam Dunkels <adam@sics.se>
\r
45 * $Id: timer.c,v 1.5 2009/01/24 15:20:11 adamdunkels Exp $
\r
48 //_RB_#include "contiki-conf.h"
\r
49 #include "uip-conf.h"
\r
50 #include "net/clock-arch.h"
\r
51 #include "sys/clock.h"
\r
52 #include "sys/timer.h"
\r
54 /*---------------------------------------------------------------------------*/
\r
59 * This function is used to set a timer for a time sometime in the
\r
60 * future. The function timer_expired() will evaluate to true after
\r
61 * the timer has expired.
\r
63 * \param t A pointer to the timer
\r
64 * \param interval The interval before the timer expires.
\r
67 void timer_set( struct timer *t, clock_time_t interval )
\r
69 t->interval = interval;
\r
70 t->start = clock_time();
\r
73 /*---------------------------------------------------------------------------*/
\r
76 * Reset the timer with the same interval.
\r
78 * This function resets the timer with the same interval that was
\r
79 * given to the timer_set() function. The start point of the interval
\r
80 * is the exact time that the timer last expired. Therefore, this
\r
81 * function will cause the timer to be stable over time, unlike the
\r
82 * timer_restart() function.
\r
84 * \param t A pointer to the timer.
\r
86 * \sa timer_restart()
\r
88 void timer_reset( struct timer *t )
\r
90 t->start += t->interval;
\r
93 /*---------------------------------------------------------------------------*/
\r
96 * Restart the timer from the current point in time
\r
98 * This function restarts a timer with the same interval that was
\r
99 * given to the timer_set() function. The timer will start at the
\r
102 * \note A periodic timer will drift if this function is used to reset
\r
103 * it. For preioric timers, use the timer_reset() function instead.
\r
105 * \param t A pointer to the timer.
\r
107 * \sa timer_reset()
\r
109 void timer_restart( struct timer *t )
\r
111 t->start = clock_time();
\r
114 /*---------------------------------------------------------------------------*/
\r
117 * Check if a timer has expired.
\r
119 * This function tests if a timer has expired and returns true or
\r
120 * false depending on its status.
\r
122 * \param t A pointer to the timer
\r
124 * \return Non-zero if the timer has expired, zero otherwise.
\r
127 int timer_expired( struct timer *t )
\r
129 return( clock_time_t ) ( clock_time() - t->start ) >= ( clock_time_t ) t->interval;
\r
132 /*---------------------------------------------------------------------------*/
\r
135 * The time until the timer expires
\r
137 * This function returns the time until the timer expires.
\r
139 * \param t A pointer to the timer
\r
141 * \return The time until the timer expires
\r
144 clock_time_t timer_remaining( struct timer *t )
\r
146 return t->start + t->interval - clock_time();
\r
149 /*---------------------------------------------------------------------------*/
\r