From dd4ab103814bd1dd08fad185ffcd84a74c02a9b2 Mon Sep 17 00:00:00 2001 From: Alastair Poole Date: Wed, 13 May 2020 21:13:01 +0100 Subject: [PATCH] machine: Fix header indent. --- src/bin/system/disks.h | 6 +++--- src/bin/system/machine.h | 12 ++++++------ src/bin/system/process.h | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/bin/system/disks.h b/src/bin/system/disks.h index 10336eb..c212e30 100644 --- a/src/bin/system/disks.h +++ b/src/bin/system/disks.h @@ -5,12 +5,12 @@ #include Eina_Bool - disk_usage_get(const char *mountpoint, unsigned long *total, unsigned long *used); +disk_usage_get(const char *mountpoint, unsigned long *total, unsigned long *used); char * - disk_mount_point_get(const char *path); +disk_mount_point_get(const char *path); Eina_List * - disks_get(void); +disks_get(void); #endif diff --git a/src/bin/system/machine.h b/src/bin/system/machine.h index 7ab71fa..0ac6cea 100644 --- a/src/bin/system/machine.h +++ b/src/bin/system/machine.h @@ -63,21 +63,21 @@ struct results_t }; results_t * - system_stats_get(void); +system_stats_get(void); int - system_cpu_memory_get(double *percent_cpu, long *memory_total, long *memory_used); +system_cpu_memory_get(double *percent_cpu, long *memory_total, long *memory_used); bool - system_network_transfer_get(unsigned long *incoming, unsigned long *outgoing); +system_network_transfer_get(unsigned long *incoming, unsigned long *outgoing); int - system_temperature_cpu_get(void); +system_temperature_cpu_get(void); void - system_power_state_get(power_t *power); +system_power_state_get(power_t *power); int - system_cpu_online_count_get(); +system_cpu_online_count_get(); #endif diff --git a/src/bin/system/process.h b/src/bin/system/process.h index 4ebe6c6..fbade11 100644 --- a/src/bin/system/process.h +++ b/src/bin/system/process.h @@ -55,7 +55,7 @@ typedef struct _Proc_Info * @return A list of proc_t members for all processes. */ Eina_List * - proc_info_all_get(void); +proc_info_all_get(void); /** * Query a process for its current state. @@ -65,7 +65,7 @@ Eina_List * * @return A proc_t pointer containing the process information. */ Proc_Info * - proc_info_by_pid(int pid); +proc_info_by_pid(int pid); /** * Free a Proc_Info * pointer; @@ -73,7 +73,7 @@ Proc_Info * * @param proc The object to free. */ void - proc_info_free(Proc_Info *proc); +proc_info_free(Proc_Info *proc); /** * @}