fix: Temporary disable WaitStatus core dump, continued and stopped states handling due https://github.com/vlang/v/issues/27098 bug

This commit is contained in:
ge
2026-05-12 20:06:50 +03:00
parent 8286af90eb
commit 7390af4699
2 changed files with 38 additions and 41 deletions
+10 -9
View File
@@ -76,19 +76,20 @@ pub fn (s ProcessState) str() string {
sig_str := os.sigint_to_signal_name(sig)
str = 'signal: ${sig} (${sig_str})'
}
s.status.stopped() {
str = 'stop signal: ${s.status.stop_signal()}'
}
s.status.continued() {
str = 'continued'
}
// s.status.stopped() {
// str = 'stop signal: ${s.status.stop_signal()}'
// }
// s.status.continued() {
// str = 'continued'
// }
else {
str = 'unknown'
}
}
if s.status.coredump() {
str += ' (core dumped)'
}
// if s.status.coredump() {
// str += ' (core dumped)'
// }
return str
}