summary refs log tree commit diff stats
path: root/results/classifier/zero-shot-user-mode/output/instruction/577
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-08 13:28:15 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-08 13:28:28 +0200
commit5aa276efcbd67f4300ca1a7f809c6e00aadb03da (patch)
tree9b8f0e074014cda8d42f5a97a95bc25082d8b764 /results/classifier/zero-shot-user-mode/output/instruction/577
parent1a3c4faf4e0a25ed0b86e8739d5319a634cb9112 (diff)
downloadqemu-analysis-5aa276efcbd67f4300ca1a7f809c6e00aadb03da.tar.gz
qemu-analysis-5aa276efcbd67f4300ca1a7f809c6e00aadb03da.zip
restructure results
Diffstat (limited to 'results/classifier/zero-shot-user-mode/output/instruction/577')
-rw-r--r--results/classifier/zero-shot-user-mode/output/instruction/57731
1 files changed, 0 insertions, 31 deletions
diff --git a/results/classifier/zero-shot-user-mode/output/instruction/577 b/results/classifier/zero-shot-user-mode/output/instruction/577
deleted file mode 100644
index f3eb3aeb5..000000000
--- a/results/classifier/zero-shot-user-mode/output/instruction/577
+++ /dev/null
@@ -1,31 +0,0 @@
-instruction: 0.516
-syscall: 0.243
-runtime: 0.241
-
-
-
-getdtablesize() returns wrong value in qemu user mode on Linux/alpha
-Description of problem:
-The `getdtablesize()` function returns a value that is too large. Namely, `getdtablesize() - 1` ought to be a valid file descriptor, but is not.
-Steps to reproduce:
-[foo.c](/uploads/7a9e99d3811fe4a7eef183ed98c966a4/foo.c)
-
-1.
-```
-# apt install g++-10-alpha-linux-gnu
-```
-2.
-```
-$ alpha-linux-gnu-gcc-10 -Wall -static foo.c
-```
-[a.out](/uploads/4fffa6dd2332885f51e4030dcbe25644/a.out)
-
-3. Transfer the a.out file to a Linux/alpha machine; execute it there. The return code is 0.
-4.
-```
-$ QEMU_LD_PREFIX=/usr/alpha-linux-gnu ~/inst-qemu/6.1.0/bin/qemu-alpha ./a.out ; echo $?
-```
-Expected: `0`
-Actual: `1`
-Additional information:
-