Changeset 305 for GPL/branches/uniaud-2.0/include/linux/interrupt.h
- Timestamp:
- Mar 24, 2008, 2:43:42 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud-2.0/include/linux/interrupt.h
r125 r305 70 70 */ 71 71 72 struct tasklet_struct 73 { 74 struct tasklet_struct *next; 75 unsigned long state; 76 atomic_t count; 77 void (*func)(unsigned long); 78 unsigned long data; 72 struct tasklet_struct { 73 struct tasklet_struct *next; /* linked list of active bh's */ 74 unsigned long sync; /* must be initialized to zero */ 75 void (*func)(void *); /* function to call */ 76 void *data; /* argument to function */ 79 77 }; 80 78
Note:
See TracChangeset
for help on using the changeset viewer.