Pengetahuan Kernel (10) – Struktur Data Linux (10) – irqaction

Struktur data irqaction digunakan untuk mendeskripsikan penanganan interupt pada sistem.

[sourcecode language=”cpp”]
struct irqaction {
void (*handler)(int, void *, struct pt_regs *);
unsigned long flags;
unsigned long mask;
const char *name;
void *dev_id;
struct irqaction *next;
};
[/sourcecode]
Sumber : tldp.org

Be the first to comment

Leave a Reply

Your email address will not be published.


*