Asger Gitz-Johansen
fa6ec315c8
Also, start using fork/chdir/exec idiom instead of posix_spawn, because as we all know: posix_spawn is stupid as a system call: https://lwn.net/Articles/360556/
11 lines
250 B
C
11 lines
250 B
C
#ifndef SCI_EXECUTOR_H
|
|
#define SCI_EXECUTOR_H
|
|
#include "strlist.h"
|
|
|
|
void executor(void* pipeline_event);
|
|
void set_logdir(const char* logdir);
|
|
void set_working_directory(const char* cwd);
|
|
void set_shared_environment(const strlist_node* root);
|
|
|
|
#endif
|