]> granicus.if.org Git - procps-ng/commitdiff
library: disable a potential 'ELF note' is missing msg
authorJim Warner <james.warner@comcast.net>
Wed, 16 Jul 2014 05:00:00 +0000 (00:00 -0500)
committerJaromir Capik <jcapik@redhat.com>
Thu, 17 Jul 2014 11:31:06 +0000 (13:31 +0200)
The stderr message regarding ELF notes appears on some
systems (openSUSE-13.1 for example) but I have not yet
isolated why. Since at startup we go on to determine a
Hertz value the old fashion way, this patch just turns
off the useless message until the cause is understood.

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

index e9f7da921c86cda2de04895b7b71eb9913fa191e..f6cc1628147aed2c4ad5a47b316f85f46e644181 100644 (file)
@@ -282,7 +282,7 @@ static void init_libproc(void){
   if(linux_version_code > LINUX_VERSION(2, 4, 0)){
     Hertz = find_elf_note(AT_CLKTCK);
     if(Hertz!=NOTE_NOT_FOUND) return;
-    fputs("2.4+ kernel w/o ELF notes? -- report this\n", stderr);
+//  fputs("2.4+ kernel w/o ELF notes? -- report this\n", stderr);
   }
 #endif /* __linux __ */
 #if defined(__FreeBSD_kernel__) || defined(__FreeBSD__)