mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 04:43:54 -06:00
rust: add bindings for interrupt sources
The InterruptSource bindings let us call qemu_set_irq() and sysbus_init_irq() as safe code. Interrupt sources, qemu_irq in C code, are pointers to IRQState objects. They are QOM link properties and can be written to outside the control of the device (i.e. from a shared reference); therefore they must be interior-mutable in Rust. Since thread-safety is provided by the BQL, what we want here is the newly-introduced BqlCell. A pointer to the contents of the BqlCell (an IRQState**, or equivalently qemu_irq*) is then passed to the C sysbus_init_irq function. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
28d0ad3d42
commit
4ed4da164c
5 changed files with 134 additions and 10 deletions
|
@ -16,7 +16,9 @@ pub mod c_str;
|
|||
pub mod cell;
|
||||
pub mod definitions;
|
||||
pub mod device_class;
|
||||
pub mod irq;
|
||||
pub mod offset_of;
|
||||
pub mod sysbus;
|
||||
pub mod vmstate;
|
||||
pub mod zeroable;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue