Increase maximum wait time for program to start to 1 second. Refs #1243

This commit is contained in:
baldurk
2019-01-29 10:45:26 +00:00
parent e70dd127f3
commit bca706a96b
+3 -1
View File
@@ -28,8 +28,10 @@
extern char **environ;
// we wait 1ns, then 2ns, then 4ns, etc so our total is 0xfff etc
// 0xfffff == ~1s
#define INITIAL_WAIT_TIME 1
#define MAX_WAIT_TIME 128000
#define MAX_WAIT_TIME 0xfffff
char **GetCurrentEnvironment()
{