Struktur data timer_list digunakan untuk mengimplementasikan pewaktu real time untuk proses-proses yang berjalan.
[sourcecode language=”language=”]
struct timer_list {
struct timer_list *next;
struct timer_list *prev;
unsigned long expires;
unsigned long data;
void (*function)(unsigned long);
};
[/sourcecode]
Sumber : tldp.org
Leave a Reply