Title: [250698] trunk/Source/WTF
Revision
250698
Author
[email protected]
Date
2019-10-03 20:49:21 -0700 (Thu, 03 Oct 2019)

Log Message

Remove some support for < iOS 13
https://bugs.webkit.org/show_bug.cgi?id=202549
<rdar://problem/55967232>

Reviewed by Alex Christensen.

Remove some support for iOS versions less than 13.0.

Update conditionals that reference __IPHONE_OS_VERSION_MIN_REQUIRED
and __IPHONE_OS_VERSION_MAX_ALLOWED, assuming that they both have
values >= 130000. This means that expressions like
"__IPHONE_OS_VERSION_MIN_REQUIRED < 101300" are always False and
"__IPHONE_OS_VERSION_MIN_REQUIRED >= 101300" are always True.

This removal is part of a series of patches effecting the removal of
dead code for old versions of iOS. This particular pass involves
changes in which Michael Saboff was involved. These changes are
isolated from other similar changes in order to facilitate the
reviewing process.

* wtf/spi/darwin/ProcessMemoryFootprint.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (250697 => 250698)


--- trunk/Source/WTF/ChangeLog	2019-10-04 03:48:11 UTC (rev 250697)
+++ trunk/Source/WTF/ChangeLog	2019-10-04 03:49:21 UTC (rev 250698)
@@ -1,3 +1,27 @@
+2019-10-03  Keith Rollin  <[email protected]>
+
+        Remove some support for < iOS 13
+        https://bugs.webkit.org/show_bug.cgi?id=202549
+        <rdar://problem/55967232>
+
+        Reviewed by Alex Christensen.
+
+        Remove some support for iOS versions less than 13.0. 
+
+        Update conditionals that reference __IPHONE_OS_VERSION_MIN_REQUIRED
+        and __IPHONE_OS_VERSION_MAX_ALLOWED, assuming that they both have
+        values >= 130000. This means that expressions like
+        "__IPHONE_OS_VERSION_MIN_REQUIRED < 101300" are always False and
+        "__IPHONE_OS_VERSION_MIN_REQUIRED >= 101300" are always True.
+
+        This removal is part of a series of patches effecting the removal of
+        dead code for old versions of iOS. This particular pass involves
+        changes in which Michael Saboff was involved. These changes are
+        isolated from other similar changes in order to facilitate the
+        reviewing process.
+
+        * wtf/spi/darwin/ProcessMemoryFootprint.h:
+
 2019-10-03  Per Arne Vollan  <[email protected]>
 
         REGRESSION(249649): Unable to open local files in MiniBrowser on macOS

Modified: trunk/Source/WTF/wtf/spi/darwin/ProcessMemoryFootprint.h (250697 => 250698)


--- trunk/Source/WTF/wtf/spi/darwin/ProcessMemoryFootprint.h	2019-10-04 03:48:11 UTC (rev 250697)
+++ trunk/Source/WTF/wtf/spi/darwin/ProcessMemoryFootprint.h	2019-10-04 03:49:21 UTC (rev 250698)
@@ -32,7 +32,7 @@
 #    if RUSAGE_INFO_CURRENT >= 4
 #        define HAS_MAX_FOOTPRINT
 #        if defined(RLIMIT_FOOTPRINT_INTERVAL) && __has_include(<libproc_internal.h>) \
-             && ((PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 120000) \
+             && (PLATFORM(IOS_FAMILY) \
                  || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400))
 #            define HAS_RESET_FOOTPRINT_INTERVAL
 #            define MAX_FOOTPRINT_FIELD ri_interval_max_phys_footprint
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to