From 322513ac417aa7002946a3f203ae1a65f959677a Mon Sep 17 00:00:00 2001 From: dec05eba Date: Fri, 9 Aug 2019 15:54:44 +0200 Subject: Wait until mpv process dies (prevent zombie), fix crash that happens sometimes when quiting video --- include/Program.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/Program.h') diff --git a/include/Program.h b/include/Program.h index 69ee564..6a6d038 100644 --- a/include/Program.h +++ b/include/Program.h @@ -22,6 +22,9 @@ typedef int (*ProgramOutputCallback)(char *data, int size, void *userdata); */ int exec_program(const char **args, ProgramOutputCallback output_callback, void *userdata); +// Return the exit status, or a negative value if waiting failed +int wait_program(pid_t process_id); + /* @args need to have at least 2 arguments. The first which is the program name and the last which is NULL, which indicates end of args -- cgit v1.2.3