mirror of
https://github.com/google/nsjail.git
synced 2026-08-31 02:51:30 -07:00
omit keyword 'struct'
This commit is contained in:
10
subproc.h
10
subproc.h
@@ -30,12 +30,12 @@
|
||||
|
||||
namespace subproc {
|
||||
|
||||
void runChild(struct nsjconf_t* nsjconf, int fd_in, int fd_out, int fd_err);
|
||||
int countProc(struct nsjconf_t* nsjconf);
|
||||
void displayProc(struct nsjconf_t* nsjconf);
|
||||
void killAll(struct nsjconf_t* nsjconf);
|
||||
void runChild(nsjconf_t* nsjconf, int fd_in, int fd_out, int fd_err);
|
||||
int countProc(nsjconf_t* nsjconf);
|
||||
void displayProc(nsjconf_t* nsjconf);
|
||||
void killAll(nsjconf_t* nsjconf);
|
||||
/* Returns the exit code of the first failing subprocess, or 0 if none fail */
|
||||
int reapProc(struct nsjconf_t* nsjconf);
|
||||
int reapProc(nsjconf_t* nsjconf);
|
||||
int systemExe(const char** argv, char** env);
|
||||
pid_t cloneProc(uintptr_t flags);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user