X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=test.c;h=0af74771cda014922689192acba012216030c2fa;hp=40bf79801c412b99167986da53935ed0a2e79107;hb=10dd7aacfe87f97e10d61dff343e00b9c03eac69;hpb=a0f6b00a15852c6f13034c9cd3974b62e442696d diff --git a/test.c b/test.c old mode 100755 new mode 100644 index 40bf798..0af7477 --- a/test.c +++ b/test.c @@ -26,7 +26,7 @@ opts_cmd_t opts; -const char *task_bins[] = { +static const char *task_bins[] = { "./gmqcc", "./qcvm" }; @@ -152,19 +152,15 @@ int task_pclose(FILE **handles) { return status; } #else - /* - * Bidirectional piping implementation for windows using CreatePipe and DuplicateHandle + - * other hacks. - */ typedef struct { - char name_err[L_tmpnam]; - char name_out[L_tmpnam]; + FILE *handles[3]; + char name_err[L_tmpnam]; + char name_out[L_tmpnam]; } popen_t; FILE **task_popen(const char *command, const char *mode) { - FILE **handles = NULL; - char *cmd = NULL; - popen_t *open = (popen_t*)mem_a(sizeof(popen_t) * 3); + char *cmd = NULL; + popen_t *open = (popen_t*)mem_a(sizeof(popen_t)); tmpnam(open->name_err); tmpnam(open->name_out); @@ -174,16 +170,17 @@ int task_pclose(FILE **handles) { util_asprintf(&cmd, "%s -redirout=%s -redirerr=%s", command, open->name_out, open->name_err); system(cmd); /* HACK */ - handles = (FILE**)(open + 1); - handles[0] = NULL; - handles[1] = fs_file_open(open->name_out, "r"); - handles[2] = fs_file_open(open->name_err, "r"); + open->handles[0] = NULL; + open->handles[1] = fs_file_open(open->name_out, "r"); + open->handles[2] = fs_file_open(open->name_err, "r"); + + mem_d(cmd); - return handles; + return open->handles; } void task_pclose(FILE **files) { - popen_t *open = ((popen_t*)files) - 1; + popen_t *open = ((popen_t*)files); fs_file_close(files[1]); fs_file_close(files[2]); remove(open->name_err); @@ -657,7 +654,7 @@ typedef struct { bool compiled; } task_t; -task_t *task_tasks = NULL; +static task_t *task_tasks = NULL; /* * Read a directory and searches for all template files in it