blob: 17d370aed74feffa926c685295c0a733475d785b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
The issue describes a crash in Firebird when using `qemu-m68k-user` due to an error with `pthread_mutex_init`. This indicates a problem related to system calls or thread management within QEMU's user-mode emulation, which falls under **syscall** errors.
However, considering that `pthread_mutex_init` is part of the threading API and might be more about runtime issues rather than a direct syscall failure, it could also fit into the **runtime** category.
Given the ambiguity, but leaning towards the fact that pthread functions are typically system call wrappers, I would categorize this under:
syscall
But if I have to choose based on the provided categories, and considering `pthread_mutex_init` is part of the threading runtime, it might be better categorized as **runtime**.
runtime
|