55 lines
2.1 KiB
Diff
55 lines
2.1 KiB
Diff
diff -u -r ../procps-ng-3.3.16/top/top.c ./top/top.c
|
|
--- ../procps-ng-3.3.16/top/top.c 2019-10-27 11:32:58.367231155 +0000
|
|
+++ ./top/top.c 2019-12-11 23:36:33.427048000 +0000
|
|
@@ -2479,7 +2479,7 @@
|
|
(sorry Linux, but you'll have to close it for us) */
|
|
if (!fp) {
|
|
if (!(fp = fopen("/proc/stat", "r")))
|
|
- error_exit(fmtmk(N_fmt(FAIL_statopn_fmt), strerror(errno)));
|
|
+ return;
|
|
/* note: we allocate one more CPU_t via totSLOT than 'cpus' so that a
|
|
slot can hold tics representing the /proc/stat cpu summary */
|
|
Cpu_tics = alloc_c(totSLOT * sizeof(CPU_t));
|
|
@@ -4334,7 +4334,7 @@
|
|
tmptty.c_cc[VERASE] = *key_backspace;
|
|
#ifdef TERMIOS_ONLY
|
|
if (-1 == tcsetattr(STDIN_FILENO, TCSAFLUSH, &tmptty))
|
|
- error_exit(fmtmk(N_fmt(FAIL_tty_set_fmt), strerror(errno)));
|
|
+ {}
|
|
tcgetattr(STDIN_FILENO, &Tty_tweaked);
|
|
#endif
|
|
// lastly, a nearly raw mode for unsolicited single keystrokes
|
|
@@ -4342,7 +4342,7 @@
|
|
tmptty.c_cc[VMIN] = 1;
|
|
tmptty.c_cc[VTIME] = 0;
|
|
if (-1 == tcsetattr(STDIN_FILENO, TCSAFLUSH, &tmptty))
|
|
- error_exit(fmtmk(N_fmt(FAIL_tty_set_fmt), strerror(errno)));
|
|
+ {}
|
|
tcgetattr(STDIN_FILENO, &Tty_raw);
|
|
|
|
#ifndef OFF_STDIOLBF
|
|
@@ -5808,7 +5808,7 @@
|
|
|
|
if (!Numa_node_tot) goto numa_nope;
|
|
|
|
- if (CHKw(w, View_CPUNOD)) {
|
|
+ if (Cpu_tics && CHKw(w, View_CPUNOD)) {
|
|
if (Numa_node_sel < 0) {
|
|
// display the 1st /proc/stat line, then the nodes (if room)
|
|
summary_hlp(&Cpu_tics[smp_num_cpus], N_txt(WORD_allcpus_txt));
|
|
@@ -5843,12 +5843,12 @@
|
|
}
|
|
} else
|
|
numa_nope:
|
|
- if (CHKw(w, View_CPUSUM)) {
|
|
+ if (Cpu_tics && CHKw(w, View_CPUSUM)) {
|
|
// display just the 1st /proc/stat line
|
|
summary_hlp(&Cpu_tics[smp_num_cpus], N_txt(WORD_allcpus_txt));
|
|
Msg_row += 1;
|
|
|
|
- } else {
|
|
+ } else if (Cpu_tics) {
|
|
// display each cpu's states separately, screen height permitting...
|
|
for (i = 0; i < Cpu_faux_tot; i++) {
|
|
snprintf(tmp, sizeof(tmp), N_fmt(WORD_eachcpu_fmt), Cpu_tics[i].id);
|