URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [services/] [gfx/] [mw/] [v2_0/] [src/] [contrib/] [ntimers.h] - Rev 27
Go to most recent revision | 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
Go to most recent revision | Compare with Previous | Blame | View Log