FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/gpf/osl/os_tim_ir.c @ 461:7017da4978bb
OSL: os_tim_ir.c started
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Mon, 23 Jun 2014 18:37:19 +0000 |
parents | |
children | 14d2a7f473c3 |
comparison
equal
deleted
inserted
replaced
460:9cacd09e8ef3 | 461:7017da4978bb |
---|---|
1 /* | |
2 * This C module is a reconstruction based on the disassembly of | |
3 * os_tim.obj in frame_na7_db_ir.lib from the Leonardo package. | |
4 */ | |
5 | |
6 /* set of included headers from COFF symtab: */ | |
7 #include <stdio.h> | |
8 #include "gpfconf.h" /* FreeCalypso addition */ | |
9 #include "../../nucleus/nucleus.h" | |
10 #include "typedefs.h" | |
11 #include "os.h" | |
12 #include "gdi.h" | |
13 #include "os_types.h" | |
14 #include "os_glob.h" | |
15 | |
16 extern T_OS_TIMER_ENTRY TimerTable[]; | |
17 extern T_OS_TIMER_TABLE_ENTRY *p_list[]; | |
18 | |
19 extern unsigned os_time_to_tick_multiplier; | |
20 extern unsigned os_tick_to_time_multiplier; | |
21 | |
22 extern unsigned t_start_ticks; | |
23 extern T_OS_TIMER_TABLE_ENTRY * volatile t_running; | |
24 extern int used_timers; | |
25 extern int next_t_handle; | |
26 extern int volatile t_list_access; | |
27 extern int max_used_timers; | |
28 extern NU_SEMAPHORE TimSemCB; | |
29 extern NU_TIMER os_timer_cb; | |
30 | |
31 void | |
32 timer_error(int err) | |
33 { | |
34 } |