Skip to content

Commit 5fb5d89

Browse files
committed
Fix CTimeVal definition for platforms where time_t isn't CLong
One such platform is Debian unstable armhf, which is in the process of transitioning to 64-bit time_t: https://wiki.debian.org/ReleaseGoals/64bit-time On that platform (as well as any other glibc/musl platform), however, CTimeVal isn't used for anything at all because there are #ifdefs that prefer using `utimensat` which takes CTimeSpec instead. This fix is therefore quite theoretical, as it is unknown whether there are any platforms actually affected. Related: haskell#252
1 parent a64ce6d commit 5fb5d89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

System/Posix/Files/Common.hsc

+1-1
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ foreign import capi unsafe "sys/stat.h futimens"
551551
c_futimens :: CInt -> Ptr CTimeSpec -> IO CInt
552552
#endif
553553

554-
data CTimeVal = CTimeVal CLong CLong
554+
data CTimeVal = CTimeVal (#type time_t) (#type suseconds_t)
555555

556556
instance Storable CTimeVal where
557557
sizeOf _ = #size struct timeval

0 commit comments

Comments
 (0)