summaryrefslogtreecommitdiff
path: root/os-posix.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-07 22:32:59 -0500
committerpommicket <pommicket@gmail.com>2023-01-07 22:32:59 -0500
commit01d5fcc72f6ea29d0f90b845b7565137e7daac14 (patch)
tree39346ae60c418345612ad6c6634943cc630d713d /os-posix.c
parentcb55279a20865fcfde23a160233155d23a09a03b (diff)
fix tags go-to-definition menu, silence errors for LSP not found
Diffstat (limited to 'os-posix.c')
-rw-r--r--os-posix.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/os-posix.c b/os-posix.c
index 3e32c20..42c55bb 100644
--- a/os-posix.c
+++ b/os-posix.c
@@ -344,44 +344,46 @@ void process_kill(Process **pproc) {
*pproc = NULL;
}
-int process_check_status(Process **pproc, char *message, size_t message_size) {
+int process_check_status(Process **pproc, ProcessExitInfo *info) {
Process *proc = *pproc;
+ memset(info, 0, sizeof *info);
+
if (!proc) {
assert(0);
- if (message) str_printf(message, message_size, "checked status twice");
+ strbuf_printf(info->message, "checked status twice");
return -1;
}
- assert(!message || message_size > 0);
int wait_status = 0;
int ret = waitpid(proc->pid, &wait_status, WNOHANG);
if (ret == 0) {
// process still running
- if (message)
- *message = '\0';
return 0;
} else if (ret > 0) {
if (WIFEXITED(wait_status)) {
process_kill(pproc);
int code = WEXITSTATUS(wait_status);
+ info->exit_code = code;
+ info->exited = true;
if (code == 0) {
- if (message) str_printf(message, message_size, "exited successfully");
+ strbuf_printf(info->message, "exited successfully");
return +1;
} else {
- if (message) str_printf(message, message_size, "exited with code %d", code);
+ strbuf_printf(info->message, "exited with code %d", code);
return -1;
}
} else if (WIFSIGNALED(wait_status)) {
+ int signal = WTERMSIG(wait_status);
+ info->signal = signal;
+ info->signalled = true;
process_close_pipes(proc);
- if (message)
- str_printf(message, message_size, "terminated by signal %d", WTERMSIG(wait_status));
+ strbuf_printf(info->message, "terminated by signal %d", info->signal);
return -1;
}
return 0;
} else {
// this process is gone or something?
process_close_pipes(proc);
- if (message)
- str_printf(message, message_size, "process ended unexpectedly");
+ strbuf_printf(info->message, "process ended unexpectedly");
return -1;
}
}