Skip to content

Commit aeb18be

Browse files
committed
rename irq_counter to tick
1 parent f8a5a64 commit aeb18be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kernel/irq.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
#include "irq.h"
44

5-
volatile unsigned int irq_count = 0;
5+
volatile unsigned int tick = 0;
66

77
void irq_handler(void)
88
{
9-
irq_count++;
9+
tick++;
1010
}
1111

1212
inline void irq_disable(void)

0 commit comments

Comments
 (0)