File: rt_pend_tq.h

package info (click to toggle)
comedi 0.7.76%2B20080817cvs-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 7,660 kB
  • ctags: 14,259
  • sloc: ansic: 104,304; sh: 1,417; makefile: 625; perl: 457
file content (10 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (2)
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);