afk: Increase timeout from 500 loops to 500ms (time-based)

This should hopefully solve the reliability issues here.

Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
Hector Martin 2023-11-02 16:00:09 +09:00
parent 40a9444484
commit 321a80c928

View file

@ -722,7 +722,9 @@ int afk_epic_start_interface(afk_epic_ep_t *epic, void *intf, int expected, size
break; break;
} }
for (int tries = 0; tries < 500; tries += 1) { u64 timeout = timeout_calculate(500000);
while (!timeout_expired(timeout)) {
s64 epic_unit = -1; s64 epic_unit = -1;
char *epic_name = NULL; char *epic_name = NULL;
char *epic_class = NULL; char *epic_class = NULL;