mirror of
https://github.com/libretro/RetroArch
synced 2025-02-21 09:39:56 +00:00
(Runloop data) Move http_iterate to non-threaded data runloop for now - code
not thread-safe for now
This commit is contained in:
parent
9a36db00a4
commit
48b71c8e01
@ -897,9 +897,6 @@ static void data_runloop_iterate(bool is_thread, data_runloop_t *runloop)
|
||||
{
|
||||
nbio_handle_t *nbio = runloop ? &runloop->nbio : NULL;
|
||||
rarch_main_data_nbio_iterate(is_thread, nbio);
|
||||
#ifdef HAVE_NETWORKING
|
||||
rarch_main_data_http_iterate(is_thread, &runloop->http);
|
||||
#endif
|
||||
rarch_main_data_db_iterate();
|
||||
}
|
||||
|
||||
@ -987,10 +984,14 @@ void rarch_main_data_iterate(void)
|
||||
rarch_main_data_overlay_iterate(false, data_runloop);
|
||||
#endif
|
||||
rarch_main_data_nbio_image_iterate(false, data_runloop);
|
||||
#ifdef HAVE_NETWORKING
|
||||
rarch_main_data_http_iterate(false, &data_runloop->http);
|
||||
#endif
|
||||
|
||||
if (settings->menu.threaded_data_runloop_enable && data_runloop->alive)
|
||||
return;
|
||||
|
||||
|
||||
data_runloop_iterate(false, data_runloop);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user