We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3db29c4 commit 58076dbCopy full SHA for 58076db
src/java.base/unix/native/libnio/fs/UnixNativeDispatcher.c
@@ -152,10 +152,9 @@ static futimesat_func* my_futimesat_func = NULL;
152
static fdopendir_func* my_fdopendir_func = NULL;
153
154
/**
155
- * fstatat missing from glibc on Linux. Temporary workaround
156
- * for x86/x64.
+ * fstatat missing from glibc on Linux.
157
*/
158
-#if defined(__linux__) && defined(__i386)
+#if defined(__linux__) && (defined(__i386) || defined(__arm__))
159
#define FSTATAT64_SYSCALL_AVAILABLE
160
static int fstatat64_wrapper(int dfd, const char *path,
161
struct stat64 *statbuf, int flag)
0 commit comments