summary refs log tree commit diff stats
path: root/results/classifier/118/user-level-x86/2924
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:00 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:33 +0000
commit9aba81d8eb048db908c94a3c40c25a5fde0caee6 (patch)
treeb765e7fb5e9a3c2143c68b0414e0055adb70e785 /results/classifier/118/user-level-x86/2924
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloademulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
emulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/user-level-x86/2924')
-rw-r--r--results/classifier/118/user-level-x86/292475
1 files changed, 75 insertions, 0 deletions
diff --git a/results/classifier/118/user-level-x86/2924 b/results/classifier/118/user-level-x86/2924
new file mode 100644
index 00000000..37b7c627
--- /dev/null
+++ b/results/classifier/118/user-level-x86/2924
@@ -0,0 +1,75 @@
+x86: 0.948
+device: 0.899
+graphic: 0.874
+user-level: 0.850
+debug: 0.769
+semantic: 0.700
+performance: 0.637
+mistranslation: 0.599
+network: 0.562
+architecture: 0.526
+permissions: 0.485
+PID: 0.475
+i386: 0.467
+register: 0.364
+vnc: 0.362
+socket: 0.354
+ppc: 0.281
+peripherals: 0.197
+TCG: 0.192
+VMM: 0.185
+risc-v: 0.180
+files: 0.175
+kernel: 0.172
+virtual: 0.169
+boot: 0.167
+hypervisor: 0.149
+arm: 0.098
+KVM: 0.084
+assembly: 0.075
+--------------------
+x86: 0.975
+debug: 0.957
+user-level: 0.745
+TCG: 0.257
+virtual: 0.249
+hypervisor: 0.036
+PID: 0.028
+files: 0.028
+register: 0.024
+network: 0.020
+performance: 0.018
+semantic: 0.016
+ppc: 0.015
+device: 0.009
+socket: 0.007
+assembly: 0.007
+graphic: 0.004
+kernel: 0.004
+peripherals: 0.003
+architecture: 0.003
+i386: 0.003
+boot: 0.003
+risc-v: 0.002
+permissions: 0.002
+VMM: 0.001
+vnc: 0.001
+mistranslation: 0.001
+arm: 0.001
+KVM: 0.000
+
+qemu-user not responding to Ctrl-C from gdb
+Description of problem:
+When attached to qemu-x84_64's gdbserver via gdb, it is not possible to interrupt the binary being emulated. Usually, Ctrl-C will interrupt a running binary from gdb and I believe (though have not tested) it works in qemu-system.
+
+First Ctrl-C will do nothing and second will prompt to stop debugging.
+```
+(gdb) c
+Continuing.
+^C^CThe target is not responding to interrupt requests.
+Stop debugging it? (y or n)
+```
+Steps to reproduce:
+1. Run `./qemu-x86_64 -g 1234 ~/Downloads/base64-x64_64-static` or any static binary that will pause/hang
+2. Connect from gdb `(gdb) target remote :1234`
+3. Ctrl-C in gdb