machine: rename from system.

This commit is contained in:
Alastair Poole 2020-05-13 12:17:39 +01:00
parent 48afb3f04b
commit 21236292f8
7 changed files with 9 additions and 9 deletions

View File

@ -73,7 +73,7 @@
# include <dev/acpica/acpiio.h>
#endif
#include "system.h"
#include "machine.h"
#if defined(__OpenBSD__)
# define CPU_STATES 6

View File

@ -1,5 +1,5 @@
#ifndef __SYSTEM_H__
#define __SYSTEM_H__
#ifndef __MACHINE_H__
#define __MACHINE_H__
#include <stdint.h>
#include <stdbool.h>

View File

@ -3,6 +3,6 @@ src += files([
'disks.h',
'process.c',
'process.h',
'system.c',
'system.h',
'machine.c',
'machine.h',
])

View File

@ -2,7 +2,7 @@
#define __UI_CPU_H__
#include "ui.h"
#include "../system/system.h"
#include "../system/machine.h"
void
ui_tab_cpu_add(Ui *ui);

View File

@ -2,7 +2,7 @@
#define __UI_MEMORY_H__
#include "ui.h"
#include "../system/system.h"
#include "../system/machine.h"
void
ui_tab_memory_add(Ui *ui);

View File

@ -2,7 +2,7 @@
#define __UI_MISC_H__
#include "ui.h"
#include "../system/system.h"
#include "../system/machine.h"
void
ui_tab_misc_add(Ui *ui);

View File

@ -310,7 +310,7 @@ ui_process_panel_add(Ui *ui)
elm_entry_line_wrap_set(entry, ELM_WRAP_NONE);
elm_table_pack(table, entry, 1, i++, 1, 1);
label = elm_label_add(parent);
label = elm_label_add(parent);
elm_object_text_set(label, _("UID:"));
evas_object_show(label);
elm_table_pack(table, label, 0, i, 1, 1);