You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
678 B
34 lines
678 B
/* |
|
htop |
|
(C) 2004-2011 Hisham H. Muhammad |
|
Released under the GNU GPL, see the COPYING file |
|
in the source distribution for its full text. |
|
*/ |
|
|
|
#include "HostnameMeter.h" |
|
#include "Meter.h" |
|
|
|
#include <unistd.h> |
|
|
|
#include "debug.h" |
|
|
|
int HostnameMeter_attributes[] = { |
|
HOSTNAME |
|
}; |
|
|
|
static void HostnameMeter_setValues(Meter* this, char* buffer, int size) { |
|
(void) this; |
|
gethostname(buffer, size-1); |
|
} |
|
|
|
MeterType HostnameMeter = { |
|
.setValues = HostnameMeter_setValues, |
|
.display = NULL, |
|
.mode = TEXT_METERMODE, |
|
.total = 100.0, |
|
.items = 1, |
|
.attributes = HostnameMeter_attributes, |
|
.name = "Hostname", |
|
.uiName = "Hostname", |
|
.caption = "Hostname: ", |
|
};
|
|
|