]> granicus.if.org Git - procps-ng/commitdiff
top: miscellaneous accumulated tweaks to code/comments
authorJim Warner <james.warner@comcast.net>
Wed, 21 Oct 2015 05:00:00 +0000 (00:00 -0500)
committerCraig Small <csmall@enc.com.au>
Wed, 28 Oct 2015 10:01:16 +0000 (21:01 +1100)
A patch containing the following miscellaneous tweaks:

. remove a function that handled former library errors
[ that function should have gone bye-bye with 3.3.11 ]
[ when those 'wchan' provisions were much simplified ]

Signed-off-by: Jim Warner <james.warner@comcast.net>
top/top.c
top/top.h

index 9d0e56aa57f59872688888645c6c1a1bc603e7dd..c01b9834a5c0252bfe2cbbe36dcbecf89870a641 100644 (file)
--- a/top/top.c
+++ b/top/top.c
@@ -574,21 +574,6 @@ static void error_exit (const char *str) {
 } // end: error_exit
 
 
-        /*
-         * Handle library errors ourselves rather than accept a default
-         * fprintf to stderr (since we've mucked with the termios struct) */
-static void library_err (const char *fmts, ...) NORETURN;
-static void library_err (const char *fmts, ...) {
-   static char tmp[MEDBUFSIZ];
-   va_list va;
-
-   va_start(va, fmts);
-   vsnprintf(tmp, sizeof(tmp), fmts, va);
-   va_end(va);
-   error_exit(tmp);
-} // end: library_err
-
-
         /*
          * Catches all remaining signals not otherwise handled */
 static void sig_abexit (int sig) {
index ddf34f13b23308194d7c30dd16a736f30f9d9536..789b9b3043feececa97b25110337fbc58e868735 100644 (file)
--- a/top/top.h
+++ b/top/top.h
@@ -682,7 +682,6 @@ typedef struct WIN_t {
 //atic void          at_eoj (void);
 //atic void          bye_bye (const char *str);
 //atic void          error_exit (const char *str);
-//atic void          library_err (const char *fmts, ...);
 //atic void          sig_abexit (int sig);
 //atic void          sig_endpgm (int dont_care_sig);
 //atic void          sig_paused (int dont_care_sig);