diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2024-11-15 12:08:43 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-12-19 19:36:37 +0100 |
commit | d4873c5d4fdd11f484df183e01c0825fe347fd8b (patch) | |
tree | e0b0e6537ec3ef995df5d463c6efd939d93bdb41 /include | |
parent | 716d89f9cc14faf784d83c945c40b7e8256ae525 (diff) | |
download | qemu-d4873c5d4fdd11f484df183e01c0825fe347fd8b.zip qemu-d4873c5d4fdd11f484df183e01c0825fe347fd8b.tar.gz qemu-d4873c5d4fdd11f484df183e01c0825fe347fd8b.tar.bz2 |
bql: add a "mock" BQL for Rust unit tests
Right now, the stub BQL in stubs/iothread-lock.c always reports itself as
unlocked. However, Rust would like to run its tests in an environment where
the BQL *is* locked. Provide an extremely dirty function that flips the
return value of bql_is_locked() to true.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/main-loop.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/qemu/main-loop.h b/include/qemu/main-loop.h index 646306c..3935a57 100644 --- a/include/qemu/main-loop.h +++ b/include/qemu/main-loop.h @@ -248,6 +248,14 @@ GSource *iohandler_get_g_source(void); AioContext *iohandler_get_aio_context(void); /** + * rust_bql_mock_lock: + * + * Called from Rust doctests to make bql_lock() return true. + * Do not touch. + */ +void rust_bql_mock_lock(void); + +/** * bql_locked: Return lock status of the Big QEMU Lock (BQL) * * The Big QEMU Lock (BQL) is the coarsest lock in QEMU, and as such it |