blob: 45c2a6a53b2b7922aecfa0060bd1b3161e71d29f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
<think>
Alright, I'm trying to figure out how to classify this bug report from QEMU. The error message says it's about an "Error in user-mode calculation of ELF program's brk." Hmm, I remember that the brk() system call is used to change the end of the heap segment in a program, so that might relate to memory management.
I'm looking at the possible categories: instruction, syscall, runtime. The error seems related to how the program is running and managing memory dynamically, which is something that happens during execution. So it's probably not an issue with a specific instruction or a problem with the system call itself but rather how the program is handling resources in user mode.
Therefore, this should fall under the 'runtime' category because it's an error occurring while the program is running.
</think>
runtime
|