Changeset d46f5cc in mainline
- Timestamp:
- 2010-06-16T16:30:27Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5954241
- Parents:
- 2319df3
- Location:
- kernel/arch/sparc64
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/include/drivers/tick.h
r2319df3 rd46f5cc 27 27 */ 28 28 29 /** @addtogroup sparc64 29 /** @addtogroup sparc64 30 30 * @{ 31 31 */ … … 40 40 41 41 /* mask of the "counter" field of the Tick register */ 42 #define TICK_COUNTER_MASK 42 #define TICK_COUNTER_MASK (~(1l << 63)) 43 43 44 44 extern void tick_init(void); 45 extern void tick_interrupt( int n, istate_t *istate);45 extern void tick_interrupt(unsigned int, istate_t *); 46 46 47 47 /** -
kernel/arch/sparc64/src/drivers/tick.c
r2319df3 rd46f5cc 27 27 */ 28 28 29 /** @addtogroup sparc64 29 /** @addtogroup sparc64 30 30 * @{ 31 31 */ … … 77 77 /** Process tick interrupt. 78 78 * 79 * @param n Interrupt Level, 14, (can be ignored)79 * @param n Interrupt Level (14, can be ignored) 80 80 * @param istate Interrupted state. 81 * 81 82 */ 82 void tick_interrupt( int n, istate_t *istate)83 void tick_interrupt(unsigned int n, istate_t *istate) 83 84 { 84 85 softint_reg_t softint, clear;
Note:
See TracChangeset
for help on using the changeset viewer.