Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.7 13 lines 179 B view raw
1#ifndef _CHSC_SCH_H 2#define _CHSC_SCH_H 3 4struct chsc_request { 5 struct completion completion; 6 struct irb irb; 7}; 8 9struct chsc_private { 10 struct chsc_request *request; 11}; 12 13#endif