2
0
mirror of https://github.com/openvswitch/ovs synced 2025-09-03 07:45:30 +00:00

process: Remove unused features from process_start().

Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Ethan Jackson <ethan@nicira.com>
This commit is contained in:
Ben Pfaff
2013-05-08 14:31:55 -07:00
parent 21f0192507
commit e1208bc494
3 changed files with 6 additions and 47 deletions

View File

@@ -23,10 +23,7 @@
struct process;
void process_init(void);
char *process_escape_args(char **argv);
int process_start(char **argv,
const int *keep_fds, size_t n_keep_fds,
const int *null_fds, size_t n_null_fds,
struct process **);
int process_start(char **argv, struct process **);
void process_destroy(struct process *);
int process_kill(const struct process *, int signr);