blob: 417f3887d0830856d48f7525725ea2a097bda939 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
The issue described involves differences in behavior when running QEMU directly versus using a remote debugger (GDB). The problem is related to how file descriptors are handled, specifically whether `stdout` is recognized as a character special device (`S_ISCHR`).
This seems to be related to how the file descriptor for `stdout` is set up differently when debugging. When running under GDB, certain behaviors or setups might differ compared to standalone execution.
The category of this bug would likely fall under:
**runtime**
Since it's an issue that occurs during runtime and relates to file descriptor handling and behavior differences between debugged and non-debugged executions.
|