diff --git a/Makefile.common b/Makefile.common
index 67f1c532f3..0878272c7b 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -110,7 +110,6 @@ OBJ += frontend/frontend.o \
libretro_version_1.o \
retroarch.o \
input/input_keyboard.o \
- system.o \
command_event.o \
msg_hash.o \
intl/msg_hash_de.o \
diff --git a/dynamic.c b/dynamic.c
index becc509c19..856d6ee056 100644
--- a/dynamic.c
+++ b/dynamic.c
@@ -521,34 +521,33 @@ void uninit_libretro_sym(void)
lib_handle = NULL;
#endif
- core.retro_init = NULL;
- core.retro_deinit = NULL;
- core.retro_api_version = NULL;
- core.retro_get_system_info = NULL;
- core.retro_get_system_av_info = NULL;
- core.retro_set_environment = NULL;
- core.retro_set_video_refresh = NULL;
- core.retro_set_audio_sample = NULL;
- core.retro_set_audio_sample_batch = NULL;
- core.retro_set_input_poll = NULL;
- core.retro_set_input_state = NULL;
+ core.retro_init = NULL;
+ core.retro_deinit = NULL;
+ core.retro_api_version = NULL;
+ core.retro_get_system_info = NULL;
+ core.retro_get_system_av_info = NULL;
+ core.retro_set_environment = NULL;
+ core.retro_set_video_refresh = NULL;
+ core.retro_set_audio_sample = NULL;
+ core.retro_set_audio_sample_batch = NULL;
+ core.retro_set_input_poll = NULL;
+ core.retro_set_input_state = NULL;
core.retro_set_controller_port_device = NULL;
- core.retro_reset = NULL;
- core.retro_run = NULL;
- core.retro_serialize_size = NULL;
- core.retro_serialize = NULL;
- core.retro_unserialize = NULL;
- core.retro_cheat_reset = NULL;
- core.retro_cheat_set = NULL;
- core.retro_load_game = NULL;
- core.retro_load_game_special = NULL;
- core.retro_unload_game = NULL;
- core.retro_get_region = NULL;
- core.retro_get_memory_data = NULL;
- core.retro_get_memory_size = NULL;
-
- rarch_system_info_free();
+ core.retro_reset = NULL;
+ core.retro_run = NULL;
+ core.retro_serialize_size = NULL;
+ core.retro_serialize = NULL;
+ core.retro_unserialize = NULL;
+ core.retro_cheat_reset = NULL;
+ core.retro_cheat_set = NULL;
+ core.retro_load_game = NULL;
+ core.retro_load_game_special = NULL;
+ core.retro_unload_game = NULL;
+ core.retro_get_region = NULL;
+ core.retro_get_memory_data = NULL;
+ core.retro_get_memory_size = NULL;
+ runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_FREE, NULL);
camera_driver_ctl(RARCH_CAMERA_CTL_UNSET_ACTIVE, NULL);
location_driver_ctl(RARCH_LOCATION_CTL_UNSET_ACTIVE, NULL);
diff --git a/griffin/griffin.c b/griffin/griffin.c
index c05e1d5b0e..7a0244108a 100644
--- a/griffin/griffin.c
+++ b/griffin/griffin.c
@@ -703,7 +703,6 @@ RETROARCH
#include "../libretro_version_1.c"
#include "../retroarch.c"
#include "../runloop.c"
-#include "../system.c"
#include "../tasks/tasks.c"
#include "../msg_hash.c"
diff --git a/retroarch.c b/retroarch.c
index 0bc1097b2c..ff258daa36 100644
--- a/retroarch.c
+++ b/retroarch.c
@@ -1230,7 +1230,7 @@ int rarch_main_init(int argc, char *argv[])
}
init_libretro_sym(global->inited.core.type);
- rarch_system_info_init();
+ runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_INIT, NULL);
init_drivers_pre();
diff --git a/runloop.c b/runloop.c
index aa1d127f07..cfdd6219b6 100644
--- a/runloop.c
+++ b/runloop.c
@@ -64,6 +64,18 @@
#include "verbosity.h"
+#ifdef HAVE_ZLIB
+#define DEFAULT_EXT "zip"
+#else
+#define DEFAULT_EXT ""
+#endif
+
+static rarch_system_info_t *g_system;
+
+#ifdef HAVE_MENU
+struct retro_system_info g_system_menu;
+#endif
+
typedef struct event_cmd_state
{
retro_input_t state[3];
@@ -81,6 +93,18 @@ global_t *global_get_ptr(void)
return &g_extern;
}
+static rarch_system_info_t *rarch_system_info_new(void)
+{
+ return (rarch_system_info_t*)calloc(1, sizeof(rarch_system_info_t));
+}
+
+rarch_system_info_t *rarch_system_info_get_ptr(void)
+{
+ if (!g_system)
+ g_system = rarch_system_info_new();
+ return g_system;
+}
+
const char *rarch_main_msg_queue_pull(void)
{
const char *ret = NULL;
@@ -414,9 +438,52 @@ bool runloop_ctl(enum runloop_ctl_state state, void *data)
static slock_t *runloop_msg_queue_lock = NULL;
#endif
settings_t *settings = config_get_ptr();
+ rarch_system_info_t *system = rarch_system_info_get_ptr();
switch (state)
{
+ case RUNLOOP_CTL_SYSTEM_INFO_INIT:
+ core.retro_get_system_info(&system->info);
+
+ if (!system->info.library_name)
+ system->info.library_name = msg_hash_to_str(MSG_UNKNOWN);
+ if (!system->info.library_version)
+ system->info.library_version = "v0";
+
+#ifndef RARCH_CONSOLE
+ strlcpy(system->title_buf,
+ msg_hash_to_str(MSG_PROGRAM), sizeof(system->title_buf));
+ strlcat(system->title_buf, " : ", sizeof(system->title_buf));
+#endif
+ strlcat(system->title_buf, system->info.library_name, sizeof(system->title_buf));
+ strlcat(system->title_buf, " ", sizeof(system->title_buf));
+ strlcat(system->title_buf, system->info.library_version, sizeof(system->title_buf));
+ strlcpy(system->valid_extensions, system->info.valid_extensions ?
+ system->info.valid_extensions : DEFAULT_EXT,
+ sizeof(system->valid_extensions));
+ system->block_extract = system->info.block_extract;
+ break;
+ case RUNLOOP_CTL_SYSTEM_INFO_FREE:
+ if (!g_system)
+ return false;
+
+ if (g_system->core_options)
+ {
+ core_option_flush(g_system->core_options);
+ core_option_free(g_system->core_options);
+ }
+
+ /* No longer valid. */
+ if (g_system->special)
+ free(g_system->special);
+ g_system->special = NULL;
+ if (g_system->ports)
+ free(g_system->ports);
+ g_system->ports = NULL;
+
+ free(g_system);
+ g_system = NULL;
+ break;
case RUNLOOP_CTL_IS_FRAME_COUNT_END:
{
uint64_t *frame_count = NULL;
diff --git a/runloop.h b/runloop.h
index 416ba695c0..2cbb743e72 100644
--- a/runloop.h
+++ b/runloop.h
@@ -85,6 +85,8 @@ enum runloop_ctl_state
RUNLOOP_CTL_MSG_QUEUE_LOCK,
RUNLOOP_CTL_MSG_QUEUE_UNLOCK,
RUNLOOP_CTL_MSG_QUEUE_FREE,
+ RUNLOOP_CTL_SYSTEM_INFO_INIT,
+ RUNLOOP_CTL_SYSTEM_INFO_FREE,
RUNLOOP_CTL_PREPARE_DUMMY
};
diff --git a/system.c b/system.c
deleted file mode 100644
index fe732e59c6..0000000000
--- a/system.c
+++ /dev/null
@@ -1,92 +0,0 @@
-/* RetroArch - A frontend for libretro.
- * Copyright (C) 2011-2015 - Daniel De Matteis
- *
- * RetroArch is free software: you can redistribute it and/or modify it under the terms
- * of the GNU General Public License as published by the Free Software Found-
- * ation, either version 3 of the License, or (at your option) any later version.
- *
- * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
- * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with RetroArch.
- * If not, see .
- */
-
-#include
-
-#include "system.h"
-#include "dynamic.h"
-#include "msg_hash.h"
-
-#ifdef HAVE_ZLIB
-#define DEFAULT_EXT "zip"
-#else
-#define DEFAULT_EXT ""
-#endif
-
-static rarch_system_info_t *g_system;
-
-#ifdef HAVE_MENU
-struct retro_system_info g_system_menu;
-#endif
-
-static rarch_system_info_t *rarch_system_info_new(void)
-{
- return (rarch_system_info_t*)calloc(1, sizeof(rarch_system_info_t));
-}
-
-rarch_system_info_t *rarch_system_info_get_ptr(void)
-{
- if (!g_system)
- g_system = rarch_system_info_new();
- return g_system;
-}
-
-void rarch_system_info_free(void)
-{
- if (!g_system)
- return;
-
- if (g_system->core_options)
- {
- core_option_flush(g_system->core_options);
- core_option_free(g_system->core_options);
- }
-
- /* No longer valid. */
- if (g_system->special)
- free(g_system->special);
- g_system->special = NULL;
- if (g_system->ports)
- free(g_system->ports);
- g_system->ports = NULL;
-
- free(g_system);
- g_system = NULL;
-}
-
-void rarch_system_info_init(void)
-{
- rarch_system_info_t *system = rarch_system_info_get_ptr();
-
- core.retro_get_system_info(&system->info);
-
- if (!system->info.library_name)
- system->info.library_name = msg_hash_to_str(MSG_UNKNOWN);
- if (!system->info.library_version)
- system->info.library_version = "v0";
-
-#ifndef RARCH_CONSOLE
- strlcpy(system->title_buf,
- msg_hash_to_str(MSG_PROGRAM), sizeof(system->title_buf));
- strlcat(system->title_buf, " : ", sizeof(system->title_buf));
-#endif
- strlcat(system->title_buf, system->info.library_name, sizeof(system->title_buf));
- strlcat(system->title_buf, " ", sizeof(system->title_buf));
- strlcat(system->title_buf, system->info.library_version, sizeof(system->title_buf));
- strlcpy(system->valid_extensions, system->info.valid_extensions ?
- system->info.valid_extensions : DEFAULT_EXT,
- sizeof(system->valid_extensions));
- system->block_extract = system->info.block_extract;
-}
diff --git a/system.h b/system.h
index 189d34ac0f..9e2dbc0206 100644
--- a/system.h
+++ b/system.h
@@ -69,10 +69,6 @@ extern struct retro_system_info g_system_menu;
rarch_system_info_t *rarch_system_info_get_ptr(void);
-void rarch_system_info_free(void);
-
-void rarch_system_info_init(void);
-
#ifdef __cplusplus
}
#endif