patacongo commented on a change in pull request #4193:
URL: https://github.com/apache/incubator-nuttx/pull/4193#discussion_r675649527
##########
File path: include/sys/types.h
##########
@@ -175,6 +183,16 @@ typedef int wint_t;
typedef int wctype_t;
+#if defined(CONFIG_FS_LARGEFILE) && defined(CONFIG_HAVE_LONG_LONG)
+/* Large file versions */
+
+typedef uint64_t fsblkcnt_t;
+typedef uint64_t fsfilcnt_t;
+
+typedef uint64_t blkcnt_t;
+typedef int64_t off_t;
Review comment:
block counts and file counts don't have anything to do with large file
support, do they? The are related to volume size, but that is a completely
different thing from file size.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]