Pengetahuan Kernel (24) – Struktur Data Linux (24) – tq_struct

Tiap-tiap struktur data antrian kerja (tq_struct) menangani informasi tentang kerja yang telah ditempatkan dalam antrian. Hal ini biasanya adalah kerja yang dibutuhkan oleh driver perangkat tetapi tidak mesti dilakukan dengan segera.

[sourcecode language=”cpp”]
struct tq_struct {
struct tq_struct *next; /* linked list of active bh’s */
int sync; /* must be initialized to zero */
void (*routine)(void *); /* function to call */
void *data; /* argument to function */
};
[/sourcecode]
Sumber : tldp.org

Be the first to comment

Leave a Reply

Your email address will not be published.


*