2024-08-26 18:40:23 +02:00
|
|
|
#ifndef SCI_EXECUTOR_H
|
|
|
|
#define SCI_EXECUTOR_H
|
2024-08-26 19:51:12 +02:00
|
|
|
#include "strlist.h"
|
2024-08-26 18:40:23 +02:00
|
|
|
|
|
|
|
void executor(void* pipeline_event);
|
|
|
|
void set_logdir(const char* logdir);
|
2024-08-29 20:51:11 +02:00
|
|
|
void set_working_directory(const char* cwd);
|
2024-08-26 19:51:12 +02:00
|
|
|
void set_shared_environment(const strlist_node* root);
|
2024-08-26 18:40:23 +02:00
|
|
|
|
|
|
|
#endif
|