You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
292 B
11 lines
292 B
20 years ago
|
#ifndef S390_AINTERRUPT_H
|
||
|
#define S390_AINTERRUPT_H
|
||
|
|
||
|
typedef int (*adapter_int_handler_t)(void);
|
||
|
|
||
|
extern int s390_register_adapter_interrupt(adapter_int_handler_t handler);
|
||
|
extern int s390_unregister_adapter_interrupt(adapter_int_handler_t handler);
|
||
|
extern void do_adapter_IO (void);
|
||
|
|
||
|
#endif
|