URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [mw/] [src/] [contrib/] [ntimers.h] - Rev 1765
Compare with Previous | Blame | View Log
#ifndef __NTIMER_H__ #define __NTIMER_H__ struct GsTimer { struct GsTimer* next; long due; void* some_func; void* some_args; }; struct GsTimerHolder { struct GsTimer* head; struct GsTimer* tail; int numof; }; #endif