zend_bool remote = 0;
int run = 0;
int step = 0;
+
+#ifdef _WIN32
char *bp_tmp_file;
+#else
+ char bp_tmp_file[] = "/tmp/phpdbg.XXXXXX";
+#endif
+
#ifndef _WIN32
char *address;
int listen[2];
phpdbg_main:
if (!cleaning) {
+#ifdef _WIN32
bp_tmp_file = malloc(L_tmpnam);
tmpnam(bp_tmp_file);
+#else
+ mkstemp(bp_tmp_file);
+#endif
if (bp_tmp_file == NULL) {
phpdbg_error("Unable to create temporary file");
}
free(sapi_name);
}
+#ifdef _WIN32
free(bp_tmp_file);
+#else
+ unlink(bp_tmp_file);
+#endif
return 0;
} /* }}} */