blob: 93827e39c882e89a194c382129712640e346357d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, I need to determine whether this bug report about QEMU is related to user-mode or system-mode issues. The issue mentions that the `clone()` function in a Linux user can't handle glibc's `posix_spawn()`, which causes `locale-gen` to assert.
First, let me recall what clone() does. It's used for creating a new process in user space. Since it's related to process creation and handling, that sounds like a user-mode operation because user-mode deals with applications running under the OS without needing high privileges.
On the other hand, system-mode issues typically involve lower-level components like hardware drivers, device management, or the hypervisor. This problem doesn't seem to touch on those areas; it's more about how processes are managed by the application itself using glibc functions.
The fact that `locale-gen` is mentioned—a tool used for generating locale files—suggests this is an application-level issue rather than a system one. It's not related to device drivers or peripherals but rather how the application spawns new processes, which is handled in user-mode emulation by QEMU.
So, putting it all together, the bug is about process handling within user applications, making it a user-mode issue.
</think>
user
|