Thread routine wrapper for exec()
| 60 | |
| 61 | //# Thread routine wrapper for exec() |
| 62 | void* execRoutine(void* args_) { |
| 63 | execStruct* args = (execStruct*) args_; |
| 64 | xiExec(args->chaihandle, args->input, args->output); |
| 65 | return NULL; |
| 66 | } |
| 67 | |
| 68 | int main(int argc, char **argv) |
| 69 | { |