blob: d1854f51c967c61bff6fe2e40abe41a1bdb614b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<think>
Okay, so I need to classify this bug report as either user-mode or system-mode related. The issue is that a Go program crashes when run under ARM user emulation using QEMU. Let me think through the details.
The example code uses goroutines and calls exec repeatedly. It works fine natively but segfaults under emulation. Since the problem occurs in user-space (the program itself), it's more about how QEMU handles user-mode processes. User-mode emulation deals with running applications without full OS support, so issues here might relate to how QEMU translates system calls or manages memory for user programs.
On the other hand, system-mode involves higher privileges and hardware interaction, like emulating an entire OS. Since this crash is in a user program under emulation, it doesn't seem to involve kernel-level operations or devices directly.
So, I think this bug is related to user-mode because it's about running user-space applications within QEMU.
</think>
user
|