mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2025-02-16 13:34:45 -06:00
Increase timeout delay for starting APs.
This commit is contained in:
parent
16b066c3e3
commit
d1382b7a53
@ -710,7 +710,7 @@ int smp_start(cpu_state_t cpu_state[MAX_CPUS])
|
||||
}
|
||||
}
|
||||
#if SEQUENTIAL_AP_START
|
||||
int timeout = 10000;
|
||||
int timeout = 10*1000*10;
|
||||
while (timeout > 0) {
|
||||
if (cpu_state[cpu_num] == CPU_STATE_RUNNING) break;
|
||||
usleep(100);
|
||||
@ -725,7 +725,7 @@ int smp_start(cpu_state_t cpu_state[MAX_CPUS])
|
||||
#if SEQUENTIAL_AP_START
|
||||
return 0;
|
||||
#else
|
||||
int timeout = 10000;
|
||||
int timeout = 10*1000*10;
|
||||
while (timeout > 0) {
|
||||
for (cpu_num = 1; cpu_num < num_available_cpus; cpu_num++) {
|
||||
if (cpu_state[cpu_num] == CPU_STATE_ENABLED) break;
|
||||
|
Loading…
Reference in New Issue
Block a user