Hi there, Is there any way to register one's specific interrupt and its interrupt handler in C/C++? I'm using Pandaboard OMAP4430 with Gentoo Linux kernel 3.6.2, is it possible to use watchdog timer interrupt to run an interrupt service routine (we want to edit this handler e.g. making it do a printf()). What is the C code to do that? Actually gcc compiler fails including <linux/interrupt.h> (No such file or duirectory) or, if its path is specified, then gcc fails to find <asm/linkage.h> (No such file or directory). This way register_irq() function cannot be called. Is there any sample C/C++ code to register interrupts and making them launch an handler?
Thanks.