source: svn/newcon3bcm2_21bu/magnum/syslib/synclib/7552/bsynclib_timer.h @ 26

Last change on this file since 26 was 26, checked in by phkim, 11 years ago
  1. phkim
  2. 서경방소에서 kctv 로고 변경
  • Property svn:executable set to *
File size: 1.3 KB
Line 
1/***************************************************************************
2*     Copyright (c) 2004-2008, Broadcom Corporation
3*     All Rights Reserved
4*     Confidential Property of Broadcom Corporation
5*
6*  THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE
7*  AGREEMENT  BETWEEN THE USER AND BROADCOM.  YOU HAVE NO RIGHT TO USE OR
8*  EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT.
9*
10* $brcm_Workfile: bsynclib_timer.h $
11* $brcm_Revision: Hydra_Software_Devel/1 $
12* $brcm_Date: 3/24/08 3:09p $
13*
14* Revision History:
15*
16* $brcm_Log: /magnum/syslib/synclib/noarch/bsynclib_timer.h $
17*
18* Hydra_Software_Devel/1   3/24/08 3:09p bandrews
19* PR40865: Fixed
20*
21* Hydra_Software_Devel/2   1/3/08 5:17p bandrews
22* PR37951: Updated based on initial feedback
23*
24* Hydra_Software_Devel/1   12/12/07 2:54p bandrews
25* PR37951: Initial check-in
26***************************************************************************/
27
28#include "bstd.h"
29#include "bsyslib.h"
30#include "bsynclib.h"
31
32#ifndef BSYNCLIB_TIMER_H__
33#define BSYNCLIB_TIMER_H__
34
35typedef struct
36{
37        BSYNClib_Channel_Handle hOwner;
38        bool bScheduled; /* is the timer scheduled? */
39        BSYSlib_Timer_Handle hTimer;
40} BSYNClib_Timer;
41
42void BSYNClib_Timer_Init(BSYNClib_Timer * psTimer);
43void BSYNClib_Timer_Reset_isr(BSYNClib_Timer * psTimer);
44
45#endif /* BSYNCLIB_TIMER_H__ */
46
Note: See TracBrowser for help on using the repository browser.