apic_func_t

A prototype for a callback function to which LAPIC forwards information

Synopsis:

#include <qvm/apic.h>
typedef void apic_func_t(vdev_t *vdp,
                         int eoi,
                         unsigned vector);

Arguments:

vdp
A pointer to the virtual device.
eoi
End of interrupt.
vector
A vector number (a unique number identifying an interrupt or exception).

Library:

Provided by qvm; no external library is required.

Description:

See apic_register().