Files
codezero/include/l4/generic/time.h

21 lines
304 B
C

/*
* System time keeping definitions
*
* Copyright (C) 2007 Bahadir Balban
*/
#ifndef __GENERIC_TIMER_H__
#define __GENERIC_TIMER_H__
/* Used by posix systems */
struct timeval {
int tv_sec;
int tv_usec;
};
extern volatile u32 jiffies;
int do_timer_irq(void);
#endif /* __GENERIC_TIMER_H__ */