X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e6e568cfd5b9e6c60c12841ffa644135712cbf4a..f22fa286e259aad98dd2e0e37e39fa7e89151ae4:/tools/tesh/run_context.h?ds=sidebyside diff --git a/tools/tesh/run_context.h b/tools/tesh/run_context.h index 57046720f8..9b334722be 100644 --- a/tools/tesh/run_context.h +++ b/tools/tesh/run_context.h @@ -19,6 +19,8 @@ typedef enum {e_output_check, e_output_display, e_output_ignore} e_output_handli typedef struct { /* kind of job */ char *cmd; + char **env; + int env_size; char *filepos; int pid; int is_background:1; @@ -46,9 +48,9 @@ typedef struct { int expected_return; /* the exepeted return code of following command */ /* buffers */ - buff_t input; - buff_t output_wanted; - buff_t output_got; + xbt_strbuff_t input; + xbt_strbuff_t output_wanted; + xbt_strbuff_t output_got; /* Threads */ xbt_os_thread_t writer, reader; /* IO handlers */