commit 7ab88dc66bd3dadae2ce544ef5f9022ee995a4c7
Author: albert <albert>
Date:   Mon Feb 28 02:03:36 2011 +0000

    HZ complaint is __attribute__((constructor)) issue; gen303120 603759

diff --git a/proc/sysinfo.c b/proc/sysinfo.c
index cd59534..ac344a0 100644
--- a/proc/sysinfo.c
+++ b/proc/sysinfo.c
@@ -212,6 +212,7 @@ static int check_for_privs(void){
 static void init_libproc(void) __attribute__((constructor));
 static void init_libproc(void){
   have_privs = check_for_privs();
+  init_Linux_version();
   // ought to count CPUs in /proc/stat instead of relying
   // on glibc, which foolishly tries to parse /proc/cpuinfo
   //
diff --git a/proc/version.c b/proc/version.c
index 69bae4f..79721d6 100644
--- a/proc/version.c
+++ b/proc/version.c
@@ -33,9 +33,8 @@ void display_version(void) {
 
 int linux_version_code;
 
-static void init_Linux_version(void) __attribute__((constructor));
-static void init_Linux_version(void) {
-    static struct utsname uts;
+void init_Linux_version(void) {
+    struct utsname uts;
     int x = 0, y = 0, z = 0;	/* cleared in case sscanf() < 3 */
     
     if (uname(&uts) == -1)	/* failure implies impending death */
diff --git a/proc/version.h b/proc/version.h
index 3769b84..65bf4f8 100644
--- a/proc/version.h
+++ b/proc/version.h
@@ -20,6 +20,8 @@ extern const char procps_version[];		/* global buf for suite version */
 extern int linux_version_code;		/* runtime version of LINUX_VERSION_CODE
 					   in /usr/include/linux/version.h */
 
+extern void init_Linux_version(void);
+
 /* Convenience macros for composing/decomposing version codes */
 #define LINUX_VERSION(x,y,z)   (0x10000*(x) + 0x100*(y) + z)
 #define LINUX_VERSION_MAJOR(x) (((x)>>16) & 0xFF)