Zigbee Protocol Controller 1.6.0
timer.h
Go to the documentation of this file.
1
40/*
41 * Copyright (c) 2004, Swedish Institute of Computer Science.
42 * All rights reserved.
43 *
44 * Redistribution and use in source and binary forms, with or without
45 * modification, are permitted provided that the following conditions
46 * are met:
47 * 1. Redistributions of source code must retain the above copyright
48 * notice, this list of conditions and the following disclaimer.
49 * 2. Redistributions in binary form must reproduce the above copyright
50 * notice, this list of conditions and the following disclaimer in the
51 * documentation and/or other materials provided with the distribution.
52 * 3. Neither the name of the Institute nor the names of its contributors
53 * may be used to endorse or promote products derived from this software
54 * without specific prior written permission.
55 *
56 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
57 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
58 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
59 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
60 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
61 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
62 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
63 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
64 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
65 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * SUCH DAMAGE.
67 *
68 * This file is part of the Contiki operating system.
69 *
70 * Author: Adam Dunkels <adam@sics.se>
71 *
72 * $Id: timer.h,v 1.2 2008/09/21 08:58:05 adamdunkels Exp $
73 */
74#ifndef __TIMER_H__
75#define __TIMER_H__
76
77#include "sys/clock.h"
78
79#ifdef __cplusplus
80extern "C" {
81#endif
82
91struct timer {
94};
95
96void timer_set(struct timer *t, clock_time_t interval);
97void timer_reset(struct timer *t);
98void timer_restart(struct timer *t);
99int timer_expired(struct timer *t);
101
102#ifdef __cplusplus
103}
104#endif
105
106#endif /* __TIMER_H__ */
107
uint32_t clock_time_t
Definition: contiki-conf.h:31
void timer_set(struct timer *t, clock_time_t interval)
Definition: timer.c:65
int timer_expired(struct timer *t)
Definition: timer.c:122
clock_time_t timer_remaining(struct timer *t)
Definition: timer.c:142
void timer_restart(struct timer *t)
Definition: timer.c:105
void timer_reset(struct timer *t)
Definition: timer.c:85
Definition: timer.h:91
clock_time_t start
Definition: timer.h:92
clock_time_t interval
Definition: timer.h:93