subproc.h: make cloneProc declaration match the definition

This commit is contained in:
Robert Swiecki 2022-10-25 08:33:23 +02:00
parent 285ea15811
commit fdc640e20c

View File

@ -41,7 +41,7 @@ void killAndReapAll(nsjconf_t* nsjconf, int signal);
/* Returns the exit code of the first failing subprocess, or 0 if none fail */ /* Returns the exit code of the first failing subprocess, or 0 if none fail */
int reapProc(nsjconf_t* nsjconf); int reapProc(nsjconf_t* nsjconf);
int systemExe(const std::vector<std::string>& args, char** env); int systemExe(const std::vector<std::string>& args, char** env);
pid_t cloneProc(uintptr_t flags, int exit_signal); pid_t cloneProc(uint64_t flags, int exit_signal);
} // namespace subproc } // namespace subproc