machine: Rename

This commit is contained in:
Alastair Poole 2020-06-17 23:08:44 +01:00
parent ce200bf65f
commit 30dba9499e
3 changed files with 10 additions and 10 deletions

View File

@ -1182,7 +1182,7 @@ _network_transfer_get_thread_cb(void *arg)
}
void
sys_info_all_free(Sys_Info *info)
system_info_all_free(Sys_Info *info)
{
sensor_t *snsr;
int i;
@ -1215,7 +1215,7 @@ sys_info_all_free(Sys_Info *info)
}
Sys_Info *
sys_info_all_get(void)
system_info_all_get(void)
{
Sys_Info *info;
void *ret;

View File

@ -67,10 +67,10 @@ struct Sys_Info
};
Sys_Info *
sys_info_all_get(void);
system_info_all_get(void);
void
sys_info_all_free(Sys_Info *);
system_info_all_free(Sys_Info *);
int
system_cpu_online_count_get();

View File

@ -1535,13 +1535,13 @@ _thread_error_cb(void *data EINA_UNUSED, Ecore_Thread *thread)
}
static void
_sys_info_all_poll(void *data, Ecore_Thread *thread)
_system_info_all_poll(void *data, Ecore_Thread *thread)
{
Ui *ui = data;
while (1)
{
Sys_Info *info = sys_info_all_get();
Sys_Info *info = system_info_all_get();
if (!info)
{
ecore_main_loop_quit();
@ -1565,7 +1565,7 @@ _sys_info_all_poll(void *data, Ecore_Thread *thread)
}
static void
_sys_info_all_poll_feedback_cb(void *data, Ecore_Thread *thread, void *msg)
_system_info_all_poll_feedback_cb(void *data, Ecore_Thread *thread, void *msg)
{
Ui *ui;
Evas_Object *pb;
@ -1603,7 +1603,7 @@ _sys_info_all_poll_feedback_cb(void *data, Ecore_Thread *thread, void *msg)
evisum_size_format(info->memory.used),
evisum_size_format(info->memory.total)));
out:
sys_info_all_free(info);
system_info_all_free(info);
}
static void
@ -1612,8 +1612,8 @@ _ui_launch(Ui *ui)
_process_list_update(ui);
ui->thread_system =
ecore_thread_feedback_run(_sys_info_all_poll,
_sys_info_all_poll_feedback_cb, _thread_end_cb,
ecore_thread_feedback_run(_system_info_all_poll,
_system_info_all_poll_feedback_cb, _thread_end_cb,
_thread_error_cb, ui, EINA_FALSE);
ui->thread_process =