@zigc/lib 0.17.0-dev.340 → 0.17.0-dev.387
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/main.js +8 -8
- package/libc/darwin/SDKSettings.json +1 -1
- package/libc/darwin/libSystem.tbd +88 -87
- package/libc/include/any-darwin-any/AvailabilityInternal.h +10 -10
- package/libc/include/any-darwin-any/AvailabilityVersions.h +8 -0
- package/libc/include/any-darwin-any/mach/host_info.h +3 -1
- package/libc/include/any-darwin-any/mach/mach_voucher_types.h +2 -0
- package/libc/include/any-darwin-any/mach/vm_statistics.h +33 -2
- package/libc/include/any-darwin-any/spawn.h +3 -1
- package/libc/include/any-darwin-any/sys/_symbol_aliasing.h +12 -0
- package/package.json +1 -1
- package/std/Target/riscv.zig +97 -0
- package/std/Target.zig +75 -40
- package/std/Thread.zig +2 -2
- package/std/array_list.zig +2 -2
- package/std/atomic.zig +2 -0
- package/std/debug/Dwarf.zig +6 -0
- package/std/debug/SelfInfo/Elf.zig +1 -0
- package/std/debug/cpu_context.zig +168 -3
- package/std/debug.zig +1 -1
- package/std/heap.zig +2 -0
- package/std/lang/assembly.zig +71 -0
- package/std/lang.zig +2 -0
- package/std/os/linux/alpha.zig +358 -0
- package/std/os/linux/arm.zig +0 -26
- package/std/os/linux/ioctl.zig +1 -0
- package/std/os/linux/syscalls.zig +502 -0
- package/std/os/linux/tls.zig +1 -1
- package/std/os/linux.zig +729 -31
- package/std/start.zig +11 -0
- package/std/zig/LibCDirs.zig +1 -0
- package/std/zig/system/linux.zig +4 -0
- package/std/zig/system/loongarch.zig +25 -9
- package/std/zig/system.zig +4 -0
- package/zig.h +24 -2
package/docs/main.js
CHANGED
|
@@ -697,7 +697,7 @@
|
|
|
697
697
|
}
|
|
698
698
|
|
|
699
699
|
function onSearchKeyDown(ev) {
|
|
700
|
-
switch (ev.
|
|
700
|
+
switch (ev.key) {
|
|
701
701
|
case "Enter":
|
|
702
702
|
if (ev.shiftKey || ev.ctrlKey || ev.altKey) return;
|
|
703
703
|
|
|
@@ -763,7 +763,7 @@
|
|
|
763
763
|
}
|
|
764
764
|
|
|
765
765
|
function onWindowKeyDown(ev) {
|
|
766
|
-
switch (ev.
|
|
766
|
+
switch (ev.key) {
|
|
767
767
|
case "Escape":
|
|
768
768
|
if (ev.shiftKey || ev.ctrlKey || ev.altKey) return;
|
|
769
769
|
if (!domHelpModal.classList.contains("hidden")) {
|
|
@@ -772,22 +772,22 @@
|
|
|
772
772
|
ev.stopPropagation();
|
|
773
773
|
}
|
|
774
774
|
break;
|
|
775
|
-
case "
|
|
776
|
-
if (ev.
|
|
775
|
+
case "s":
|
|
776
|
+
if (ev.ctrlKey || ev.altKey) return;
|
|
777
777
|
domSearch.focus();
|
|
778
778
|
domSearch.select();
|
|
779
779
|
ev.preventDefault();
|
|
780
780
|
ev.stopPropagation();
|
|
781
781
|
startAsyncSearch();
|
|
782
782
|
break;
|
|
783
|
-
case "
|
|
784
|
-
if (ev.
|
|
783
|
+
case "u":
|
|
784
|
+
if (ev.ctrlKey || ev.altKey) return;
|
|
785
785
|
ev.preventDefault();
|
|
786
786
|
ev.stopPropagation();
|
|
787
787
|
navigateToSource();
|
|
788
788
|
break;
|
|
789
|
-
case "
|
|
790
|
-
if (
|
|
789
|
+
case "?":
|
|
790
|
+
if (ev.ctrlKey || ev.altKey) return;
|
|
791
791
|
ev.preventDefault();
|
|
792
792
|
ev.stopPropagation();
|
|
793
793
|
showHelpModal();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"MinimalDisplayName":"26.
|
|
1
|
+
{"MinimalDisplayName":"26.5"}
|
|
@@ -387,7 +387,7 @@ exports:
|
|
|
387
387
|
tbd-version: 4
|
|
388
388
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
389
389
|
install-name: '/usr/lib/system/libcorecrypto.dylib'
|
|
390
|
-
current-version: 1922.
|
|
390
|
+
current-version: 1922.121.1
|
|
391
391
|
parent-umbrella:
|
|
392
392
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
393
393
|
umbrella: System
|
|
@@ -1107,7 +1107,7 @@ exports:
|
|
|
1107
1107
|
tbd-version: 4
|
|
1108
1108
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1109
1109
|
install-name: '/usr/lib/system/libquarantine.dylib'
|
|
1110
|
-
current-version: 196.
|
|
1110
|
+
current-version: 196.120.2
|
|
1111
1111
|
parent-umbrella:
|
|
1112
1112
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1113
1113
|
umbrella: System
|
|
@@ -1260,7 +1260,7 @@ exports:
|
|
|
1260
1260
|
tbd-version: 4
|
|
1261
1261
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1262
1262
|
install-name: '/usr/lib/system/libsystem_c.dylib'
|
|
1263
|
-
current-version: 1752.
|
|
1263
|
+
current-version: 1752.120.2
|
|
1264
1264
|
parent-umbrella:
|
|
1265
1265
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1266
1266
|
umbrella: System
|
|
@@ -1512,7 +1512,7 @@ exports:
|
|
|
1512
1512
|
_tre_ast_new_iter, _tre_ast_new_literal, _tre_ast_new_node,
|
|
1513
1513
|
_tre_ast_new_union, _tre_compile, _tre_fill_pmatch, _tre_free,
|
|
1514
1514
|
_tre_mem_alloc_impl, _tre_mem_destroy, _tre_mem_new_impl,
|
|
1515
|
-
_tre_parse, _tre_stack_destroy, _tre_stack_new,
|
|
1515
|
+
_tre_parse, _tre_stack_destroy, _tre_stack_new, _tre_stack_num_items,
|
|
1516
1516
|
_tre_tnfa_run_backtrack, _tre_tnfa_run_parallel, _tsearch,
|
|
1517
1517
|
_ttyname, _ttyname_r, _ttyslot, _twalk, _tzname, _tzset, _tzsetwall,
|
|
1518
1518
|
_ualarm, _ulimit, _umaskx_np, _uname, _ungetc, _ungetwc, _ungetwc_l,
|
|
@@ -1557,7 +1557,7 @@ reexports:
|
|
|
1557
1557
|
tbd-version: 4
|
|
1558
1558
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1559
1559
|
install-name: '/usr/lib/system/libsystem_collections.dylib'
|
|
1560
|
-
current-version: 1752.
|
|
1560
|
+
current-version: 1752.120.2
|
|
1561
1561
|
parent-umbrella:
|
|
1562
1562
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1563
1563
|
umbrella: System
|
|
@@ -1584,7 +1584,7 @@ exports:
|
|
|
1584
1584
|
tbd-version: 4
|
|
1585
1585
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1586
1586
|
install-name: '/usr/lib/system/libsystem_configuration.dylib'
|
|
1587
|
-
current-version: 1405.
|
|
1587
|
+
current-version: 1405.120.5
|
|
1588
1588
|
parent-umbrella:
|
|
1589
1589
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1590
1590
|
umbrella: System
|
|
@@ -1887,7 +1887,7 @@ exports:
|
|
|
1887
1887
|
tbd-version: 4
|
|
1888
1888
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1889
1889
|
install-name: '/usr/lib/system/libsystem_dnssd.dylib'
|
|
1890
|
-
current-version: 2881.
|
|
1890
|
+
current-version: 2881.120.11
|
|
1891
1891
|
parent-umbrella:
|
|
1892
1892
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1893
1893
|
umbrella: System
|
|
@@ -1922,7 +1922,7 @@ exports:
|
|
|
1922
1922
|
tbd-version: 4
|
|
1923
1923
|
targets: [ x86_64-macos, arm64e-macos ]
|
|
1924
1924
|
install-name: '/usr/lib/system/libsystem_eligibility.dylib'
|
|
1925
|
-
current-version: 319.
|
|
1925
|
+
current-version: 319.121.1
|
|
1926
1926
|
parent-umbrella:
|
|
1927
1927
|
- targets: [ x86_64-macos, arm64e-macos ]
|
|
1928
1928
|
umbrella: System
|
|
@@ -2073,7 +2073,7 @@ tbd-version: 4
|
|
|
2073
2073
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64-macos, arm64-maccatalyst,
|
|
2074
2074
|
arm64e-macos, arm64e-maccatalyst ]
|
|
2075
2075
|
install-name: '/usr/lib/system/libsystem_kernel.dylib'
|
|
2076
|
-
current-version: 12377.
|
|
2076
|
+
current-version: 12377.121.6
|
|
2077
2077
|
parent-umbrella:
|
|
2078
2078
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64-macos, arm64-maccatalyst,
|
|
2079
2079
|
arm64e-macos, arm64e-maccatalyst ]
|
|
@@ -2438,75 +2438,76 @@ exports:
|
|
|
2438
2438
|
_posix_spawnattr_getmacpolicyinfo_np, _posix_spawnattr_getpcontrol_np,
|
|
2439
2439
|
_posix_spawnattr_getpgroup, _posix_spawnattr_getprocesstype_np,
|
|
2440
2440
|
_posix_spawnattr_getsigdefault, _posix_spawnattr_getsigmask,
|
|
2441
|
-
_posix_spawnattr_init,
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
_proc_kmsgbuf, _proc_libversion,
|
|
2474
|
-
_proc_list_uptrs, _proc_listallpids,
|
|
2475
|
-
_proc_listcoalitions, _proc_listpgrppids,
|
|
2476
|
-
_proc_listpidspath, _proc_name, _proc_pid_rusage,
|
|
2477
|
-
_proc_pidfdinfo, _proc_pidfileportinfo,
|
|
2478
|
-
_proc_pidpath, _proc_pidpath_audittoken,
|
|
2479
|
-
_proc_reset_footprint_interval, _proc_resume_cpumon,
|
|
2480
|
-
_proc_set_cpumon_defaults, _proc_set_cpumon_params,
|
|
2481
|
-
_proc_set_csm, _proc_set_delayidlesleep,
|
|
2482
|
-
_proc_set_no_smt, _proc_set_owner_vmpressure,
|
|
2483
|
-
_proc_set_wakemon_params, _proc_setcpu_percentage,
|
|
2484
|
-
_proc_setthread_cpupercent, _proc_setthread_csm,
|
|
2485
|
-
_proc_signal_delegate, _proc_signal_with_audittoken,
|
|
2486
|
-
_proc_terminate, _proc_terminate_all_rsr,
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
_processor_exit, _processor_get_assignment,
|
|
2490
|
-
_processor_set_create, _processor_set_default,
|
|
2491
|
-
_processor_set_info, _processor_set_max_priority,
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
'_pselect$NOCANCEL',
|
|
2497
|
-
_ptrace, _pwrite, '_pwrite$NOCANCEL',
|
|
2498
|
-
_quota, _quotactl, _read, '_read$NOCANCEL',
|
|
2499
|
-
_readv, '_readv$NOCANCEL', _reboot,
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
_rmdir, _searchfs, _select, '_select$DARWIN_EXTSN',
|
|
2504
|
-
'_select$NOCANCEL',
|
|
2505
|
-
|
|
2506
|
-
_sem_wait, '_sem_wait$NOCANCEL',
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2441
|
+
_posix_spawnattr_init, _posix_spawnattr_set_4k_page_size_np,
|
|
2442
|
+
_posix_spawnattr_set_alt_rosetta_np, _posix_spawnattr_set_conclave_id_np,
|
|
2443
|
+
_posix_spawnattr_set_conclavememlimit_ext, _posix_spawnattr_set_crash_behavior_deadline_np,
|
|
2444
|
+
_posix_spawnattr_set_crash_behavior_np, _posix_spawnattr_set_crash_count_np,
|
|
2445
|
+
_posix_spawnattr_set_csm_np, _posix_spawnattr_set_darwin_role_np,
|
|
2446
|
+
_posix_spawnattr_set_filedesclimit_ext, _posix_spawnattr_set_gid_np,
|
|
2447
|
+
_posix_spawnattr_set_groups_np, _posix_spawnattr_set_importancewatch_port_np,
|
|
2448
|
+
_posix_spawnattr_set_jetsam_ttr_np, _posix_spawnattr_set_kqworklooplimit_ext,
|
|
2449
|
+
_posix_spawnattr_set_launch_type_np, _posix_spawnattr_set_login_np,
|
|
2450
|
+
_posix_spawnattr_set_max_addr_np, _posix_spawnattr_set_persona_gid_np,
|
|
2451
|
+
_posix_spawnattr_set_persona_groups_np, _posix_spawnattr_set_persona_np,
|
|
2452
|
+
_posix_spawnattr_set_persona_uid_np, _posix_spawnattr_set_platform_np,
|
|
2453
|
+
_posix_spawnattr_set_portlimits_ext, _posix_spawnattr_set_ptrauth_task_port_np,
|
|
2454
|
+
_posix_spawnattr_set_qos_clamp_np, _posix_spawnattr_set_registered_ports_np,
|
|
2455
|
+
_posix_spawnattr_set_subsystem_root_path_np, _posix_spawnattr_set_telemetry_np,
|
|
2456
|
+
_posix_spawnattr_set_threadlimit_ext, _posix_spawnattr_set_uid_np,
|
|
2457
|
+
_posix_spawnattr_set_use_sec_transition_shims_np, _posix_spawnattr_setarchpref_np,
|
|
2458
|
+
_posix_spawnattr_setauditsessionport_np, _posix_spawnattr_setbinpref_np,
|
|
2459
|
+
_posix_spawnattr_setcoalition_np, _posix_spawnattr_setcpumonitor,
|
|
2460
|
+
_posix_spawnattr_setcpumonitor_default, _posix_spawnattr_setdataless_iopolicy_np,
|
|
2461
|
+
_posix_spawnattr_setexceptionports_np, _posix_spawnattr_setflags,
|
|
2462
|
+
_posix_spawnattr_setjetsam_ext, _posix_spawnattr_setmacpolicyinfo_np,
|
|
2463
|
+
_posix_spawnattr_setnosmt_np, _posix_spawnattr_setpcontrol_np,
|
|
2464
|
+
_posix_spawnattr_setpgroup, _posix_spawnattr_setprocesstype_np,
|
|
2465
|
+
_posix_spawnattr_setsigdefault, _posix_spawnattr_setsigmask,
|
|
2466
|
+
_posix_spawnattr_setspecialport_np, _pread, '_pread$NOCANCEL',
|
|
2467
|
+
_preadv, '_preadv$NOCANCEL', _proc_clear_cpulimits, _proc_clear_delayidlesleep,
|
|
2468
|
+
_proc_clear_dirty, _proc_clear_vmpressure, _proc_current_thread_schedinfo,
|
|
2469
|
+
_proc_denap_assertion_begin_with_msg, _proc_denap_assertion_complete,
|
|
2470
|
+
_proc_disable_apptype, _proc_disable_cpumon, _proc_disable_wakemon,
|
|
2471
|
+
_proc_donate_importance_boost, _proc_enable_apptype, _proc_get_cpumon_params,
|
|
2472
|
+
_proc_get_dirty, _proc_get_wakemon_params, _proc_importance_assertion_begin_with_msg,
|
|
2473
|
+
_proc_importance_assertion_complete, _proc_kmsgbuf, _proc_libversion,
|
|
2474
|
+
_proc_list_dynkqueueids, _proc_list_uptrs, _proc_listallpids,
|
|
2475
|
+
_proc_listchildpids, _proc_listcoalitions, _proc_listpgrppids,
|
|
2476
|
+
_proc_listpids, _proc_listpidspath, _proc_name, _proc_pid_rusage,
|
|
2477
|
+
_proc_piddynkqueueinfo, _proc_pidfdinfo, _proc_pidfileportinfo,
|
|
2478
|
+
_proc_pidinfo, _proc_pidoriginatorinfo, _proc_pidpath, _proc_pidpath_audittoken,
|
|
2479
|
+
_proc_regionfilename, _proc_reset_footprint_interval, _proc_resume_cpumon,
|
|
2480
|
+
_proc_rlimit_control, _proc_set_cpumon_defaults, _proc_set_cpumon_params,
|
|
2481
|
+
_proc_set_cpumon_params_fatal, _proc_set_csm, _proc_set_delayidlesleep,
|
|
2482
|
+
_proc_set_dirty, _proc_set_no_smt, _proc_set_owner_vmpressure,
|
|
2483
|
+
_proc_set_wakemon_defaults, _proc_set_wakemon_params, _proc_setcpu_percentage,
|
|
2484
|
+
_proc_setpcontrol, _proc_setthread_cpupercent, _proc_setthread_csm,
|
|
2485
|
+
_proc_setthread_no_smt, _proc_signal_delegate, _proc_signal_with_audittoken,
|
|
2486
|
+
_proc_suppress, _proc_terminate, _proc_terminate_all_rsr,
|
|
2487
|
+
_proc_terminate_delegate, _proc_terminate_with_audittoken,
|
|
2488
|
+
_proc_trace_log, _proc_track_dirty, _proc_udata_info, _proc_uuid_policy,
|
|
2489
|
+
_processor_assign, _processor_control, _processor_exit, _processor_get_assignment,
|
|
2490
|
+
_processor_info, _processor_set_create, _processor_set_default,
|
|
2491
|
+
_processor_set_destroy, _processor_set_info, _processor_set_max_priority,
|
|
2492
|
+
_processor_set_policy_control, _processor_set_policy_disable,
|
|
2493
|
+
_processor_set_policy_enable, _processor_set_stack_usage,
|
|
2494
|
+
_processor_set_statistics, _processor_set_tasks, _processor_set_tasks_with_flavor,
|
|
2495
|
+
_processor_set_threads, _processor_start, _pselect, '_pselect$DARWIN_EXTSN',
|
|
2496
|
+
'_pselect$DARWIN_EXTSN$NOCANCEL', '_pselect$NOCANCEL', _pthread_getugid_np,
|
|
2497
|
+
_pthread_setugid_np, _ptrace, _pwrite, '_pwrite$NOCANCEL',
|
|
2498
|
+
_pwritev, '_pwritev$NOCANCEL', _quota, _quotactl, _read, '_read$NOCANCEL',
|
|
2499
|
+
_readlink, _readlinkat, _readv, '_readv$NOCANCEL', _reboot,
|
|
2500
|
+
_reboot_np, _record_system_event_as_kernel, _recvfrom, '_recvfrom$NOCANCEL',
|
|
2501
|
+
_recvmsg, '_recvmsg$NOCANCEL', _recvmsg_x, _register_uexc_handler,
|
|
2502
|
+
_removexattr, _rename, _rename_ext, _renameat, _renameatx_np,
|
|
2503
|
+
_renamex_np, _revoke, _rmdir, _searchfs, _select, '_select$DARWIN_EXTSN',
|
|
2504
|
+
'_select$DARWIN_EXTSN$NOCANCEL', '_select$NOCANCEL', _sem_close,
|
|
2505
|
+
_sem_destroy, _sem_getvalue, _sem_init, _sem_open, _sem_post,
|
|
2506
|
+
_sem_trywait, _sem_unlink, _sem_wait, '_sem_wait$NOCANCEL',
|
|
2507
|
+
_semaphore_create, _semaphore_destroy, _semaphore_signal,
|
|
2508
|
+
_semaphore_signal_all, _semaphore_signal_all_trap, _semaphore_signal_thread,
|
|
2509
|
+
_semaphore_signal_thread_trap, _semaphore_signal_trap, _semaphore_timedwait,
|
|
2510
|
+
_semaphore_timedwait_signal, _semaphore_timedwait_signal_trap,
|
|
2510
2511
|
_semaphore_timedwait_trap, _semaphore_wait, _semaphore_wait_signal,
|
|
2511
2512
|
_semaphore_wait_signal_trap, _semaphore_wait_trap, _semctl,
|
|
2512
2513
|
_semget, _semop, _semsys, _sendfile, _sendmsg, '_sendmsg$NOCANCEL',
|
|
@@ -2591,8 +2592,8 @@ exports:
|
|
|
2591
2592
|
- targets: [ arm64-macos, arm64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2592
2593
|
symbols: [ ___fstat, ___fstatat, ___fstatfs, ___getfsstat, ___lstat,
|
|
2593
2594
|
___stat, ___statfs, __current_pid, _mach_absolute_time_kernel,
|
|
2594
|
-
_mach_continuous_time_kernel,
|
|
2595
|
-
_update_tpidr ]
|
|
2595
|
+
_mach_continuous_time_kernel, _os_custom_x18_abi_enabled,
|
|
2596
|
+
_os_set_custom_x18_abi_enabled, _update_tpidr ]
|
|
2596
2597
|
--- !tapi-tbd
|
|
2597
2598
|
tbd-version: 4
|
|
2598
2599
|
targets: [ x86_64-macos, x86_64-maccatalyst, x86_64h-macos, x86_64h-maccatalyst,
|
|
@@ -2928,8 +2929,8 @@ exports:
|
|
|
2928
2929
|
_ne_session_policy_copy_flow_divert_token, _ne_session_policy_copy_flow_divert_token_with_key,
|
|
2929
2930
|
_ne_session_policy_match_get_service, _ne_session_policy_match_get_service_action,
|
|
2930
2931
|
_ne_session_policy_match_get_service_type, _ne_session_relay_configs_present,
|
|
2931
|
-
_ne_session_release,
|
|
2932
|
-
_ne_session_send_barrier, _ne_session_service_copy_cached_match_domains,
|
|
2932
|
+
_ne_session_release, _ne_session_requires_flow_divert, _ne_session_reset_cache,
|
|
2933
|
+
_ne_session_retain, _ne_session_send_barrier, _ne_session_service_copy_cached_match_domains,
|
|
2933
2934
|
_ne_session_service_get_dns_service_id, _ne_session_service_get_dns_service_id_for_interface,
|
|
2934
2935
|
_ne_session_service_matches_address, _ne_session_service_matches_address_for_interface,
|
|
2935
2936
|
_ne_session_set_device_communication_exception, _ne_session_set_event_handler,
|
|
@@ -2960,7 +2961,7 @@ exports:
|
|
|
2960
2961
|
tbd-version: 4
|
|
2961
2962
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2962
2963
|
install-name: '/usr/lib/system/libsystem_notify.dylib'
|
|
2963
|
-
current-version: 348.
|
|
2964
|
+
current-version: 348.120.4
|
|
2964
2965
|
parent-umbrella:
|
|
2965
2966
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2966
2967
|
umbrella: System
|
|
@@ -2978,7 +2979,7 @@ tbd-version: 4
|
|
|
2978
2979
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64-macos, arm64-maccatalyst,
|
|
2979
2980
|
arm64e-macos, arm64e-maccatalyst ]
|
|
2980
2981
|
install-name: '/usr/lib/system/libsystem_platform.dylib'
|
|
2981
|
-
current-version: 375.
|
|
2982
|
+
current-version: 375.120.2
|
|
2982
2983
|
parent-umbrella:
|
|
2983
2984
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64-macos, arm64-maccatalyst,
|
|
2984
2985
|
arm64e-macos, arm64e-maccatalyst ]
|
|
@@ -3153,7 +3154,7 @@ exports:
|
|
|
3153
3154
|
tbd-version: 4
|
|
3154
3155
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3155
3156
|
install-name: '/usr/lib/system/libsystem_sandbox.dylib'
|
|
3156
|
-
current-version: 2680.
|
|
3157
|
+
current-version: 2680.120.12
|
|
3157
3158
|
parent-umbrella:
|
|
3158
3159
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3159
3160
|
umbrella: System
|
|
@@ -3300,7 +3301,7 @@ exports:
|
|
|
3300
3301
|
tbd-version: 4
|
|
3301
3302
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3302
3303
|
install-name: '/usr/lib/system/libsystem_trace.dylib'
|
|
3303
|
-
current-version: 1861.
|
|
3304
|
+
current-version: 1861.120.4
|
|
3304
3305
|
parent-umbrella:
|
|
3305
3306
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3306
3307
|
umbrella: System
|
|
@@ -3422,7 +3423,7 @@ exports:
|
|
|
3422
3423
|
tbd-version: 4
|
|
3423
3424
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3424
3425
|
install-name: '/usr/lib/system/libxpc.dylib'
|
|
3425
|
-
current-version: 3102.
|
|
3426
|
+
current-version: 3102.120.13
|
|
3426
3427
|
parent-umbrella:
|
|
3427
3428
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3428
3429
|
umbrella: System
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
#if __has_builtin(__is_target_os)
|
|
38
38
|
#if __is_target_os(macos)
|
|
39
39
|
#define __MAC_OS_X_VERSION_MIN_REQUIRED __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__
|
|
40
|
-
#define __MAC_OS_X_VERSION_MAX_ALLOWED
|
|
40
|
+
#define __MAC_OS_X_VERSION_MAX_ALLOWED __MAC_26_5
|
|
41
41
|
#endif
|
|
42
42
|
#elif __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__
|
|
43
43
|
#define __MAC_OS_X_VERSION_MIN_REQUIRED __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__
|
|
44
|
-
#define __MAC_OS_X_VERSION_MAX_ALLOWED
|
|
44
|
+
#define __MAC_OS_X_VERSION_MAX_ALLOWED __MAC_26_5
|
|
45
45
|
#endif /* __has_builtin(__is_target_os) */
|
|
46
46
|
#endif /* defined(__has_builtin) */
|
|
47
47
|
#endif /* __MAC_OS_X_VERSION_MIN_REQUIRED */
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
#if __has_builtin(__is_target_os)
|
|
52
52
|
#if __is_target_os(ios)
|
|
53
53
|
#define __IPHONE_OS_VERSION_MIN_REQUIRED __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__
|
|
54
|
-
#define __IPHONE_OS_VERSION_MAX_ALLOWED
|
|
54
|
+
#define __IPHONE_OS_VERSION_MAX_ALLOWED __IPHONE_26_5
|
|
55
55
|
#endif
|
|
56
56
|
#elif __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__
|
|
57
57
|
#define __IPHONE_OS_VERSION_MIN_REQUIRED __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__
|
|
58
|
-
#define __IPHONE_OS_VERSION_MAX_ALLOWED
|
|
58
|
+
#define __IPHONE_OS_VERSION_MAX_ALLOWED __IPHONE_26_5
|
|
59
59
|
#endif /* __has_builtin(__is_target_os) */
|
|
60
60
|
#endif /* defined(__has_builtin) */
|
|
61
61
|
#endif /* __IPHONE_OS_VERSION_MIN_REQUIRED */
|
|
@@ -65,13 +65,13 @@
|
|
|
65
65
|
#if __has_builtin(__is_target_os)
|
|
66
66
|
#if __is_target_os(watchos)
|
|
67
67
|
#define __WATCH_OS_VERSION_MIN_REQUIRED __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__
|
|
68
|
-
#define __WATCH_OS_VERSION_MAX_ALLOWED
|
|
68
|
+
#define __WATCH_OS_VERSION_MAX_ALLOWED __WATCHOS_26_5
|
|
69
69
|
/* for compatibility with existing code. New code should use platform specific checks */
|
|
70
70
|
#define __IPHONE_OS_VERSION_MIN_REQUIRED __IPHONE_9_0
|
|
71
71
|
#endif
|
|
72
72
|
#elif __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__
|
|
73
73
|
#define __WATCH_OS_VERSION_MIN_REQUIRED __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__
|
|
74
|
-
#define __WATCH_OS_VERSION_MAX_ALLOWED
|
|
74
|
+
#define __WATCH_OS_VERSION_MAX_ALLOWED __WATCHOS_26_5
|
|
75
75
|
/* for compatibility with existing code. New code should use platform specific checks */
|
|
76
76
|
#define __IPHONE_OS_VERSION_MIN_REQUIRED __IPHONE_9_0
|
|
77
77
|
#endif /* __has_builtin(__is_target_os) */
|
|
@@ -83,13 +83,13 @@
|
|
|
83
83
|
#if __has_builtin(__is_target_os)
|
|
84
84
|
#if __is_target_os(tvos)
|
|
85
85
|
#define __TV_OS_VERSION_MIN_REQUIRED __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__
|
|
86
|
-
#define __TV_OS_VERSION_MAX_ALLOWED
|
|
86
|
+
#define __TV_OS_VERSION_MAX_ALLOWED __TVOS_26_5
|
|
87
87
|
/* for compatibility with existing code. New code should use platform specific checks */
|
|
88
88
|
#define __IPHONE_OS_VERSION_MIN_REQUIRED __IPHONE_9_0
|
|
89
89
|
#endif
|
|
90
90
|
#elif __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__
|
|
91
91
|
#define __TV_OS_VERSION_MIN_REQUIRED __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__
|
|
92
|
-
#define __TV_OS_VERSION_MAX_ALLOWED
|
|
92
|
+
#define __TV_OS_VERSION_MAX_ALLOWED __TVOS_26_5
|
|
93
93
|
/* for compatibility with existing code. New code should use platform specific checks */
|
|
94
94
|
#define __IPHONE_OS_VERSION_MIN_REQUIRED __IPHONE_9_0
|
|
95
95
|
#endif /* __has_builtin(__is_target_os) */
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
#if __has_builtin(__is_target_os)
|
|
104
104
|
#if __is_target_os(driverkit)
|
|
105
105
|
#define __DRIVERKIT_VERSION_MIN_REQUIRED __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__
|
|
106
|
-
#define __DRIVERKIT_VERSION_MAX_ALLOWED
|
|
106
|
+
#define __DRIVERKIT_VERSION_MAX_ALLOWED __DRIVERKIT_25_5
|
|
107
107
|
#endif
|
|
108
108
|
#endif /* __has_builtin(__is_target_os) */
|
|
109
109
|
#endif /* defined(__has_builtin) */
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
#if __has_builtin(__is_target_os)
|
|
115
115
|
#if __is_target_os(visionos)
|
|
116
116
|
#define __VISION_OS_VERSION_MIN_REQUIRED __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__
|
|
117
|
-
#define __VISION_OS_VERSION_MAX_ALLOWED
|
|
117
|
+
#define __VISION_OS_VERSION_MAX_ALLOWED __VISIONOS_26_5
|
|
118
118
|
/* for compatibility with existing code. New code should use platform specific checks */
|
|
119
119
|
#define __IPHONE_OS_VERSION_MIN_REQUIRED __IPHONE_17_1
|
|
120
120
|
#endif
|
|
@@ -101,6 +101,7 @@
|
|
|
101
101
|
#define __MAC_26_2 260200
|
|
102
102
|
#define __MAC_26_3 260300
|
|
103
103
|
#define __MAC_26_4 260400
|
|
104
|
+
#define __MAC_26_5 260500
|
|
104
105
|
/* __MAC__NA is not defined to a value but is used as a token by macros to indicate that the API is unavailable */
|
|
105
106
|
|
|
106
107
|
#define __IPHONE_2_0 20000
|
|
@@ -196,6 +197,7 @@
|
|
|
196
197
|
#define __IPHONE_26_2 260200
|
|
197
198
|
#define __IPHONE_26_3 260300
|
|
198
199
|
#define __IPHONE_26_4 260400
|
|
200
|
+
#define __IPHONE_26_5 260500
|
|
199
201
|
/* __IPHONE__NA is not defined to a value but is used as a token by macros to indicate that the API is unavailable */
|
|
200
202
|
|
|
201
203
|
#define __WATCHOS_1_0 10000
|
|
@@ -260,6 +262,7 @@
|
|
|
260
262
|
#define __WATCHOS_26_2 260200
|
|
261
263
|
#define __WATCHOS_26_3 260300
|
|
262
264
|
#define __WATCHOS_26_4 260400
|
|
265
|
+
#define __WATCHOS_26_5 260500
|
|
263
266
|
/* __WATCHOS__NA is not defined to a value but is used as a token by macros to indicate that the API is unavailable */
|
|
264
267
|
|
|
265
268
|
#define __TVOS_9_0 90000
|
|
@@ -324,6 +327,7 @@
|
|
|
324
327
|
#define __TVOS_26_2 260200
|
|
325
328
|
#define __TVOS_26_3 260300
|
|
326
329
|
#define __TVOS_26_4 260400
|
|
330
|
+
#define __TVOS_26_5 260500
|
|
327
331
|
/* __TVOS__NA is not defined to a value but is used as a token by macros to indicate that the API is unavailable */
|
|
328
332
|
|
|
329
333
|
#define __BRIDGEOS_2_0 20000
|
|
@@ -365,6 +369,7 @@
|
|
|
365
369
|
#define __BRIDGEOS_10_2 100200
|
|
366
370
|
#define __BRIDGEOS_10_3 100300
|
|
367
371
|
#define __BRIDGEOS_10_4 100400
|
|
372
|
+
#define __BRIDGEOS_26_5 260500
|
|
368
373
|
|
|
369
374
|
|
|
370
375
|
#define __DRIVERKIT_19_0 190000
|
|
@@ -393,6 +398,7 @@
|
|
|
393
398
|
#define __DRIVERKIT_25_2 250200
|
|
394
399
|
#define __DRIVERKIT_25_3 250300
|
|
395
400
|
#define __DRIVERKIT_25_4 250400
|
|
401
|
+
#define __DRIVERKIT_25_5 250500
|
|
396
402
|
/* __DRIVERKIT__NA is not defined to a value but is used as a token by macros to indicate that the API is unavailable */
|
|
397
403
|
|
|
398
404
|
#define __VISIONOS_1_0 10000
|
|
@@ -412,6 +418,7 @@
|
|
|
412
418
|
#define __VISIONOS_26_2 260200
|
|
413
419
|
#define __VISIONOS_26_3 260300
|
|
414
420
|
#define __VISIONOS_26_4 260400
|
|
421
|
+
#define __VISIONOS_26_5 260500
|
|
415
422
|
/* __VISIONOS__NA is not defined to a value but is used as a token by macros to indicate that the API is unavailable */
|
|
416
423
|
|
|
417
424
|
|
|
@@ -506,6 +513,7 @@
|
|
|
506
513
|
#define MAC_OS_VERSION_26_2 __MAC_26_2
|
|
507
514
|
#define MAC_OS_VERSION_26_3 __MAC_26_3
|
|
508
515
|
#define MAC_OS_VERSION_26_4 __MAC_26_4
|
|
516
|
+
#define MAC_OS_VERSION_26_5 __MAC_26_5
|
|
509
517
|
|
|
510
518
|
#endif /* #if (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || defined(_DARWIN_C_SOURCE) */
|
|
511
519
|
|
|
@@ -207,7 +207,9 @@ typedef struct vm_purgeable_info *host_purgable_info_t;
|
|
|
207
207
|
|
|
208
208
|
/* size of the latest version of the structure */
|
|
209
209
|
#define HOST_VM_INFO64_LATEST_COUNT HOST_VM_INFO64_COUNT
|
|
210
|
-
#define
|
|
210
|
+
#define HOST_VM_INFO64_REV3_COUNT HOST_VM_INFO64_COUNT
|
|
211
|
+
#define HOST_VM_INFO64_REV2_COUNT ((mach_msg_type_number_t) \
|
|
212
|
+
(offsetof(vm_statistics64_data_t, total_tag_storage_pages) / sizeof(integer_t)))
|
|
211
213
|
#define HOST_VM_INFO64_REV1_COUNT ((mach_msg_type_number_t) \
|
|
212
214
|
(offsetof(vm_statistics64_data_t, swapped_count) / sizeof(integer_t)))
|
|
213
215
|
/* previous versions: adjust the size according to what was added each time */
|
|
@@ -97,6 +97,8 @@ typedef mach_voucher_attr_key_t *mach_voucher_attr_key_array_t;
|
|
|
97
97
|
#define MACH_VOUCHER_ATTR_KEY_PTHPRIORITY ((mach_voucher_attr_key_t)4)
|
|
98
98
|
#define MACH_VOUCHER_ATTR_KEY_USER_DATA ((mach_voucher_attr_key_t)7)
|
|
99
99
|
#define MACH_VOUCHER_ATTR_KEY_BITS MACH_VOUCHER_ATTR_KEY_USER_DATA
|
|
100
|
+
|
|
101
|
+
/* not used, for compatibility only */
|
|
100
102
|
#define MACH_VOUCHER_ATTR_KEY_TEST ((mach_voucher_attr_key_t)8)
|
|
101
103
|
|
|
102
104
|
/* not used, for compatibility only */
|
|
@@ -174,13 +174,44 @@ struct vm_statistics64 {
|
|
|
174
174
|
uint64_t total_uncompressed_pages_in_compressor; /* # of pages (uncompressed) held within the compressor. */
|
|
175
175
|
/* added for rev2 */
|
|
176
176
|
uint64_t swapped_count; /* # of compressor-stored pages currently stored in swap */
|
|
177
|
+
/* Added in rev3 */
|
|
178
|
+
/* The total number of physical pages in the tag storage region */
|
|
179
|
+
uint64_t total_tag_storage_pages;
|
|
180
|
+
/*
|
|
181
|
+
* The number of tag storage pages which hold non-tag data and are pageable
|
|
182
|
+
*/
|
|
183
|
+
uint64_t nontag_pageable_tag_storage_pages;
|
|
184
|
+
/* The number of tag storage pages which hold non-tag data and are wired */
|
|
185
|
+
uint64_t nontag_wired_tag_storage_pages;
|
|
186
|
+
/*
|
|
187
|
+
* The number of tag storage pages which are being used for neither tags nor
|
|
188
|
+
* regular memory
|
|
189
|
+
*/
|
|
190
|
+
uint64_t free_tag_storage_pages;
|
|
191
|
+
/* The number of tag storage pages which currently hold tags */
|
|
192
|
+
uint64_t tag_storing_tag_storage_pages;
|
|
193
|
+
|
|
194
|
+
/* The total number of virtual pages which are tagged */
|
|
195
|
+
uint64_t total_tagged_pages;
|
|
196
|
+
/* The number of resident, physical pages which are tagged */
|
|
197
|
+
uint64_t resident_tagged_pages;
|
|
198
|
+
/*
|
|
199
|
+
* The outstanding number of virtual tagged pages whose contents reside in the
|
|
200
|
+
* compressor
|
|
201
|
+
*/
|
|
202
|
+
uint64_t compressed_tagged_pages;
|
|
203
|
+
|
|
204
|
+
/* The number of tagged pages which have been compressed since boot */
|
|
205
|
+
uint64_t tagged_compressions;
|
|
206
|
+
/* The number of tagged pages which have been decompressed since boot */
|
|
207
|
+
uint64_t tagged_decompressions;
|
|
208
|
+
/* The current number of bytes consumed by compressed tag storage data */
|
|
209
|
+
uint64_t compressed_tag_storage_bytes;
|
|
177
210
|
} __attribute__((aligned(8)));
|
|
178
211
|
|
|
179
212
|
typedef struct vm_statistics64 *vm_statistics64_t;
|
|
180
213
|
typedef struct vm_statistics64 vm_statistics64_data_t;
|
|
181
214
|
|
|
182
|
-
kern_return_t vm_stats(void *info, unsigned int *count);
|
|
183
|
-
|
|
184
215
|
/*
|
|
185
216
|
* VM_STATISTICS_TRUNCATE_TO_32_BIT
|
|
186
217
|
*
|
|
@@ -160,7 +160,9 @@ int posix_spawnattr_setexceptionports_np(posix_spawnattr_t * __restrict,
|
|
|
160
160
|
int posix_spawnattr_setspecialport_np(posix_spawnattr_t * __restrict,
|
|
161
161
|
mach_port_t, int) __API_AVAILABLE(macos(10.5), ios(2.0)) __API_UNAVAILABLE(watchos, tvos);
|
|
162
162
|
|
|
163
|
-
int posix_spawnattr_setnosmt_np(const posix_spawnattr_t * __restrict
|
|
163
|
+
int posix_spawnattr_setnosmt_np(const posix_spawnattr_t * __restrict) __API_AVAILABLE(macos(11.0));
|
|
164
|
+
|
|
165
|
+
int posix_spawnattr_set_4k_page_size_np(const posix_spawnattr_t * __restrict) __API_AVAILABLE(macos(26.0));
|
|
164
166
|
|
|
165
167
|
/*
|
|
166
168
|
* Set CPU Security Mitigation on the spawned process
|
|
@@ -587,6 +587,12 @@
|
|
|
587
587
|
#define __DARWIN_ALIAS_STARTING_IPHONE___IPHONE_26_4(x)
|
|
588
588
|
#endif
|
|
589
589
|
|
|
590
|
+
#if defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ >= 260500
|
|
591
|
+
#define __DARWIN_ALIAS_STARTING_IPHONE___IPHONE_26_5(x) x
|
|
592
|
+
#else
|
|
593
|
+
#define __DARWIN_ALIAS_STARTING_IPHONE___IPHONE_26_5(x)
|
|
594
|
+
#endif
|
|
595
|
+
|
|
590
596
|
#if defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1000
|
|
591
597
|
#define __DARWIN_ALIAS_STARTING_MAC___MAC_10_0(x) x
|
|
592
598
|
#else
|
|
@@ -1049,3 +1055,9 @@
|
|
|
1049
1055
|
#define __DARWIN_ALIAS_STARTING_MAC___MAC_26_4(x)
|
|
1050
1056
|
#endif
|
|
1051
1057
|
|
|
1058
|
+
#if defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 260500
|
|
1059
|
+
#define __DARWIN_ALIAS_STARTING_MAC___MAC_26_5(x) x
|
|
1060
|
+
#else
|
|
1061
|
+
#define __DARWIN_ALIAS_STARTING_MAC___MAC_26_5(x)
|
|
1062
|
+
#endif
|
|
1063
|
+
|