mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
rust: split "bql" crate
Unfortunately, an example had to be compile-time disabled, since it relies on higher level crates (qdev, irq etc). The alternative is probably to move that code to an example in qemu-api or elsewere and make a link to it, or include_str. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Link: https://lore.kernel.org/r/20250827104147.717203-12-marcandre.lureau@redhat.com Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
committed by
Paolo Bonzini
parent
4dff343d23
commit
f6b4f0dd9c
@@ -69,8 +69,8 @@
|
||||
//! and only at FFI boundaries. For QEMU-specific types that need interior
|
||||
//! mutability, prefer [`BqlCell`] or [`BqlRefCell`].
|
||||
//!
|
||||
//! [`BqlCell`]: ../../qemu_api/cell/struct.BqlCell.html
|
||||
//! [`BqlRefCell`]: ../../qemu_api/cell/struct.BqlRefCell.html
|
||||
//! [`BqlCell`]: ../../bql/cell/struct.BqlCell.html
|
||||
//! [`BqlRefCell`]: ../../bql/cell/struct.BqlRefCell.html
|
||||
use std::{cell::UnsafeCell, fmt, marker::PhantomPinned, mem::MaybeUninit, ptr::NonNull};
|
||||
|
||||
/// Stores an opaque value that is shared with C code.
|
||||
|
||||
Reference in New Issue
Block a user