aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/comedi/rt_pend_tq.h
blob: 01ed71bf409dc3157ab6bccbb4348f30524ca897 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#define RT_PEND_TQ_SIZE 16
struct rt_pend_tq {
	void (*func) (int arg1, void *arg2);
	int arg1;
	void *arg2;
};
extern int rt_pend_call(void (*func) (int arg1, void *arg2), int arg1,
	void *arg2);
extern int rt_pend_tq_init(void);
extern void rt_pend_tq_cleanup(void);