blob: 01ed71bf409dc3157ab6bccbb4348f30524ca897 [file] [log] [blame]
David Schleefed9eccb2008-11-04 20:29:31 -08001#define RT_PEND_TQ_SIZE 16
2struct rt_pend_tq {
3 void (*func) (int arg1, void *arg2);
4 int arg1;
5 void *arg2;
6};
7extern int rt_pend_call(void (*func) (int arg1, void *arg2), int arg1,
8 void *arg2);
9extern int rt_pend_tq_init(void);
10extern void rt_pend_tq_cleanup(void);