]> git.proxmox.com Git - mirror_qemu.git/blobdiff - tests/ptimer-test-stubs.c
pseries: Enforce homogeneous threads-per-core
[mirror_qemu.git] / tests / ptimer-test-stubs.c
index 21d4ebb0fe8f3a42b864bf5e627bfdcc12b157b4..8a1b0a336cfafa1b42fbf044a03399f066193c3d 100644 (file)
@@ -108,6 +108,11 @@ QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
     return bh;
 }
 
+void qemu_bh_delete(QEMUBH *bh)
+{
+    g_free(bh);
+}
+
 void replay_bh_schedule_event(QEMUBH *bh)
 {
     bh->cb(bh->opaque);