Changeset 278980 in webkit
- Timestamp:
- Jun 17, 2021, 3:50:40 AM (4 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r278973 r278980 1 2021-06-17 Per Arne <pvollan@apple.com> 2 3 [macOS] Close open connections 4 https://bugs.webkit.org/show_bug.cgi?id=227068 5 6 Reviewed by Brent Fulgham. 7 8 On macOS, close open connections in initializeSandboxParameters. 9 10 * Shared/mac/AuxiliaryProcessMac.mm: 11 (WebKit::initializeSandboxParameters): 12 1 13 2021-06-16 Garrett Davidson <garrett_davidson@apple.com> 2 14 -
trunk/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm
r278253 r278980 67 67 SOFT_LINK_SYSTEM_LIBRARY(libsystem_info) 68 68 SOFT_LINK_OPTIONAL(libsystem_info, mbr_close_connections, int, (), ()); 69 SOFT_LINK_OPTIONAL(libsystem_info, lookup_close_connections, int, (), ()); 69 70 70 71 #if ENABLE(NOTIFY_FILTERING) … … 698 699 if (mbr_close_connectionsPtr()) 699 700 mbr_close_connectionsPtr()(); 701 if (lookup_close_connectionsPtr()) 702 lookup_close_connectionsPtr()(); 700 703 } 701 704
Note:
See TracChangeset
for help on using the changeset viewer.