]> granicus.if.org Git - procps-ng/commitdiff
library: abandon long/long long distinction with KLONG
authorJim Warner <james.warner@comcast.net>
Wed, 9 Sep 2015 05:00:00 +0000 (00:00 -0500)
committerCraig Small <csmall@enc.com.au>
Mon, 21 Sep 2015 12:37:02 +0000 (22:37 +1000)
With this patch the distinction between a 'long' KLONG
and a 'long long' KLONG is being abandoned in favor of
a consistent declaration as 'long' only. Plus we would
have also defined it as 'unsigned' except there exists
much code already explicitly specifying the qualifier.

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

index f1e3557530d741ab3aabb35b864142f68add0517..7ee2cdf306feffec1e4d88ab9a71bcfb2e750a8a 100644 (file)
@@ -3,37 +3,9 @@
 
 #include <features.h>
 
-// Some ports make the mistake of running a 32-bit userspace
-// on a 64-bit kernel. Shame on them. It's not at all OK to
-// make everything "long long", since that causes unneeded
-// slowness on 32-bit hardware.
-//
-// SPARC: The 32-bit kernel was looking like an ex-penguin,
-// but it lives! ("I'm not dead yet.") So, 64-bit users will
-// just have to compile for 64-bit. Aw, the suffering.
-//
-// MIPS: Used 32-bit for embedded systems and obsolete hardware.
-// The 64-bit systems use an n32 format executable, defining
-// _ABIN32 to indicate this. Since n32 doesn't currently run on
-// any 32-bit system, nobody get hurt if it's bloated. Not that
-// this is sane of course, but it won't hurt the 32-bit users.
-// __mips_eabi means eabi, which comes in both sizes, but isn't used.
-//
-// PowerPC: Big ugly problem! 32-bit Macs are still popular. :-/
-//
-// x86-64: So far, nobody has been dumb enough to go 32-bit.
-//
-// Unknown: PA-RISC and zSeries
-//
-#if defined(k64test) || (defined(_ABIN32) && _MIPS_SIM == _ABIN32)
-#define KLONG long long    // not typedef; want "unsigned KLONG" to work
-#define KLF "ll"
-#define STRTOUKL strtoull
-#else
 #define KLONG long
 #define KLF "l"
 #define STRTOUKL strtoul
-#endif
 
 // since gcc-2.5
 #define NORETURN __attribute__((__noreturn__))