mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
(thread_wrapper) Logging is not thread-safe, remove log messages
This commit is contained in:
parent
cc61c90602
commit
5c6d5b0aa3
@ -36,7 +36,6 @@ static void *video_thread_init_never_call(const video_info_t *video,
|
||||
(void)video;
|
||||
(void)input;
|
||||
(void)input_data;
|
||||
RARCH_ERR("Sanity check fail! Threaded mustn't be reinit.\n");
|
||||
abort();
|
||||
return NULL;
|
||||
}
|
||||
@ -845,10 +844,6 @@ static void video_thread_free(void *data)
|
||||
scond_free(thr->cond_cmd);
|
||||
scond_free(thr->cond_thread);
|
||||
|
||||
RARCH_LOG(
|
||||
"Threaded video stats: Frames pushed: %u, Frames dropped: %u.\n",
|
||||
thr->hit_count, thr->miss_count);
|
||||
|
||||
free(thr);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user