4 Star 8 Fork 0

Gitee 极速下载 / htop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/htop-dev/htop
克隆/下载
SysArchMeter.c 946 Bytes
一键复制 编辑 原始数据 按行查看 历史
/*
htop - SysArchMeter.c
(C) 2021 htop dev team
Released under the GNU GPLv2+, see the COPYING file
in the source distribution for its full text.
*/
#include "config.h" // IWYU pragma: keep
#include "SysArchMeter.h"
#include <stddef.h>
#include "CRT.h"
#include "Object.h"
#include "Platform.h"
#include "XUtils.h"
static const int SysArchMeter_attributes[] = {HOSTNAME};
static void SysArchMeter_updateValues(Meter* this) {
static char* string;
if (string == NULL)
Platform_getRelease(&string);
String_safeStrncpy(this->txtBuffer, string, sizeof(this->txtBuffer));
}
const MeterClass SysArchMeter_class = {
.super = {
.extends = Class(Meter),
.delete = Meter_delete
},
.updateValues = SysArchMeter_updateValues,
.defaultMode = TEXT_METERMODE,
.maxItems = 0,
.total = 100.0,
.attributes = SysArchMeter_attributes,
.name = "System",
.uiName = "System",
.caption = "System: ",
};
C
1
https://gitee.com/mirrors/htop.git
git@gitee.com:mirrors/htop.git
mirrors
htop
htop
main

搜索帮助