Pengetahuan Kernel (23) – Struktur Data Linux (23) – timer_list

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

Be the first to comment

Leave a Reply

Your email address will not be published.


*