summaryrefslogtreecommitdiffstats
path: root/htop.c
diff options
context:
space:
mode:
authorNathan Scott <nathans@redhat.com>2020-11-23 17:34:44 +1100
committerNathan Scott <nathans@redhat.com>2020-11-23 17:34:44 +1100
commit003f2c06a4a346ecfcc9272700a6fa71d381c43e (patch)
tree03ac4388ba32e929e392e234dd99a19674295ac2 /htop.c
parent17eeb7573abe504a63e10621d67cae65e2f620aa (diff)
parent82a69ee87af4aec4b5520d55c4949f287f4e6708 (diff)
Merge branch 'cleanup-init-done' into master
Diffstat (limited to 'htop.c')
-rw-r--r--htop.c63
1 files changed, 19 insertions, 44 deletions
diff --git a/htop.c b/htop.c
index a908c2a3..fb919027 100644
--- a/htop.c
+++ b/htop.c
@@ -34,18 +34,12 @@ in the source distribution for its full text.
#include "UsersTable.h"
#include "XUtils.h"
-
-#ifdef HAVE_LIBSENSORS
-#include <sensors/sensors.h>
-#endif
-
-
static void printVersionFlag(void) {
- fputs("htop " VERSION "\n", stdout);
+ fputs(PACKAGE " " VERSION "\n", stdout);
}
static void printHelpFlag(void) {
- fputs("htop " VERSION "\n"
+ fputs(PACKAGE " " VERSION "\n"
COPYRIGHT "\n"
"Released under the GNU GPLv2.\n\n"
"-C --no-color Use a monochrome color scheme\n"
@@ -62,8 +56,8 @@ static void printHelpFlag(void) {
"-V --version Print version info\n"
"\n"
"Long options may be passed with a single dash.\n\n"
- "Press F1 inside htop for online help.\n"
- "See 'man htop' for more information.\n",
+ "Press F1 inside " PACKAGE " for online help.\n"
+ "See 'man " PACKAGE "' for more information.\n",
stdout);
}
@@ -269,22 +263,16 @@ static void setCommFilter(State* state, char** commFilter) {
int main(int argc, char** argv) {
char *lc_ctype = getenv("LC_CTYPE");
- if (lc_ctype != NULL) {
+ if (lc_ctype != NULL)
setlocale(LC_CTYPE, lc_ctype);
- } else if ((lc_ctype = getenv("LC_ALL"))) {
+ else if ((lc_ctype = getenv("LC_ALL")))
setlocale(LC_CTYPE, lc_ctype);
- } else {
+ else
setlocale(LC_CTYPE, "");
- }
- CommandLineSettings flags = parseArguments(argc, argv); // may exit()
+ CommandLineSettings flags = parseArguments(argc, argv);
-#ifdef HTOP_LINUX
- if (access(PROCDIR, R_OK) != 0) {
- fprintf(stderr, "Error: could not read procfs (compiled to look in %s).\n", PROCDIR);
- exit(1);
- }
-#endif
+ Platform_init();
Process_setupColumnWidths();
@@ -298,31 +286,21 @@ int main(int argc, char** argv) {
Header_populateFromSettings(header);
- if (flags.delay != -1) {
+ if (flags.delay != -1)
settings->delay = flags.delay;
- }
- if (!flags.useColors) {
+ if (!flags.useColors)
settings->colorScheme = COLORSCHEME_MONOCHROME;
- }
- if (!flags.enableMouse) {
+ if (!flags.enableMouse)
settings->enableMouse = false;
- }
- if (flags.treeView) {
+ if (flags.treeView)
settings->treeView = true;
- }
- if (flags.highlightChanges) {
+ if (flags.highlightChanges)
settings->highlightChanges = true;
- }
- if (flags.highlightDelaySecs != -1) {
+ if (flags.highlightDelaySecs != -1)
settings->highlightDelaySecs = flags.highlightDelaySecs;
- }
CRT_init(settings->delay, settings->colorScheme, flags.allowUnicode);
-#ifdef HAVE_LIBSENSORS
- sensors_init(NULL);
-#endif
-
MainPanel* panel = MainPanel_new();
ProcessList_setPanel(pl, (Panel*) panel);
@@ -345,9 +323,8 @@ int main(int argc, char** argv) {
};
MainPanel_setState(panel, &state);
- if (flags.commFilter) {
+ if (flags.commFilter)
setCommFilter(&state, &(flags.commFilter));
- }
ScreenManager* scr = ScreenManager_new(0, header->height, 0, -1, HORIZONTAL, header, settings, &state, true);
ScreenManager_add(scr, (Panel*) panel, -1);
@@ -363,9 +340,7 @@ int main(int argc, char** argv) {
attroff(CRT_colors[RESET_COLOR]);
refresh();
-#ifdef HAVE_LIBSENSORS
- sensors_cleanup();
-#endif
+ Platform_done();
CRT_done();
if (settings->changed)
@@ -379,8 +354,8 @@ int main(int argc, char** argv) {
UsersTable_delete(ut);
Settings_delete(settings);
- if(flags.pidMatchList) {
+ if (flags.pidMatchList)
Hashtable_delete(flags.pidMatchList);
- }
+
return 0;
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy