mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
add libshared/libnvram and required includes under version control
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@344 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
40
package/openwrt/libshared/bcmtimer.h
Normal file
40
package/openwrt/libshared/bcmtimer.h
Normal file
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Copyright 2004, Broadcom Corporation
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
|
||||
* SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
|
||||
*
|
||||
* Low resolution timer interface. Timer handlers may be called
|
||||
* in a deferred manner in a different task context after the
|
||||
* timer expires or in the task context from which the timer
|
||||
* was created, depending on the implementation.
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
#ifndef __bcmtimer_h__
|
||||
#define __bcmtimer_h__
|
||||
|
||||
/* ANSI headers */
|
||||
#include <time.h>
|
||||
|
||||
/* timer ID */
|
||||
typedef unsigned int bcm_timer_module_id;
|
||||
typedef unsigned int bcm_timer_id;
|
||||
|
||||
/* timer callback */
|
||||
typedef void (*bcm_timer_cb)(bcm_timer_id id, int data);
|
||||
|
||||
/* OS-independant interfaces, applications should call these functions only */
|
||||
int bcm_timer_module_init(int timer_entries, bcm_timer_module_id *module_id);
|
||||
int bcm_timer_module_cleanup(bcm_timer_module_id module_id);
|
||||
int bcm_timer_create(bcm_timer_module_id module_id, bcm_timer_id *timer_id);
|
||||
int bcm_timer_delete(bcm_timer_id timer_id);
|
||||
int bcm_timer_gettime(bcm_timer_id timer_id, struct itimerspec *value);
|
||||
int bcm_timer_settime(bcm_timer_id timer_id, const struct itimerspec *value);
|
||||
int bcm_timer_connect(bcm_timer_id timer_id, bcm_timer_cb func, int data);
|
||||
int bcm_timer_cancel(bcm_timer_id timer_id);
|
||||
|
||||
#endif /* #ifndef __bcmtimer_h__ */
|
||||
Reference in New Issue
Block a user