[compiler-rt] [profile] Implement a non-mmap path when reading profile files from a non-local filesystem (PR #131177)

Wael Yehia via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 08:44:35 PDT 2025


================
@@ -258,6 +267,120 @@ COMPILER_RT_VISIBILITY FILE *lprofOpenFileEx(const char *ProfileName) {
   return f;
 }
 
+// Return 1 (true) if the file descriptor Fd represents a file that is on a
+// local filesystem, otherwise return 0.
+COMPILER_RT_UNUSED static int is_local_filesystem(int Fd) {
----------------
w2yehia wrote:

done

https://github.com/llvm/llvm-project/pull/131177


More information about the llvm-commits mailing list