File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
compiler-rt/lib/sanitizer_common Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 8383# endif
8484
8585# if SANITIZER_ANDROID && __ANDROID_API__ < 35
86- // The weak strerrorname_np definition allows to check for the API level at
87- // runtime.
86+ // The weak ` strerrorname_np` (introduced in API level 35) definition,
87+ // allows for checking the API level at runtime.
8888extern " C" SANITIZER_WEAK_ATTRIBUTE const char *strerrorname_np (int );
8989# endif
9090
@@ -1221,8 +1221,8 @@ uptr GetPageSize() {
12211221 return (uptr)pz;
12221222# elif SANITIZER_USE_GETAUXVAL
12231223# if SANITIZER_ANDROID && __ANDROID_API__ < 35
1224- // The 16 KB page size was introduced in Android 15, while earlier versions
1225- // of Android used a 4 KB page size.
1224+ // The 16 KB page size was introduced in Android 15 (API level 35), while
1225+ // earlier versions of Android always used a 4 KB page size.
12261226 if (!strerrorname_np)
12271227 return 4096 ;
12281228# endif
You can’t perform that action at this time.
0 commit comments