⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 287844 in webkit


Ignore:
Timestamp:
Jan 10, 2022, 10:41:26 AM (5 years ago)
Author:
pvollan@apple.com
Message:

[MacCatalyst] Add syscalls from iOS sandbox
https://bugs.webkit.org/show_bug.cgi?id=234970
<rdar://problem/87262730>

Reviewed by Darin Adler.

Add syscalls from iOS sandbox that are not in the MacCatalyst sandbox, since these are potentially
still needed on MacCatalyst.

  • WebProcess/com.apple.WebProcess.sb.in:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r287829 r287844  
     12022-01-10  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [MacCatalyst] Add syscalls from iOS sandbox
     4        https://bugs.webkit.org/show_bug.cgi?id=234970
     5        <rdar://problem/87262730>
     6
     7        Reviewed by Darin Adler.
     8
     9        Add syscalls from iOS sandbox that are not in the MacCatalyst sandbox, since these are potentially
     10        still needed on MacCatalyst.
     11
     12        * WebProcess/com.apple.WebProcess.sb.in:
     13
    1142022-01-09  Sam Weinig  <weinig@apple.com>
    215
  • trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in

    r287754 r287844  
    20222022        SYS_sysctl
    20232023        SYS_unlink
    2024         SYS_write))
     2024        SYS_write
     2025#if !PLATFORM(MAC)
     2026        SYS_abort_with_payload
     2027        SYS_dup
     2028        SYS_fgetattrlist
     2029        SYS_fstat64_extended
     2030        SYS_kqueue
     2031        SYS_mkdirat
     2032        SYS_open_dprotected_np
     2033        SYS_psynch_rw_rdlock
     2034        SYS_rmdir
     2035        SYS_setrlimit
     2036        SYS_ulock_wait2
     2037#endif
     2038))
    20252039
    20262040(when (defined? 'syscall-unix)
Note: See TracChangeset for help on using the changeset viewer.