aboutsummaryrefslogtreecommitdiff
path: root/core/platform.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/platform.c')
-rw-r--r--core/platform.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/platform.c b/core/platform.c
index 2a29a7e..dec7e96 100644
--- a/core/platform.c
+++ b/core/platform.c
@@ -110,12 +110,16 @@ int resource_loaded(enum resource_id id, uint32_t idx)
int wait_for_resource_loaded(enum resource_id id, uint32_t idx)
{
int r = resource_loaded(id, idx);
+ int waited = 0;
while(r == OPAL_BUSY) {
opal_run_pollers();
time_wait_ms_nopoll(5);
+ waited+=5;
r = resource_loaded(id, idx);
}
+ prlog(PR_TRACE, "PLATFORM: wait_for_resource_loaded %x/%x %u ms\n",
+ id, idx, waited);
return r;
}