From c6bd19fd85e5064096555b1da7e880c5ffa3d290 Mon Sep 17 00:00:00 2001 From: gao-rongxin Date: Thu, 30 Dec 2021 01:25:39 -0800 Subject: [PATCH] =?UTF-8?q?bugfix=EF=BC=9Amusl=20=E5=BD=93=E5=89=8Dtime=5F?= =?UTF-8?q?t=E5=AE=9A=E4=B9=89=E7=BB=9F=E4=B8=80=E9=87=87=E7=94=A8?= =?UTF-8?q?=E6=96=B0=E7=9A=8464bit=E7=89=88=E6=9C=AC=EF=BC=8CSO=5FRCVTIMEO?= =?UTF-8?q?=E4=B9=9F=E6=98=AF=E9=87=87=E7=94=A8=E6=96=B0=E7=9A=84=E5=80=BC?= =?UTF-8?q?;=20=E4=B9=8B=E5=89=8D=E6=9C=89=E4=B8=AA=E8=80=81=E7=9A=84patch?= =?UTF-8?q?=E6=8A=8A=E8=BF=99=E4=B8=AA=E5=80=BC=E4=BF=AE=E6=94=B9=E6=88=90?= =?UTF-8?q?=E4=BA=8632bit=EF=BC=8C=E5=AF=BC=E8=87=B4=E4=B8=8D=E5=8C=B9?= =?UTF-8?q?=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit time_t的定义改回老版本 Signed-off-by: gao-rongxin #I4NU92 --- porting/linux/user/include/alltypes.h.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/porting/linux/user/include/alltypes.h.in b/porting/linux/user/include/alltypes.h.in index 8903736c..d9ff462e 100644 --- a/porting/linux/user/include/alltypes.h.in +++ b/porting/linux/user/include/alltypes.h.in @@ -9,8 +9,8 @@ TYPEDEF _Addr ssize_t; TYPEDEF _Addr intptr_t; TYPEDEF _Addr regoff_t; TYPEDEF _Reg register_t; -TYPEDEF long time_t; -TYPEDEF long suseconds_t; +TYPEDEF _Int64 time_t; +TYPEDEF _Int64 suseconds_t; TYPEDEF signed char int8_t; TYPEDEF signed short int16_t; -- GitLab