blob: 3aadd3a33585b77d8d3c18a3e26901a196b71323 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
The user provided a bug report related to QEMU and asked for it to be classified into one of three categories: instruction, syscall, or runtime. The key details mention a patch regarding `binfmt` wrapper handling of `argv[0]`, which is crucial for compatibility with GNU/Linux distributions.
1. **Instruction**: This typically refers to issues with specific CPU instructions or their emulation in QEMU.
2. **Syscall**: This involves errors in system calls, such as incorrect handling or implementation of system call interfaces.
3. **Runtime**: This category covers other runtime-related issues that don't fit into the first two categories.
The bug report discusses a patch for `binfmt` wrapper handling, which relates to how QEMU manages command-line arguments during execution. Since this is about the runtime behavior of QEMU rather than specific instructions or system calls, it falls under the **runtime** category.
Answer: **runtime**
|