summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Houchard <cognet@FreeBSD.org>2019-01-13 00:19:15 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-10-12 13:54:22 +0200
commit34d33f5258b6c5347ec2c0eee57dcef9de0720d4 (patch)
treea9e0cbd0adf3952086ac944854ad739fa9173782
parent165c8705ebfc317b38f91caf7304bc2b11efe4f1 (diff)
Instead of using an incomplete list of platforms
that uses 64bits time_t in 32bits mode, special case amd64, as i386 is the only arch that still uses 32bits time_t.
-rw-r--r--cpukit/score/src/kern_tc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/score/src/kern_tc.c b/cpukit/score/src/kern_tc.c
index d154381541..cc2b47aeb8 100644
--- a/cpukit/score/src/kern_tc.c
+++ b/cpukit/score/src/kern_tc.c
@@ -273,7 +273,8 @@ sysctl_kern_boottime(SYSCTL_HANDLER_ARGS)
getboottime(&boottime);
-#ifndef __mips__
+/* i386 is the only arch which uses a 32bits time_t */
+#ifdef __amd64__
#ifdef SCTL_MASK32
int tv[2];