@zigc/lib 0.16.0-dev.3013 → 0.16.0-dev.3039
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/README.md +1 -5
- package/compiler/build_runner.zig +10 -5
- package/libc/darwin/SDKSettings.json +1 -1
- package/libc/darwin/libSystem.tbd +357 -427
- package/libc/freebsd/lib/csu/aarch64/crt.h +1 -0
- package/libc/freebsd/lib/csu/aarch64/crt1_c.c +33 -0
- package/libc/freebsd/lib/csu/aarch64/crt1_s.S +68 -0
- package/libc/freebsd/lib/csu/amd64/crt.h +30 -0
- package/libc/freebsd/lib/csu/amd64/crt1_c.c +30 -0
- package/libc/freebsd/lib/csu/amd64/crt1_s.S +86 -0
- package/libc/freebsd/lib/csu/arm/crt.h +1 -0
- package/libc/freebsd/lib/csu/arm/crt1_c.c +79 -0
- package/libc/freebsd/lib/csu/arm/crt1_s.S +77 -0
- package/libc/freebsd/lib/csu/common/crtbegin.c +54 -0
- package/libc/freebsd/lib/csu/common/crtbrand.S +55 -0
- package/libc/freebsd/lib/csu/common/csu_common.h +50 -0
- package/libc/freebsd/lib/csu/common/feature_note.S +47 -0
- package/libc/freebsd/lib/csu/common/ignore_init_note.S +48 -0
- package/libc/freebsd/lib/csu/common/notes.h +32 -0
- package/libc/freebsd/lib/csu/i386/crt.h +30 -0
- package/libc/freebsd/lib/csu/i386/crt1_c.c +30 -0
- package/libc/freebsd/lib/csu/i386/crt1_s.S +91 -0
- package/libc/freebsd/lib/csu/powerpc/crt.h +30 -0
- package/libc/freebsd/lib/csu/powerpc/crt1_c.c +89 -0
- package/libc/freebsd/lib/csu/powerpc/crtsavres.S +189 -0
- package/libc/freebsd/lib/csu/powerpc64/crt.h +30 -0
- package/libc/freebsd/lib/csu/powerpc64/crt1_c.c +83 -0
- package/libc/freebsd/lib/csu/riscv/crt.h +8 -0
- package/libc/freebsd/lib/csu/riscv/crt1_c.c +51 -0
- package/libc/freebsd/lib/csu/riscv/crt1_s.S +51 -0
- package/libc/freebsd/lib/libc/include/libc_private.h +386 -0
- package/libc/include/any-darwin-any/AssertMacros.h +1 -1
- package/libc/include/any-darwin-any/AvailabilityInternal.h +10 -10
- package/libc/include/any-darwin-any/AvailabilityInternalLegacy.h +1 -1
- package/libc/include/any-darwin-any/AvailabilityVersions.h +16 -0
- package/libc/include/any-darwin-any/TargetConditionals.h +5 -21
- package/libc/include/any-darwin-any/_regex.h +11 -3
- package/libc/include/any-darwin-any/copyfile.h +1 -0
- package/libc/include/any-darwin-any/dirent.h +32 -2
- package/libc/include/any-darwin-any/dispatch/base.h +8 -0
- package/libc/include/any-darwin-any/dispatch/dispatch_swift_shims.h +4 -2
- package/libc/include/any-darwin-any/dispatch/once.h +2 -1
- package/libc/include/any-darwin-any/dispatch/workloop.h +2 -0
- package/libc/include/any-darwin-any/glob.h +7 -5
- package/libc/include/any-darwin-any/mach/arm/_structs.h +1 -0
- package/libc/include/any-darwin-any/mach/arm/exception.h +1 -0
- package/libc/include/any-darwin-any/mach/arm/thread_status.h +1 -1
- package/libc/include/any-darwin-any/mach/kern_return.h +4 -0
- package/libc/include/any-darwin-any/mach/mach_host.h +52 -2
- package/libc/include/any-darwin-any/mach/mach_traps.h +5 -1
- package/libc/include/any-darwin-any/mach/mach_types.h +4 -0
- package/libc/include/any-darwin-any/mach/mach_voucher_types.h +9 -0
- package/libc/include/any-darwin-any/mach/machine.h +1 -0
- package/libc/include/any-darwin-any/mach/message.h +21 -0
- package/libc/include/any-darwin-any/mach/port.h +48 -11
- package/libc/include/any-darwin-any/mach/thread_act.h +79 -2
- package/libc/include/any-darwin-any/mach/vm_map.h +54 -2
- package/libc/include/any-darwin-any/mach/vm_prot.h +0 -1
- package/libc/include/any-darwin-any/mach/vm_region.h +8 -0
- package/libc/include/any-darwin-any/mach/vm_statistics.h +39 -12
- package/libc/include/any-darwin-any/mach/vm_types.h +6 -0
- package/libc/include/any-darwin-any/mach-o/loader.h +3 -3
- package/libc/include/any-darwin-any/mach_debug/ipc_info.h +1 -0
- package/libc/include/any-darwin-any/malloc/malloc.h +0 -2
- package/libc/include/any-darwin-any/net/if_var.h +2 -2
- package/libc/include/any-darwin-any/signal.h +5 -2
- package/libc/include/any-darwin-any/simd/math.h +2 -2
- package/libc/include/any-darwin-any/sys/_symbol_aliasing.h +24 -0
- package/libc/include/any-darwin-any/sys/attr.h +5 -1
- package/libc/include/any-darwin-any/sys/fcntl.h +2 -0
- package/libc/include/any-darwin-any/sys/mman.h +3 -4
- package/libc/include/any-darwin-any/sys/paths.h +12 -9
- package/libc/include/any-darwin-any/sys/proc.h +2 -2
- package/libc/include/any-darwin-any/sys/sysctl.h +24 -20
- package/libc/include/any-darwin-any/unistd.h +2 -2
- package/libc/include/any-darwin-any/xpc/activity.h +7 -7
- package/libc/include/any-darwin-any/xpc/connection.h +15 -15
- package/libc/include/any-darwin-any/xpc/listener.h +2 -2
- package/libc/include/any-darwin-any/xpc/peer_requirement.h +13 -13
- package/libc/include/any-darwin-any/xpc/session.h +6 -6
- package/libc/include/any-darwin-any/xpc/xpc.h +14 -14
- package/libc/netbsd/lib/csu/arch/aarch64/crt0.S +45 -0
- package/libc/netbsd/lib/csu/arch/earm/crt0.S +61 -0
- package/libc/netbsd/lib/csu/arch/i386/crt0.S +48 -0
- package/libc/netbsd/lib/csu/arch/m68k/crt0.S +47 -0
- package/libc/netbsd/lib/csu/arch/mips/crt0.S +59 -0
- package/libc/netbsd/lib/csu/arch/powerpc/crt0.S +56 -0
- package/libc/netbsd/lib/csu/arch/sparc/crt0.S +55 -0
- package/libc/netbsd/lib/csu/arch/sparc64/crt0.S +59 -0
- package/libc/netbsd/lib/csu/arch/x86_64/crt0.S +48 -0
- package/libc/netbsd/lib/csu/common/crt0-common.c +351 -0
- package/libc/netbsd/lib/csu/common/crtbegin.c +135 -0
- package/libc/netbsd/lib/csu/common/csu-common.h +38 -0
- package/libc/netbsd/lib/csu/common/sysident.S +89 -0
- package/libc/netbsd/lib/csu/common/sysident_assym.h +17 -0
- package/libc/openbsd/lib/csu/aarch64/md_init.h +83 -0
- package/libc/openbsd/lib/csu/amd64/md_init.h +80 -0
- package/libc/openbsd/lib/csu/arm/md_init.h +112 -0
- package/libc/openbsd/lib/csu/crt0.c +76 -0
- package/libc/openbsd/lib/csu/crtbegin.c +61 -0
- package/libc/openbsd/lib/csu/extern.h +54 -0
- package/libc/openbsd/lib/csu/i386/md_init.h +83 -0
- package/libc/openbsd/lib/csu/mips64/md_init.h +127 -0
- package/libc/openbsd/lib/csu/os-note-elf.h +19 -0
- package/libc/openbsd/lib/csu/powerpc/md_init.h +80 -0
- package/libc/openbsd/lib/csu/powerpc64/md_init.h +75 -0
- package/libc/openbsd/lib/csu/riscv64/md_init.h +74 -0
- package/libc/openbsd/lib/csu/sparc64/md_init.h +85 -0
- package/package.json +2 -2
- package/std/Build/Step/Run.zig +4 -4
- package/std/Io/Dir.zig +122 -7
- package/std/Io/File.zig +6 -118
- package/std/Io/Kqueue.zig +1 -0
- package/std/Io/Threaded.zig +50 -46
- package/std/Io/Uring.zig +1 -0
- package/std/Io/net.zig +4 -0
- package/std/Io.zig +3 -3
- package/std/Target.zig +1 -1
- package/std/c.zig +2 -1
- package/std/http/Client.zig +3 -2
- package/std/tar.zig +76 -36
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
--- !tapi-tbd
|
|
2
2
|
tbd-version: 4
|
|
3
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
4
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
5
4
|
install-name: '/usr/lib/libSystem.B.dylib'
|
|
6
5
|
current-version: 1356
|
|
7
6
|
reexported-libraries:
|
|
8
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
9
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
7
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
10
8
|
libraries: [ '/usr/lib/system/libcache.dylib', '/usr/lib/system/libcommonCrypto.dylib',
|
|
11
9
|
'/usr/lib/system/libcompiler_rt.dylib', '/usr/lib/system/libcopyfile.dylib',
|
|
12
10
|
'/usr/lib/system/libcorecrypto.dylib', '/usr/lib/system/libdispatch.dylib',
|
|
@@ -38,23 +36,19 @@ exports:
|
|
|
38
36
|
'R8289209$_setattrlist', 'R8289209$_setrlimit', 'R8289209$_sigaction',
|
|
39
37
|
'R8289209$_stat', 'R8289209$_sysctl', 'R8289209$_time', 'R8289209$_unlink',
|
|
40
38
|
'R8289209$_write' ]
|
|
41
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
42
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
39
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
43
40
|
symbols: [ ___crashreporter_info__, _libSystem_init_after_boot_tasks_4launchd,
|
|
44
41
|
_mach_init_routine ]
|
|
45
42
|
--- !tapi-tbd
|
|
46
43
|
tbd-version: 4
|
|
47
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
48
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
44
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
49
45
|
install-name: '/usr/lib/system/libcache.dylib'
|
|
50
46
|
current-version: 95
|
|
51
47
|
parent-umbrella:
|
|
52
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
53
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
48
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
54
49
|
umbrella: System
|
|
55
50
|
exports:
|
|
56
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
57
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
51
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
58
52
|
symbols: [ _cache_create, _cache_destroy, _cache_get, _cache_get_and_retain,
|
|
59
53
|
_cache_get_cost_hint, _cache_get_count_hint, _cache_get_info,
|
|
60
54
|
_cache_get_info_for_key, _cache_get_info_for_keys, _cache_get_minimum_values_hint,
|
|
@@ -69,17 +63,14 @@ exports:
|
|
|
69
63
|
_cache_value_make_purgeable_cb ]
|
|
70
64
|
--- !tapi-tbd
|
|
71
65
|
tbd-version: 4
|
|
72
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
73
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
66
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
74
67
|
install-name: '/usr/lib/system/libcommonCrypto.dylib'
|
|
75
68
|
current-version: 65535
|
|
76
69
|
parent-umbrella:
|
|
77
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
78
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
70
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
79
71
|
umbrella: System
|
|
80
72
|
exports:
|
|
81
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
82
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
73
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
83
74
|
symbols: [ _CCAESCmac, _CCAESCmacCreate, _CCAESCmacDestroy, _CCAESCmacFinal,
|
|
84
75
|
_CCAESCmacOutputSizeFromContext, _CCAESCmacUpdate, _CCBigNumAdd,
|
|
85
76
|
_CCBigNumAddI, _CCBigNumBitCount, _CCBigNumByteCount, _CCBigNumClear,
|
|
@@ -382,28 +373,23 @@ exports:
|
|
|
382
373
|
_atomic_signal_fence, _atomic_thread_fence ]
|
|
383
374
|
--- !tapi-tbd
|
|
384
375
|
tbd-version: 4
|
|
385
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
386
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
376
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
387
377
|
install-name: '/usr/lib/system/libcopyfile.dylib'
|
|
388
378
|
parent-umbrella:
|
|
389
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
390
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
379
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
391
380
|
umbrella: System
|
|
392
381
|
exports:
|
|
393
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
394
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
382
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
395
383
|
symbols: [ _copyfile, _copyfile_state_alloc, _copyfile_state_free, _copyfile_state_get,
|
|
396
384
|
_copyfile_state_set, _fcopyfile, _xattr_flags_from_name, _xattr_intent_with_flags,
|
|
397
385
|
_xattr_name_with_flags, _xattr_name_without_flags, _xattr_preserve_for_intent ]
|
|
398
386
|
--- !tapi-tbd
|
|
399
387
|
tbd-version: 4
|
|
400
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
401
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
388
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
402
389
|
install-name: '/usr/lib/system/libcorecrypto.dylib'
|
|
403
|
-
current-version: 1922.
|
|
390
|
+
current-version: 1922.101.2
|
|
404
391
|
parent-umbrella:
|
|
405
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
406
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
392
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
407
393
|
umbrella: System
|
|
408
394
|
exports:
|
|
409
395
|
- targets: [ x86_64-macos, x86_64-maccatalyst ]
|
|
@@ -415,8 +401,7 @@ exports:
|
|
|
415
401
|
_ccaes_intel_xts_encrypt_aesni_mode, _ccaes_intel_xts_encrypt_opt_mode,
|
|
416
402
|
_ccsha1_vng_intel_SupplementalSSE3_di, _ccsha224_vng_intel_SupplementalSSE3_di,
|
|
417
403
|
_ccsha256_vng_intel_SupplementalSSE3_di ]
|
|
418
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
419
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
404
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
420
405
|
symbols: [ _CCEC_FAULT_CANARY, _CCMLDSA_FAULT_CANARY, _CCRSA_PKCS1_FAULT_CANARY,
|
|
421
406
|
_CCRSA_PSS_FAULT_CANARY, _CCSS_PRIME_P192, _CCSS_PRIME_P224,
|
|
422
407
|
_CCSS_PRIME_P256, _CCSS_PRIME_P384, _CCSS_PRIME_P521, _cc_abort,
|
|
@@ -561,15 +546,16 @@ exports:
|
|
|
561
546
|
_ccec_rfc6637_unwrap_sha512_kek_aes256, _ccec_rfc6637_wrap_key,
|
|
562
547
|
_ccec_rfc6637_wrap_key_diversified, _ccec_rfc6637_wrap_key_size,
|
|
563
548
|
_ccec_rfc6637_wrap_sha256_kek_aes128, _ccec_rfc6637_wrap_sha512_kek_aes256,
|
|
564
|
-
_ccec_sign, _ccec_sign_composite,
|
|
565
|
-
_ccec_sign_msg, _ccec_signature_r_s_size,
|
|
566
|
-
_ccec_verify, _ccec_verify_composite,
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
549
|
+
_ccec_sign, _ccec_sign_composite, _ccec_sign_composite_hedged,
|
|
550
|
+
_ccec_sign_composite_msg, _ccec_sign_msg, _ccec_signature_r_s_size,
|
|
551
|
+
_ccec_unblind, _ccec_validate_pub, _ccec_verify, _ccec_verify_composite,
|
|
552
|
+
_ccec_verify_composite_digest, _ccec_verify_composite_msg,
|
|
553
|
+
_ccec_verify_digest, _ccec_verify_msg, _ccec_x963_export,
|
|
554
|
+
_ccec_x963_import_priv, _ccec_x963_import_priv_size, _ccec_x963_import_pub,
|
|
555
|
+
_ccec_x963_import_pub_size, _ccecb_block_size, _ccecb_context_size,
|
|
556
|
+
_ccecb_init, _ccecb_one_shot, _ccecb_one_shot_explicit, _ccecb_update,
|
|
557
|
+
_ccecdh_compute_shared_secret, _ccecdh_generate_key, _ccecies_decrypt_gcm,
|
|
558
|
+
_ccecies_decrypt_gcm_composite, _ccecies_decrypt_gcm_from_shared_secret,
|
|
573
559
|
_ccecies_decrypt_gcm_plaintext_size, _ccecies_decrypt_gcm_plaintext_size_cp,
|
|
574
560
|
_ccecies_decrypt_gcm_setup, _ccecies_encrypt_gcm, _ccecies_encrypt_gcm_ciphertext_size,
|
|
575
561
|
_ccecies_encrypt_gcm_composite, _ccecies_encrypt_gcm_from_shared_secret,
|
|
@@ -715,23 +701,27 @@ exports:
|
|
|
715
701
|
_ccsha1_ltc_di, _ccsha224_di, _ccsha224_ltc_di, _ccsha256_di,
|
|
716
702
|
_ccsha256_ltc_di, _ccsha384_di, _ccsha384_ltc_di, _ccsha3_224_di,
|
|
717
703
|
_ccsha3_256_di, _ccsha3_384_di, _ccsha3_512_di, _ccsha512_256_di,
|
|
718
|
-
_ccsha512_256_ltc_di, _ccsha512_di, _ccsha512_ltc_di,
|
|
704
|
+
_ccsha512_256_ltc_di, _ccsha512_di, _ccsha512_ltc_di, _ccshake128,
|
|
705
|
+
_ccshake128_xi, _ccshake256, _ccshake256_xi, _ccsigma_clear,
|
|
719
706
|
_ccsigma_clear_key, _ccsigma_compute_mac, _ccsigma_derive_session_keys,
|
|
720
|
-
_ccsigma_exclave_pairing_info,
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
707
|
+
_ccsigma_exclave_pairing_info, _ccsigma_exclave_pairing_session_info,
|
|
708
|
+
_ccsigma_export_key_share, _ccsigma_import_peer_key_share,
|
|
709
|
+
_ccsigma_import_peer_verification_key, _ccsigma_import_signing_key,
|
|
710
|
+
_ccsigma_init, _ccsigma_kex_init_ctx, _ccsigma_kex_resp_ctx,
|
|
711
|
+
_ccsigma_mfi_info, _ccsigma_mfi_nvm_info, _ccsigma_open, _ccsigma_peer_role,
|
|
712
|
+
_ccsigma_seal, _ccsigma_session_clear, _ccsigma_session_export,
|
|
713
|
+
_ccsigma_session_import, _ccsigma_session_init, _ccsigma_session_open,
|
|
714
|
+
_ccsigma_session_seal, _ccsigma_set_signing_function, _ccsigma_sign,
|
|
715
|
+
_ccsigma_verify, _ccsiv_aad, _ccsiv_block_size, _ccsiv_ciphertext_size,
|
|
716
|
+
_ccsiv_context_size, _ccsiv_crypt, _ccsiv_hmac_aad, _ccsiv_hmac_block_size,
|
|
717
|
+
_ccsiv_hmac_ciphertext_size, _ccsiv_hmac_context_size, _ccsiv_hmac_crypt,
|
|
718
|
+
_ccsiv_hmac_init, _ccsiv_hmac_one_shot, _ccsiv_hmac_plaintext_size,
|
|
719
|
+
_ccsiv_hmac_reset, _ccsiv_hmac_set_nonce, _ccsiv_init, _ccsiv_one_shot,
|
|
720
|
+
_ccsiv_plaintext_size, _ccsiv_reset, _ccsiv_set_nonce, _ccspake_cp_256,
|
|
721
|
+
_ccspake_cp_256_rfc, _ccspake_cp_384, _ccspake_cp_384_rfc,
|
|
722
|
+
_ccspake_cp_521, _ccspake_cp_521_rfc, _ccspake_generate_L,
|
|
723
|
+
_ccspake_get_session_key, _ccspake_kex_generate, _ccspake_kex_process,
|
|
724
|
+
_ccspake_mac_compute, _ccspake_mac_hkdf_cmac_aes128_sha256,
|
|
735
725
|
_ccspake_mac_hkdf_hmac_sha256, _ccspake_mac_hkdf_hmac_sha512,
|
|
736
726
|
_ccspake_mac_verify_and_get_session_key, _ccspake_prover_init,
|
|
737
727
|
_ccspake_prover_initialize, _ccspake_reduce_w, _ccspake_reduce_w_RFC9383,
|
|
@@ -761,13 +751,14 @@ exports:
|
|
|
761
751
|
_ccvrf_sizeof_public_key, _ccvrf_sizeof_secret_key, _ccvrf_verify,
|
|
762
752
|
_ccwrap_auth_decrypt, _ccwrap_auth_decrypt_withiv, _ccwrap_auth_encrypt,
|
|
763
753
|
_ccwrap_auth_encrypt_withiv, _ccwrap_unwrapped_size, _ccwrap_wrapped_size,
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
754
|
+
_ccxof_absorb, _ccxof_init, _ccxof_squeeze, _ccxts_block_size,
|
|
755
|
+
_ccxts_context_size, _ccxts_init, _ccxts_one_shot, _ccxts_set_tweak,
|
|
756
|
+
_ccxts_update, _ccz_add, _ccz_addi, _ccz_bit, _ccz_bitlen,
|
|
757
|
+
_ccz_capacity, _ccz_cmp, _ccz_cmpi, _ccz_divmod, _ccz_expmod,
|
|
758
|
+
_ccz_free, _ccz_init, _ccz_is_negative, _ccz_is_one, _ccz_is_prime,
|
|
759
|
+
_ccz_is_zero, _ccz_lsl, _ccz_lsr, _ccz_mod, _ccz_mul, _ccz_muli,
|
|
760
|
+
_ccz_mulmod, _ccz_n, _ccz_neg, _ccz_random_bits, _ccz_read_radix,
|
|
761
|
+
_ccz_read_uint, _ccz_set, _ccz_set_bit, _ccz_set_capacity,
|
|
771
762
|
_ccz_set_n, _ccz_set_sign, _ccz_seti, _ccz_sign, _ccz_size,
|
|
772
763
|
_ccz_sub, _ccz_subi, _ccz_trailing_zeros, _ccz_write_int,
|
|
773
764
|
_ccz_write_int_size, _ccz_write_radix, _ccz_write_radix_size,
|
|
@@ -775,7 +766,7 @@ exports:
|
|
|
775
766
|
_cczp_bitlen, _cczp_inv, _cczp_mod, _cczp_mul, _cczp_n, _cczp_prime,
|
|
776
767
|
_cczp_sub, _csss_shamir_share_bag_can_recover_secret, _fipspost_post,
|
|
777
768
|
_fipspost_trace_vtable, _map_to_curve_sswu ]
|
|
778
|
-
- targets: [
|
|
769
|
+
- targets: [ arm64e-macos, arm64e-maccatalyst ]
|
|
779
770
|
symbols: [ _ccaes_arm_cbc_decrypt_mode, _ccaes_arm_cbc_encrypt_mode,
|
|
780
771
|
_ccaes_arm_cfb_decrypt_mode, _ccaes_arm_cfb_encrypt_mode,
|
|
781
772
|
_ccaes_arm_ecb_decrypt_mode, _ccaes_arm_ecb_encrypt_mode,
|
|
@@ -786,17 +777,14 @@ exports:
|
|
|
786
777
|
_ccsha512_vng_arm_hw_di ]
|
|
787
778
|
--- !tapi-tbd
|
|
788
779
|
tbd-version: 4
|
|
789
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
790
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
780
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
791
781
|
install-name: '/usr/lib/system/libdispatch.dylib'
|
|
792
|
-
current-version: 1542.
|
|
782
|
+
current-version: 1542.100.32
|
|
793
783
|
parent-umbrella:
|
|
794
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
795
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
784
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
796
785
|
umbrella: System
|
|
797
786
|
exports:
|
|
798
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
799
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
787
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
800
788
|
symbols: [ '$ld$hide$os10.12$_dispatch_assert_queue', '$ld$hide$os10.12$_dispatch_assert_queue_not',
|
|
801
789
|
'$ld$hide$os10.12$_dispatch_queue_create_with_target', __dispatch_begin_NSAutoReleasePool,
|
|
802
790
|
__dispatch_bug, __dispatch_data_destructor_free, __dispatch_data_destructor_munmap,
|
|
@@ -978,49 +966,55 @@ exports:
|
|
|
978
966
|
__dyld_find_protocol_conformance, __dyld_find_protocol_conformance_on_disk,
|
|
979
967
|
__dyld_find_unwind_sections, __dyld_for_each_objc_class, __dyld_for_each_objc_protocol,
|
|
980
968
|
__dyld_for_each_prewarming_range, __dyld_for_objc_header_opt_ro,
|
|
981
|
-
__dyld_for_objc_header_opt_rw, __dyld_fork_child,
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
969
|
+
__dyld_for_objc_header_opt_rw, __dyld_fork_child, __dyld_framework_HWTrace_spis_enabled,
|
|
970
|
+
__dyld_get_dlopen_image_header, __dyld_get_dyld_header, __dyld_get_image_header,
|
|
971
|
+
__dyld_get_image_name, __dyld_get_image_slide, __dyld_get_image_uuid,
|
|
972
|
+
__dyld_get_image_vmaddr_slide, __dyld_get_objc_selector, __dyld_get_prog_image_header,
|
|
973
|
+
__dyld_get_shared_cache_range, __dyld_get_shared_cache_uuid,
|
|
974
|
+
__dyld_get_swift_prespecialized_data, __dyld_has_fix_for_radar,
|
|
975
|
+
__dyld_has_preoptimized_swift_protocol_conformances, __dyld_image_count,
|
|
976
|
+
__dyld_images_for_addresses, __dyld_initializer, __dyld_is_memory_immutable,
|
|
977
|
+
__dyld_is_objc_constant, __dyld_is_preoptimized_objc_image_loaded,
|
|
978
|
+
__dyld_is_pseudodylib, __dyld_launch_mode, __dyld_lazy_load,
|
|
979
|
+
__dyld_lookup_section_info, __dyld_objc_class_count, __dyld_objc_notify_register,
|
|
980
|
+
__dyld_objc_register_callbacks, __dyld_objc_uses_large_shared_cache,
|
|
981
|
+
__dyld_process_info_create, __dyld_process_info_for_each_image,
|
|
982
|
+
__dyld_process_info_for_each_segment, __dyld_process_info_get_aot_cache,
|
|
983
|
+
__dyld_process_info_get_cache, __dyld_process_info_get_platform,
|
|
984
|
+
__dyld_process_info_get_state, __dyld_process_info_notify,
|
|
985
|
+
__dyld_process_info_notify_main, __dyld_process_info_notify_release,
|
|
986
|
+
__dyld_process_info_notify_retain, __dyld_process_info_release,
|
|
987
|
+
__dyld_process_info_retain, __dyld_pseudodylib_deregister,
|
|
998
988
|
__dyld_pseudodylib_deregister_callbacks, __dyld_pseudodylib_register,
|
|
999
989
|
__dyld_pseudodylib_register_callbacks, __dyld_register_dlsym_notifier,
|
|
1000
990
|
__dyld_register_driverkit_main, __dyld_register_for_bulk_image_loads,
|
|
1001
991
|
__dyld_register_for_image_loads, __dyld_register_func_for_add_image,
|
|
1002
992
|
__dyld_register_func_for_remove_image, __dyld_shared_cache_contains_path,
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
993
|
+
__dyld_shared_cache_file_path_containing_address, __dyld_shared_cache_is_locally_built,
|
|
994
|
+
__dyld_shared_cache_optimized, __dyld_shared_cache_real_path,
|
|
995
|
+
__dyld_stack_bottom, __dyld_stack_range, __dyld_stack_top,
|
|
996
|
+
__dyld_swift_optimizations_version, __dyld_visit_objc_classes,
|
|
1006
997
|
__tlv_atexit, __tlv_bootstrap, __tlv_exit, _dladdr, _dlclose,
|
|
1007
998
|
_dlerror, _dlopen, _dlopen_audited, _dlopen_from, _dlopen_preflight,
|
|
1008
999
|
_dlsym, _dyldVersionNumber, _dyldVersionString, _dyld_dynamic_interpose,
|
|
1009
|
-
_dyld_for_each_installed_shared_cache,
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1000
|
+
_dyld_for_each_installed_shared_cache, _dyld_for_each_installed_shared_cache_ex,
|
|
1001
|
+
_dyld_for_each_installed_shared_cache_with_system_path, _dyld_get_active_platform,
|
|
1002
|
+
_dyld_get_base_platform, _dyld_get_image_versions, _dyld_get_min_os_version,
|
|
1003
|
+
_dyld_get_program_min_os_version, _dyld_get_program_minos_version_token,
|
|
1004
|
+
_dyld_get_program_sdk_version, _dyld_get_program_sdk_version_token,
|
|
1005
|
+
_dyld_get_sdk_version, _dyld_has_inserted_or_interposing_libraries,
|
|
1006
|
+
_dyld_image_content_for_section, _dyld_image_content_for_segment,
|
|
1007
|
+
_dyld_image_copy_uuid, _dyld_image_for_each_section_info,
|
|
1016
1008
|
_dyld_image_for_each_segment_info, _dyld_image_get_file_path,
|
|
1017
1009
|
_dyld_image_get_installname, _dyld_image_header_containing_address,
|
|
1018
1010
|
_dyld_image_local_nlist_content_4Symbolication, _dyld_image_path_containing_address,
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1011
|
+
_dyld_image_release_4HWTrace, _dyld_image_retain_4HWTrace,
|
|
1012
|
+
_dyld_image_segment_data_4HWTrace, _dyld_is_simulator_platform,
|
|
1013
|
+
_dyld_minos_at_least, _dyld_need_closure, _dyld_process_create_for_current_task,
|
|
1014
|
+
_dyld_process_create_for_task, _dyld_process_dispose, _dyld_process_has_objc_patches,
|
|
1015
|
+
_dyld_process_is_restricted, _dyld_process_register_for_event_notification,
|
|
1016
|
+
_dyld_process_register_for_image_notifications, _dyld_process_snapshot_create_for_process,
|
|
1017
|
+
_dyld_process_snapshot_create_from_data, _dyld_process_snapshot_create_metrics,
|
|
1024
1018
|
_dyld_process_snapshot_dispose, _dyld_process_snapshot_for_each_image,
|
|
1025
1019
|
_dyld_process_snapshot_get_shared_cache, _dyld_process_unregister_for_notification,
|
|
1026
1020
|
_dyld_program_minos_at_least, _dyld_program_sdk_at_least,
|
|
@@ -1057,17 +1051,14 @@ exports:
|
|
|
1057
1051
|
_dyld_shared_cache_for_each_subcache4Rosetta, _dyld_shared_subcache_get_info4Rosetta ]
|
|
1058
1052
|
--- !tapi-tbd
|
|
1059
1053
|
tbd-version: 4
|
|
1060
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1061
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1054
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1062
1055
|
install-name: '/usr/lib/system/libkeymgr.dylib'
|
|
1063
1056
|
current-version: 31
|
|
1064
1057
|
parent-umbrella:
|
|
1065
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1066
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1058
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1067
1059
|
umbrella: System
|
|
1068
1060
|
exports:
|
|
1069
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1070
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1061
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1071
1062
|
symbols: [ ___keymgr_dwarf2_register_sections, ___keymgr_initializer,
|
|
1072
1063
|
__keymgr_get_and_lock_processwide_ptr, __keymgr_get_and_lock_processwide_ptr_2,
|
|
1073
1064
|
__keymgr_get_lock_count_processwide_ptr, __keymgr_get_lockmode_processwide_ptr,
|
|
@@ -1077,7 +1068,7 @@ exports:
|
|
|
1077
1068
|
tbd-version: 4
|
|
1078
1069
|
targets: [ x86_64-macos, arm64-macos, arm64e-macos ]
|
|
1079
1070
|
install-name: '/usr/lib/system/libmacho.dylib'
|
|
1080
|
-
current-version:
|
|
1071
|
+
current-version: 1040
|
|
1081
1072
|
parent-umbrella:
|
|
1082
1073
|
- targets: [ x86_64-macos, arm64-macos, arm64e-macos ]
|
|
1083
1074
|
umbrella: System
|
|
@@ -1114,17 +1105,14 @@ exports:
|
|
|
1114
1105
|
_swap_x86_thread_state, _swap_x86_thread_state64 ]
|
|
1115
1106
|
--- !tapi-tbd
|
|
1116
1107
|
tbd-version: 4
|
|
1117
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1118
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1108
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1119
1109
|
install-name: '/usr/lib/system/libquarantine.dylib'
|
|
1120
|
-
current-version: 196.
|
|
1110
|
+
current-version: 196.100.8
|
|
1121
1111
|
parent-umbrella:
|
|
1122
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1123
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1112
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1124
1113
|
umbrella: System
|
|
1125
1114
|
exports:
|
|
1126
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1127
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1115
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1128
1116
|
symbols: [ __qtn_error, __qtn_file_alloc, __qtn_file_apply_to_fd, __qtn_file_apply_to_mount_point,
|
|
1129
1117
|
__qtn_file_apply_to_path, __qtn_file_clone, __qtn_file_free,
|
|
1130
1118
|
__qtn_file_get_flags, __qtn_file_get_identifier, __qtn_file_get_metadata,
|
|
@@ -1145,7 +1133,7 @@ exports:
|
|
|
1145
1133
|
_responsibility_get_pid_responsible_for_pid, _responsibility_get_responsible_for_pid,
|
|
1146
1134
|
_responsibility_get_uniqueid_responsible_for_pid, _responsibility_init,
|
|
1147
1135
|
_responsibility_set_pid_responsible_for_pid ]
|
|
1148
|
-
- targets: [ x86_64-macos,
|
|
1136
|
+
- targets: [ x86_64-macos, arm64e-macos ]
|
|
1149
1137
|
symbols: [ _qtn_spawnattrs_get_tracking_data, _qtn_spawnattrs_set_tracking_data,
|
|
1150
1138
|
_responsibility_get_attribution_for_audittoken, _responsibility_get_responsible_audit_token_for_audit_token,
|
|
1151
1139
|
_responsibility_identity_get_binary_entitlement_data, _responsibility_identity_get_binary_is_platform,
|
|
@@ -1161,17 +1149,14 @@ exports:
|
|
|
1161
1149
|
_responsibility_spawnattrs_getdisclaim, _responsibility_spawnattrs_setdisclaim ]
|
|
1162
1150
|
--- !tapi-tbd
|
|
1163
1151
|
tbd-version: 4
|
|
1164
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1165
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1152
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1166
1153
|
install-name: '/usr/lib/system/libremovefile.dylib'
|
|
1167
|
-
current-version:
|
|
1154
|
+
current-version: 85.100.6
|
|
1168
1155
|
parent-umbrella:
|
|
1169
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1170
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1156
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1171
1157
|
umbrella: System
|
|
1172
1158
|
exports:
|
|
1173
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1174
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1159
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1175
1160
|
symbols: [ ___removefile_init_random, ___removefile_random_char, ___removefile_randomize_buffer,
|
|
1176
1161
|
___removefile_rename_unlink, ___removefile_sunlink, ___removefile_tree_walker,
|
|
1177
1162
|
___removefile_tree_walker_slim, _removefile, _removefile_cancel,
|
|
@@ -1179,17 +1164,14 @@ exports:
|
|
|
1179
1164
|
_removefile_state_set, _removefileat ]
|
|
1180
1165
|
--- !tapi-tbd
|
|
1181
1166
|
tbd-version: 4
|
|
1182
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1183
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1167
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1184
1168
|
install-name: '/usr/lib/system/libsystem_asl.dylib'
|
|
1185
1169
|
current-version: 406
|
|
1186
1170
|
parent-umbrella:
|
|
1187
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1188
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1171
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1189
1172
|
umbrella: System
|
|
1190
1173
|
exports:
|
|
1191
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1192
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1174
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1193
1175
|
symbols: [ _ASL_LEVEL_TO_STRING, __asl_evaluate_send, __asl_fork_child,
|
|
1194
1176
|
__asl_lib_log, __asl_log_args_to_xpc, __asl_msg_dump, __asl_mt_shim_fork_child,
|
|
1195
1177
|
__asl_mt_shim_send_message, __asl_server_cancel_direct_watch,
|
|
@@ -1260,17 +1242,14 @@ exports:
|
|
|
1260
1242
|
_setlogmask, _syslog, '_syslog$DARWIN_EXTSN', _vsyslog ]
|
|
1261
1243
|
--- !tapi-tbd
|
|
1262
1244
|
tbd-version: 4
|
|
1263
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1264
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1245
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1265
1246
|
install-name: '/usr/lib/system/libsystem_blocks.dylib'
|
|
1266
1247
|
current-version: 96
|
|
1267
1248
|
parent-umbrella:
|
|
1268
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1269
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1249
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1270
1250
|
umbrella: System
|
|
1271
1251
|
exports:
|
|
1272
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1273
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1252
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1274
1253
|
symbols: [ _Block_size, __Block_copy, __Block_extended_layout, __Block_has_signature,
|
|
1275
1254
|
__Block_isDeallocating, __Block_layout, __Block_object_assign,
|
|
1276
1255
|
__Block_object_dispose, __Block_release, __Block_signature,
|
|
@@ -1279,29 +1258,28 @@ exports:
|
|
|
1279
1258
|
__NSConcreteStackBlock, __NSConcreteWeakBlockVariable ]
|
|
1280
1259
|
--- !tapi-tbd
|
|
1281
1260
|
tbd-version: 4
|
|
1282
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1283
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1261
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1284
1262
|
install-name: '/usr/lib/system/libsystem_c.dylib'
|
|
1285
|
-
current-version:
|
|
1263
|
+
current-version: 1752.100.10
|
|
1286
1264
|
parent-umbrella:
|
|
1287
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1288
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1265
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1289
1266
|
umbrella: System
|
|
1290
1267
|
exports:
|
|
1291
1268
|
- targets: [ x86_64-macos, x86_64-maccatalyst ]
|
|
1292
1269
|
symbols: [ '___opendir2$INODE64', '__readdir_unlocked$INODE64', '__seekdir$INODE64',
|
|
1293
1270
|
'_alphasort$INODE64', '_daemon$1050', '_fdopendir$INODE64',
|
|
1294
|
-
|
|
1295
|
-
'
|
|
1296
|
-
'
|
|
1271
|
+
'_fdscandir$INODE64', '_fdscandir_b$INODE64', _fstatx64_np,
|
|
1272
|
+
'_fstatx_np$INODE64', '_fts_children$INODE64', '_fts_close$INODE64',
|
|
1273
|
+
'_fts_open$INODE64', '_fts_open_b$INODE64', '_fts_read$INODE64',
|
|
1274
|
+
'_fts_set$INODE64', '_ftw$INODE64', '_getmntinfo$INODE64',
|
|
1297
1275
|
_getmntinfo64, '_getmntinfo_r_np$INODE64', '_glob$INODE64',
|
|
1298
1276
|
'_glob_b$INODE64', _lstatx64_np, '_lstatx_np$INODE64', '_nftw$INODE64',
|
|
1299
1277
|
'_opendir$INODE64', '_readdir$INODE64', '_readdir_r$INODE64',
|
|
1300
1278
|
'_rewinddir$INODE64', '_scandir$INODE64', '_scandir_b$INODE64',
|
|
1301
|
-
'
|
|
1302
|
-
'_telldir$INODE64',
|
|
1303
|
-
|
|
1304
|
-
|
|
1279
|
+
'_scandirat$INODE64', '_scandirat_b$INODE64', '_seekdir$INODE64',
|
|
1280
|
+
_statx64_np, '_statx_np$INODE64', _strtoencf80_l, '_telldir$INODE64',
|
|
1281
|
+
mcount ]
|
|
1282
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1305
1283
|
symbols: [ '$ld$weak$os10.11$_basename_r', '$ld$weak$os10.11$_clock_getres',
|
|
1306
1284
|
'$ld$weak$os10.11$_clock_gettime', '$ld$weak$os10.11$_clock_settime',
|
|
1307
1285
|
'$ld$weak$os10.11$_dirname_r', '$ld$weak$os10.11$_getentropy',
|
|
@@ -1406,10 +1384,11 @@ exports:
|
|
|
1406
1384
|
_environ_unlock_np, _erand48, _err, _err_set_exit, _err_set_exit_b,
|
|
1407
1385
|
_err_set_file, _errc, _errx, _execl, _execle, _execlp, _execv,
|
|
1408
1386
|
_execvP, _execvp, _exit, _f_prealloc, _fchmodx_np, _fclose,
|
|
1409
|
-
_fcvt, _fdopen, '_fdopen$DARWIN_EXTSN', _fdopendir,
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1387
|
+
_fcvt, _fdclosedir, _fdopen, '_fdopen$DARWIN_EXTSN', _fdopendir,
|
|
1388
|
+
_fdscandir, _fdscandir_b, _feof, _feof_unlocked, _ferror,
|
|
1389
|
+
_ferror_unlocked, _fflagstostr, _fflush, _fgetc, _fgetln,
|
|
1390
|
+
_fgetpos, _fgetrune, _fgets, _fgetwc, _fgetwc_l, _fgetwln,
|
|
1391
|
+
_fgetwln_l, _fgetws, _fgetws_l, _fileno, _fileno_unlocked,
|
|
1413
1392
|
_filesec_dup, _filesec_free, _filesec_get_property, _filesec_init,
|
|
1414
1393
|
_filesec_query_property, _filesec_set_property, _filesec_unset_property,
|
|
1415
1394
|
_flockfile, _fmemopen, _fmtcheck, _fmtmsg, _fnmatch, _fopen,
|
|
@@ -1490,16 +1469,17 @@ exports:
|
|
|
1490
1469
|
_regncomp, _regncomp_l, _regnexec, _regwcomp, _regwcomp_l,
|
|
1491
1470
|
_regwexec, _regwncomp, _regwncomp_l, _regwnexec, _remove,
|
|
1492
1471
|
_remque, _rewind, _rewinddir, _rindex, _rpmatch, _sbrk, _scandir,
|
|
1493
|
-
_scandir_b,
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1472
|
+
_scandir_b, _scandirat, _scandirat_b, _scanf, _scanf_l, _seed48,
|
|
1473
|
+
_seekdir, _send, '_send$NOCANCEL', _setbuf, _setbuffer, _setenv,
|
|
1474
|
+
_sethostid, _sethostname, _setinvalidrune, _setipv4sourcefilter,
|
|
1475
|
+
_setkey, _setlinebuf, _setlocale, _setlogin, _setmode, _setpgrp,
|
|
1476
|
+
_setprogname, _setrgid, _setruid, _setrunelocale, _setsourcefilter,
|
|
1477
|
+
_setstate, _settimeofday, _setttyent, _setusershell, _setutxent,
|
|
1478
|
+
_setutxent_wtmp, _setvbuf, _sigaction, _sigaddset, _sigaltstack,
|
|
1479
|
+
_sigblock, _sigdelset, _sigemptyset, _sigfillset, _sighold,
|
|
1480
|
+
_sigignore, _siginterrupt, _sigismember, _signal, _sigpause,
|
|
1481
|
+
'_sigpause$NOCANCEL', _sigrelse, _sigset, _sigsetmask, _sigvec,
|
|
1482
|
+
_sl_add, _sl_find, _sl_free, _sl_init, _sleep, '_sleep$NOCANCEL',
|
|
1503
1483
|
_snprintf, _snprintf_l, _snvis, _sockatmark, _sprintf, _sprintf_l,
|
|
1504
1484
|
_sradixsort, _srand, _srand48, _sranddev, _srandom, _srandomdev,
|
|
1505
1485
|
_sscanf, _sscanf_l, _stat_with_subsystem, _statvfs, _statx_np,
|
|
@@ -1568,25 +1548,21 @@ exports:
|
|
|
1568
1548
|
_xprintf_exec ]
|
|
1569
1549
|
weak-symbols: [ __os_debug_log_redirect_func ]
|
|
1570
1550
|
reexports:
|
|
1571
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1572
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1551
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1573
1552
|
symbols: [ _bcmp, _bzero, _index, _memccpy, _memchr, _memcmp, _memcpy,
|
|
1574
1553
|
_memmove, _memset, _memset_pattern16, _memset_pattern4, _memset_pattern8,
|
|
1575
1554
|
_strchr, _strcmp, _strcpy, _strlcat, _strlcpy, _strlen, _strncmp,
|
|
1576
1555
|
_strncpy, _strnlen, _strstr ]
|
|
1577
1556
|
--- !tapi-tbd
|
|
1578
1557
|
tbd-version: 4
|
|
1579
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1580
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1558
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1581
1559
|
install-name: '/usr/lib/system/libsystem_collections.dylib'
|
|
1582
|
-
current-version:
|
|
1560
|
+
current-version: 1752.100.10
|
|
1583
1561
|
parent-umbrella:
|
|
1584
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1585
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1562
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1586
1563
|
umbrella: System
|
|
1587
1564
|
exports:
|
|
1588
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1589
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1565
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1590
1566
|
symbols: [ _os_map_128_clear, _os_map_128_count, _os_map_128_delete,
|
|
1591
1567
|
_os_map_128_destroy, _os_map_128_find, _os_map_128_foreach,
|
|
1592
1568
|
_os_map_128_init, _os_map_128_insert, _os_map_32_clear, _os_map_32_count,
|
|
@@ -1606,17 +1582,14 @@ exports:
|
|
|
1606
1582
|
_os_set_str_ptr_foreach, _os_set_str_ptr_init, _os_set_str_ptr_insert ]
|
|
1607
1583
|
--- !tapi-tbd
|
|
1608
1584
|
tbd-version: 4
|
|
1609
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1610
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1585
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1611
1586
|
install-name: '/usr/lib/system/libsystem_configuration.dylib'
|
|
1612
|
-
current-version:
|
|
1587
|
+
current-version: 1405.100.8
|
|
1613
1588
|
parent-umbrella:
|
|
1614
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1615
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1589
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1616
1590
|
umbrella: System
|
|
1617
1591
|
exports:
|
|
1618
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1619
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1592
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1620
1593
|
symbols: [ __dns_configuration_ack, __libSC_info_fork_child, __libSC_info_fork_parent,
|
|
1621
1594
|
__libSC_info_fork_prepare, __nwi_config_agent_copy_data, __nwi_state_ack,
|
|
1622
1595
|
__nwi_state_force_refresh, _config_agent_copy_dns_information,
|
|
@@ -1633,16 +1606,13 @@ exports:
|
|
|
1633
1606
|
_nwi_state_get_reachability_flags, _nwi_state_release ]
|
|
1634
1607
|
--- !tapi-tbd
|
|
1635
1608
|
tbd-version: 4
|
|
1636
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1637
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1609
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1638
1610
|
install-name: '/usr/lib/system/libsystem_containermanager.dylib'
|
|
1639
1611
|
parent-umbrella:
|
|
1640
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1641
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1612
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1642
1613
|
umbrella: System
|
|
1643
1614
|
exports:
|
|
1644
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1645
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1615
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1646
1616
|
symbols: [ _CMCONTAINERSEAM_DEFAULT, _CMDISPATCHSEAM_DEFAULT, _CMFSSEAM_DEFAULT,
|
|
1647
1617
|
_CMNOTIFYSEAM_DEFAULT, _CMPWDSEAM_DEFAULT, _CMQUARANTINESEAM_DEFAULT,
|
|
1648
1618
|
_CMSANDBOXSEAM_DEFAULT, _CONTAINER_CLASS_NAMES, _CONTAINER_NOTIFY_GENERATION_INITIAL,
|
|
@@ -1834,7 +1804,7 @@ exports:
|
|
|
1834
1804
|
_container_xpc_shared_copy_connection, _gCMContainerSeam,
|
|
1835
1805
|
_gCMDispatchSeam, _gCMFSSeam, _gCMNotifySeam, _gCMPWDSeam,
|
|
1836
1806
|
_gCMQuarantineSeam, _gCMSandboxSeam ]
|
|
1837
|
-
- targets: [ x86_64-maccatalyst,
|
|
1807
|
+
- targets: [ x86_64-maccatalyst, arm64e-maccatalyst ]
|
|
1838
1808
|
symbols: [ _CONTAINER_CURRENT_MOBILE_UID, _CONTAINER_INSTALLATION_UID,
|
|
1839
1809
|
_CONTAINER_SYSTEM_UID, _container_create_or_lookup, _container_create_or_lookup_app_group_paths,
|
|
1840
1810
|
_container_create_or_lookup_group_container_paths_for_current_user,
|
|
@@ -1848,38 +1818,32 @@ exports:
|
|
|
1848
1818
|
_container_references_set_uid ]
|
|
1849
1819
|
--- !tapi-tbd
|
|
1850
1820
|
tbd-version: 4
|
|
1851
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1852
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1821
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1853
1822
|
install-name: '/usr/lib/system/libsystem_coreservices.dylib'
|
|
1854
1823
|
current-version: 129
|
|
1855
1824
|
parent-umbrella:
|
|
1856
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1857
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1825
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1858
1826
|
umbrella: System
|
|
1859
1827
|
exports:
|
|
1860
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1861
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1828
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1862
1829
|
symbols: [ _NSGetNextSearchPathEnumeration, _NSStartSearchPathEnumeration,
|
|
1863
1830
|
_NSStartSearchPathEnumerationPrivate, ___user_local_dirname,
|
|
1864
1831
|
___user_relative_dirname, __dirhelper, __dirhelper_relative,
|
|
1865
1832
|
__get_user_dir_suffix, __libcoreservices_fork_child, __set_user_dir_suffix,
|
|
1866
1833
|
_sysdir_get_next_search_path_enumeration, _sysdir_start_search_path_enumeration,
|
|
1867
1834
|
_sysdir_start_search_path_enumeration_private ]
|
|
1868
|
-
- targets: [ x86_64-macos,
|
|
1835
|
+
- targets: [ x86_64-macos, arm64e-macos ]
|
|
1869
1836
|
symbols: [ ___user_relative_dirname_with_hints, __dirhelper_relative_with_hints,
|
|
1870
1837
|
__dirhelper_remove_test, __dirhelper_test, __idle_exit ]
|
|
1871
1838
|
--- !tapi-tbd
|
|
1872
1839
|
tbd-version: 4
|
|
1873
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1874
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1840
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1875
1841
|
install-name: '/usr/lib/system/libsystem_darwin.dylib'
|
|
1876
1842
|
parent-umbrella:
|
|
1877
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1878
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1843
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1879
1844
|
umbrella: System
|
|
1880
1845
|
exports:
|
|
1881
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1882
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1846
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1883
1847
|
symbols: [ ___libdarwin_init, ___os_temporary_resource_shortage, _claimfd_np,
|
|
1884
1848
|
_close_drop_np, _close_drop_optional_np, _crfprintf_np, _dirstat_np,
|
|
1885
1849
|
_dirstatat_np, _dup_np, _err_np, _errc_np, _fcheck_np, _memdup2_np,
|
|
@@ -1906,35 +1870,29 @@ exports:
|
|
|
1906
1870
|
_sysctlbyname_get_data_np, _sysexit_np, _vcrfprintf_np, _verr_np,
|
|
1907
1871
|
_verrc_np, _vwarn_np, _vwfprintf_np, _warn_np, _wfprintf_np,
|
|
1908
1872
|
_xferfd_np, _zsnprintf_np ]
|
|
1909
|
-
- targets: [ x86_64-macos,
|
|
1873
|
+
- targets: [ x86_64-macos, arm64e-macos ]
|
|
1910
1874
|
symbols: [ _os_boot_mode_query, _os_variant_is_basesystem ]
|
|
1911
1875
|
--- !tapi-tbd
|
|
1912
1876
|
tbd-version: 4
|
|
1913
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1914
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1877
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1915
1878
|
install-name: '/usr/lib/system/libsystem_darwindirectory.dylib'
|
|
1916
1879
|
parent-umbrella:
|
|
1917
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1918
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1880
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1919
1881
|
umbrella: System
|
|
1920
1882
|
exports:
|
|
1921
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1922
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1883
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1923
1884
|
symbols: [ _DarwinDirectoryGetGeneration, _DarwinDirectoryRecordStoreApply,
|
|
1924
1885
|
_DarwinDirectoryRecordStoreApplyWithFilter ]
|
|
1925
1886
|
--- !tapi-tbd
|
|
1926
1887
|
tbd-version: 4
|
|
1927
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1928
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1888
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1929
1889
|
install-name: '/usr/lib/system/libsystem_dnssd.dylib'
|
|
1930
|
-
current-version: 2881.
|
|
1890
|
+
current-version: 2881.100.56
|
|
1931
1891
|
parent-umbrella:
|
|
1932
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1933
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1892
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1934
1893
|
umbrella: System
|
|
1935
1894
|
exports:
|
|
1936
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1937
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1895
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1938
1896
|
symbols: [ _DNSServiceAddRecord, _DNSServiceAttrCreate, _DNSServiceAttrFree,
|
|
1939
1897
|
_DNSServiceAttrSetFailoverPolicy, _DNSServiceAttrSetValidationData,
|
|
1940
1898
|
_DNSServiceAttrSetValidationPolicy, _DNSServiceAttributeCreate,
|
|
@@ -1962,14 +1920,14 @@ exports:
|
|
|
1962
1920
|
_kDNSServiceAttributeAAAAFallback ]
|
|
1963
1921
|
--- !tapi-tbd
|
|
1964
1922
|
tbd-version: 4
|
|
1965
|
-
targets: [ x86_64-macos,
|
|
1923
|
+
targets: [ x86_64-macos, arm64e-macos ]
|
|
1966
1924
|
install-name: '/usr/lib/system/libsystem_eligibility.dylib'
|
|
1967
|
-
current-version:
|
|
1925
|
+
current-version: 319.101.1
|
|
1968
1926
|
parent-umbrella:
|
|
1969
|
-
- targets: [ x86_64-macos,
|
|
1927
|
+
- targets: [ x86_64-macos, arm64e-macos ]
|
|
1970
1928
|
umbrella: System
|
|
1971
1929
|
exports:
|
|
1972
|
-
- targets: [ x86_64-macos,
|
|
1930
|
+
- targets: [ x86_64-macos, arm64e-macos ]
|
|
1973
1931
|
symbols: [ _os_eligibility_domain_for_name, _os_eligibility_dump_sysdiagnose_data_to_dir,
|
|
1974
1932
|
_os_eligibility_fetch_newest_policies, _os_eligibility_force_domain_answer,
|
|
1975
1933
|
_os_eligibility_force_domain_set_answers, _os_eligibility_get_all_domain_answers,
|
|
@@ -1980,30 +1938,24 @@ exports:
|
|
|
1980
1938
|
_os_eligibility_set_input, _os_eligibility_set_test_mode ]
|
|
1981
1939
|
--- !tapi-tbd
|
|
1982
1940
|
tbd-version: 4
|
|
1983
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1984
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1941
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1985
1942
|
install-name: '/usr/lib/system/libsystem_featureflags.dylib'
|
|
1986
|
-
current-version:
|
|
1943
|
+
current-version: 103
|
|
1987
1944
|
parent-umbrella:
|
|
1988
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1989
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1945
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1990
1946
|
umbrella: System
|
|
1991
1947
|
exports:
|
|
1992
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1993
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1948
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1994
1949
|
symbols: [ __os_feature_enabled_impl, __os_feature_enabled_simple_impl ]
|
|
1995
1950
|
--- !tapi-tbd
|
|
1996
1951
|
tbd-version: 4
|
|
1997
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
1998
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1952
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
1999
1953
|
install-name: '/usr/lib/system/libsystem_info.dylib'
|
|
2000
1954
|
parent-umbrella:
|
|
2001
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
2002
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1955
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2003
1956
|
umbrella: System
|
|
2004
1957
|
exports:
|
|
2005
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
2006
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
1958
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2007
1959
|
symbols: [ _LI_get_thread_item, _LI_get_thread_list, _LI_ils_create,
|
|
2008
1960
|
_LI_set_thread_item, _LI_set_thread_list, ___dn_skipname,
|
|
2009
1961
|
__authenticate, __ds_running, __gai_nat64_can_v4_address_be_synthesized,
|
|
@@ -2121,7 +2073,7 @@ tbd-version: 4
|
|
|
2121
2073
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64-macos, arm64-maccatalyst,
|
|
2122
2074
|
arm64e-macos, arm64e-maccatalyst ]
|
|
2123
2075
|
install-name: '/usr/lib/system/libsystem_kernel.dylib'
|
|
2124
|
-
current-version: 12377.
|
|
2076
|
+
current-version: 12377.101.14
|
|
2125
2077
|
parent-umbrella:
|
|
2126
2078
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64-macos, arm64-maccatalyst,
|
|
2127
2079
|
arm64e-macos, arm64e-maccatalyst ]
|
|
@@ -2239,13 +2191,14 @@ exports:
|
|
|
2239
2191
|
__kernelrpc_mach_vm_map_trap, __kernelrpc_mach_vm_protect,
|
|
2240
2192
|
__kernelrpc_mach_vm_protect_trap, __kernelrpc_mach_vm_purgable_control,
|
|
2241
2193
|
__kernelrpc_mach_vm_purgable_control_trap, __kernelrpc_mach_vm_read,
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
__kernelrpc_vm_map, __kernelrpc_vm_purgable_control,
|
|
2247
|
-
|
|
2248
|
-
|
|
2194
|
+
__kernelrpc_mach_vm_reallocate, __kernelrpc_mach_vm_remap,
|
|
2195
|
+
__kernelrpc_mach_vm_remap_new, __kernelrpc_mach_vm_update_pointers_with_remote_tags,
|
|
2196
|
+
__kernelrpc_mach_voucher_extract_attr_recipe, __kernelrpc_task_set_port_space,
|
|
2197
|
+
__kernelrpc_thread_policy, __kernelrpc_thread_policy_set,
|
|
2198
|
+
__kernelrpc_thread_set_policy, __kernelrpc_vm_map, __kernelrpc_vm_purgable_control,
|
|
2199
|
+
__kernelrpc_vm_read, __kernelrpc_vm_reallocate, __kernelrpc_vm_remap,
|
|
2200
|
+
__kernelrpc_vm_remap_new, __mach_errors, __mach_fork_child,
|
|
2201
|
+
__mach_snprintf, __mach_vsnprintf, __os_alloc_once_table,
|
|
2249
2202
|
__os_xbs_chrooted, __register_gethostuuid_callback, __thread_set_tsd_base,
|
|
2250
2203
|
_abort_with_payload, _abort_with_reason, _accept, '_accept$NOCANCEL',
|
|
2251
2204
|
_access, _accessx_np, _acct, _act_get_state, _act_set_state,
|
|
@@ -2266,27 +2219,31 @@ exports:
|
|
|
2266
2219
|
_debug_syscall_reject, _debug_syscall_reject_config, _denap_boost_assertion_token,
|
|
2267
2220
|
_disconnectx, _dup, _dup2, _errno, _etap_trace_thread, _exc_server,
|
|
2268
2221
|
_exc_server_routine, _exception_raise, _exception_raise_state,
|
|
2269
|
-
_exception_raise_state_identity, _exchangedata,
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2222
|
+
_exception_raise_state_identity, _exchangedata, _exclaves_aoe_enumerate_and_setup_services,
|
|
2223
|
+
_exclaves_aoe_get_all_service_infos, _exclaves_aoe_message_loop,
|
|
2224
|
+
_exclaves_aoe_message_loop_with_service_id, _exclaves_aoe_setup,
|
|
2225
|
+
_exclaves_aoe_work_loop, _exclaves_aoe_work_loop_with_service_id,
|
|
2226
|
+
_exclaves_arbitrated_buffer_copyout, _exclaves_arbitrated_buffer_create,
|
|
2227
|
+
_exclaves_audio_buffer_copyout, _exclaves_audio_buffer_copyout_with_status,
|
|
2228
|
+
_exclaves_audio_buffer_create, _exclaves_boot, _exclaves_daemon_notification_deregister,
|
|
2229
|
+
_exclaves_daemon_notification_register, _exclaves_endpoint_call,
|
|
2230
|
+
_exclaves_inbound_buffer_copyin, _exclaves_inbound_buffer_create,
|
|
2231
|
+
_exclaves_indicator_min_on_time, _exclaves_launch_conclave,
|
|
2232
|
+
_exclaves_lookup_service, _exclaves_named_buffer_copyin, _exclaves_named_buffer_copyout,
|
|
2233
|
+
_exclaves_named_buffer_create, _exclaves_notification_create,
|
|
2234
|
+
_exclaves_outbound_buffer_copyout, _exclaves_outbound_buffer_create,
|
|
2235
|
+
_exclaves_sensor_create, _exclaves_sensor_start, _exclaves_sensor_status,
|
|
2236
|
+
_exclaves_sensor_stop, _execve, _faccessat, _fchdir, _fchflags,
|
|
2237
|
+
_fchmod, _fchmodat, _fchown, _fchownat, _fclonefileat, _fcntl,
|
|
2238
|
+
'_fcntl$NOCANCEL', _fdatasync, _ffsctl, _fgetattrlist, _fgetxattr,
|
|
2239
|
+
_fhopen, _fileport_makefd, _fileport_makeport, _flistxattr,
|
|
2240
|
+
_flock, _fmount, _fpathconf, _freadlink, _fremovexattr, _fs_snapshot_create,
|
|
2241
|
+
_fs_snapshot_delete, _fs_snapshot_list, _fs_snapshot_mount,
|
|
2242
|
+
_fs_snapshot_rename, _fs_snapshot_revert, _fs_snapshot_root,
|
|
2243
|
+
_fsctl, _fsetattrlist, _fsetxattr, _fsgetpath, _fsgetpath_ext,
|
|
2244
|
+
_fstat, _fstat64, _fstatat, _fstatat64, _fstatfs, _fstatfs64,
|
|
2245
|
+
_fstatfs_ext, _fsync, '_fsync$NOCANCEL', _ftruncate, _funmount,
|
|
2246
|
+
_futimens, _futimes, _getattrlist, _getattrlistat, _getattrlistbulk,
|
|
2290
2247
|
_getaudit, _getaudit_addr, _getauid, _getdirentries, _getdirentriesattr,
|
|
2291
2248
|
_getdtablesize, _getegid, _getentropy, _geteuid, _getfh, _getfsstat,
|
|
2292
2249
|
_getfsstat64, _getgid, _getgroups, _gethostuuid, _getiopolicy_np,
|
|
@@ -2332,12 +2289,12 @@ exports:
|
|
|
2332
2289
|
_mach_init, _mach_make_memory_entry, _mach_make_memory_entry_64,
|
|
2333
2290
|
_mach_memory_entry_access_tracking, _mach_memory_entry_get_page_counts,
|
|
2334
2291
|
_mach_memory_entry_ownership, _mach_memory_entry_purgable_control,
|
|
2335
|
-
_mach_memory_info,
|
|
2336
|
-
_mach_msg, _mach_msg2_internal,
|
|
2337
|
-
_mach_msg_overwrite, _mach_msg_overwrite_trap,
|
|
2338
|
-
|
|
2339
|
-
_mach_msg_priority_qos, _mach_msg_priority_relpri,
|
|
2340
|
-
_mach_msg_send, _mach_msg_server, _mach_msg_server_importance,
|
|
2292
|
+
_mach_memory_info, _mach_memory_info_redacted, _mach_memory_object_memory_entry,
|
|
2293
|
+
_mach_memory_object_memory_entry_64, _mach_msg, _mach_msg2_internal,
|
|
2294
|
+
_mach_msg2_trap, _mach_msg_destroy, _mach_msg_overwrite, _mach_msg_overwrite_trap,
|
|
2295
|
+
_mach_msg_priority_encode, _mach_msg_priority_is_pthread_priority,
|
|
2296
|
+
_mach_msg_priority_overide_qos, _mach_msg_priority_qos, _mach_msg_priority_relpri,
|
|
2297
|
+
_mach_msg_receive, _mach_msg_send, _mach_msg_server, _mach_msg_server_importance,
|
|
2341
2298
|
_mach_msg_server_once, _mach_msg_trap, _mach_notify_dead_name,
|
|
2342
2299
|
_mach_notify_no_senders, _mach_notify_port_deleted, _mach_notify_port_destroyed,
|
|
2343
2300
|
_mach_notify_send_once, _mach_port_allocate, _mach_port_allocate_full,
|
|
@@ -2369,7 +2326,7 @@ exports:
|
|
|
2369
2326
|
_mach_vm_msync, _mach_vm_page_info, _mach_vm_page_query, _mach_vm_page_range_query,
|
|
2370
2327
|
_mach_vm_protect, _mach_vm_purgable_control, _mach_vm_range_create,
|
|
2371
2328
|
_mach_vm_read, _mach_vm_read_list, _mach_vm_read_overwrite,
|
|
2372
|
-
_mach_vm_reclaim_copied_ring_free, _mach_vm_reclaim_copied_ring_query,
|
|
2329
|
+
_mach_vm_reallocate, _mach_vm_reclaim_copied_ring_free, _mach_vm_reclaim_copied_ring_query,
|
|
2373
2330
|
_mach_vm_reclaim_get_rings_for_task, _mach_vm_reclaim_is_reusable,
|
|
2374
2331
|
_mach_vm_reclaim_query_state, _mach_vm_reclaim_ring_allocate,
|
|
2375
2332
|
_mach_vm_reclaim_ring_capacity, _mach_vm_reclaim_ring_copy,
|
|
@@ -2495,61 +2452,61 @@ exports:
|
|
|
2495
2452
|
_posix_spawnattr_set_platform_np, _posix_spawnattr_set_portlimits_ext,
|
|
2496
2453
|
_posix_spawnattr_set_ptrauth_task_port_np, _posix_spawnattr_set_qos_clamp_np,
|
|
2497
2454
|
_posix_spawnattr_set_registered_ports_np, _posix_spawnattr_set_subsystem_root_path_np,
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
_preadv, '_preadv$NOCANCEL', _proc_clear_cpulimits,
|
|
2510
|
-
_proc_clear_dirty, _proc_clear_vmpressure,
|
|
2511
|
-
|
|
2512
|
-
_proc_disable_apptype, _proc_disable_cpumon,
|
|
2513
|
-
_proc_donate_importance_boost, _proc_enable_apptype,
|
|
2514
|
-
_proc_get_dirty, _proc_get_wakemon_params,
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
_proc_trace_log, _proc_track_dirty,
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
_processor_set_statistics, _processor_set_tasks,
|
|
2537
|
-
|
|
2538
|
-
'_pselect$DARWIN_EXTSN
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
'_select$DARWIN_EXTSN
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
_semaphore_create, _semaphore_destroy,
|
|
2550
|
-
_semaphore_signal_all, _semaphore_signal_all_trap,
|
|
2551
|
-
_semaphore_signal_thread_trap, _semaphore_signal_trap,
|
|
2552
|
-
_semaphore_timedwait_signal, _semaphore_timedwait_signal_trap,
|
|
2455
|
+
_posix_spawnattr_set_telemetry_np, _posix_spawnattr_set_threadlimit_ext,
|
|
2456
|
+
_posix_spawnattr_set_uid_np, _posix_spawnattr_set_use_sec_transition_shims_np,
|
|
2457
|
+
_posix_spawnattr_setarchpref_np, _posix_spawnattr_setauditsessionport_np,
|
|
2458
|
+
_posix_spawnattr_setbinpref_np, _posix_spawnattr_setcoalition_np,
|
|
2459
|
+
_posix_spawnattr_setcpumonitor, _posix_spawnattr_setcpumonitor_default,
|
|
2460
|
+
_posix_spawnattr_setdataless_iopolicy_np, _posix_spawnattr_setexceptionports_np,
|
|
2461
|
+
_posix_spawnattr_setflags, _posix_spawnattr_setjetsam_ext,
|
|
2462
|
+
_posix_spawnattr_setmacpolicyinfo_np, _posix_spawnattr_setnosmt_np,
|
|
2463
|
+
_posix_spawnattr_setpcontrol_np, _posix_spawnattr_setpgroup,
|
|
2464
|
+
_posix_spawnattr_setprocesstype_np, _posix_spawnattr_setsigdefault,
|
|
2465
|
+
_posix_spawnattr_setsigmask, _posix_spawnattr_setspecialport_np,
|
|
2466
|
+
_pread, '_pread$NOCANCEL', _preadv, '_preadv$NOCANCEL', _proc_clear_cpulimits,
|
|
2467
|
+
_proc_clear_delayidlesleep, _proc_clear_dirty, _proc_clear_vmpressure,
|
|
2468
|
+
_proc_current_thread_schedinfo, _proc_denap_assertion_begin_with_msg,
|
|
2469
|
+
_proc_denap_assertion_complete, _proc_disable_apptype, _proc_disable_cpumon,
|
|
2470
|
+
_proc_disable_wakemon, _proc_donate_importance_boost, _proc_enable_apptype,
|
|
2471
|
+
_proc_get_cpumon_params, _proc_get_dirty, _proc_get_wakemon_params,
|
|
2472
|
+
_proc_importance_assertion_begin_with_msg, _proc_importance_assertion_complete,
|
|
2473
|
+
_proc_kmsgbuf, _proc_libversion, _proc_list_dynkqueueids,
|
|
2474
|
+
_proc_list_uptrs, _proc_listallpids, _proc_listchildpids,
|
|
2475
|
+
_proc_listcoalitions, _proc_listpgrppids, _proc_listpids,
|
|
2476
|
+
_proc_listpidspath, _proc_name, _proc_pid_rusage, _proc_piddynkqueueinfo,
|
|
2477
|
+
_proc_pidfdinfo, _proc_pidfileportinfo, _proc_pidinfo, _proc_pidoriginatorinfo,
|
|
2478
|
+
_proc_pidpath, _proc_pidpath_audittoken, _proc_regionfilename,
|
|
2479
|
+
_proc_reset_footprint_interval, _proc_resume_cpumon, _proc_rlimit_control,
|
|
2480
|
+
_proc_set_cpumon_defaults, _proc_set_cpumon_params, _proc_set_cpumon_params_fatal,
|
|
2481
|
+
_proc_set_csm, _proc_set_delayidlesleep, _proc_set_dirty,
|
|
2482
|
+
_proc_set_no_smt, _proc_set_owner_vmpressure, _proc_set_wakemon_defaults,
|
|
2483
|
+
_proc_set_wakemon_params, _proc_setcpu_percentage, _proc_setpcontrol,
|
|
2484
|
+
_proc_setthread_cpupercent, _proc_setthread_csm, _proc_setthread_no_smt,
|
|
2485
|
+
_proc_signal_delegate, _proc_signal_with_audittoken, _proc_suppress,
|
|
2486
|
+
_proc_terminate, _proc_terminate_all_rsr, _proc_terminate_delegate,
|
|
2487
|
+
_proc_terminate_with_audittoken, _proc_trace_log, _proc_track_dirty,
|
|
2488
|
+
_proc_udata_info, _proc_uuid_policy, _processor_assign, _processor_control,
|
|
2489
|
+
_processor_exit, _processor_get_assignment, _processor_info,
|
|
2490
|
+
_processor_set_create, _processor_set_default, _processor_set_destroy,
|
|
2491
|
+
_processor_set_info, _processor_set_max_priority, _processor_set_policy_control,
|
|
2492
|
+
_processor_set_policy_disable, _processor_set_policy_enable,
|
|
2493
|
+
_processor_set_stack_usage, _processor_set_statistics, _processor_set_tasks,
|
|
2494
|
+
_processor_set_tasks_with_flavor, _processor_set_threads,
|
|
2495
|
+
_processor_start, _pselect, '_pselect$DARWIN_EXTSN', '_pselect$DARWIN_EXTSN$NOCANCEL',
|
|
2496
|
+
'_pselect$NOCANCEL', _pthread_getugid_np, _pthread_setugid_np,
|
|
2497
|
+
_ptrace, _pwrite, '_pwrite$NOCANCEL', _pwritev, '_pwritev$NOCANCEL',
|
|
2498
|
+
_quota, _quotactl, _read, '_read$NOCANCEL', _readlink, _readlinkat,
|
|
2499
|
+
_readv, '_readv$NOCANCEL', _reboot, _reboot_np, _record_system_event_as_kernel,
|
|
2500
|
+
_recvfrom, '_recvfrom$NOCANCEL', _recvmsg, '_recvmsg$NOCANCEL',
|
|
2501
|
+
_recvmsg_x, _register_uexc_handler, _removexattr, _rename,
|
|
2502
|
+
_rename_ext, _renameat, _renameatx_np, _renamex_np, _revoke,
|
|
2503
|
+
_rmdir, _searchfs, _select, '_select$DARWIN_EXTSN', '_select$DARWIN_EXTSN$NOCANCEL',
|
|
2504
|
+
'_select$NOCANCEL', _sem_close, _sem_destroy, _sem_getvalue,
|
|
2505
|
+
_sem_init, _sem_open, _sem_post, _sem_trywait, _sem_unlink,
|
|
2506
|
+
_sem_wait, '_sem_wait$NOCANCEL', _semaphore_create, _semaphore_destroy,
|
|
2507
|
+
_semaphore_signal, _semaphore_signal_all, _semaphore_signal_all_trap,
|
|
2508
|
+
_semaphore_signal_thread, _semaphore_signal_thread_trap, _semaphore_signal_trap,
|
|
2509
|
+
_semaphore_timedwait, _semaphore_timedwait_signal, _semaphore_timedwait_signal_trap,
|
|
2553
2510
|
_semaphore_timedwait_trap, _semaphore_wait, _semaphore_wait_signal,
|
|
2554
2511
|
_semaphore_wait_signal_trap, _semaphore_wait_trap, _semctl,
|
|
2555
2512
|
_semget, _semop, _semsys, _sendfile, _sendmsg, '_sendmsg$NOCANCEL',
|
|
@@ -2602,10 +2559,11 @@ exports:
|
|
|
2602
2559
|
_thread_get_mach_voucher, _thread_get_register_pointer_values,
|
|
2603
2560
|
_thread_get_special_port, _thread_get_special_reply_port,
|
|
2604
2561
|
_thread_get_state, _thread_info, _thread_policy, _thread_policy_get,
|
|
2605
|
-
_thread_policy_set, _thread_resume,
|
|
2606
|
-
_thread_selfcounts, _thread_set_exception_ports,
|
|
2607
|
-
_thread_set_policy, _thread_set_special_port,
|
|
2608
|
-
|
|
2562
|
+
_thread_policy_set, _thread_resume, _thread_resume2, _thread_sample,
|
|
2563
|
+
_thread_self_trap, _thread_selfcounts, _thread_set_exception_ports,
|
|
2564
|
+
_thread_set_mach_voucher, _thread_set_policy, _thread_set_special_port,
|
|
2565
|
+
_thread_set_state, _thread_set_x86_64_compat, _thread_suspend,
|
|
2566
|
+
_thread_suspend2, _thread_swap_exception_ports, _thread_swap_mach_voucher,
|
|
2609
2567
|
_thread_switch, _thread_terminate, _thread_wire, _tracker_action,
|
|
2610
2568
|
_truncate, _umask, _undelete, _ungraftdmg, _unlink, _unlinkat,
|
|
2611
2569
|
_unmount, _usrctl, _utimensat, _utimes, _vfs_purge, _vm_allocate,
|
|
@@ -2614,7 +2572,7 @@ exports:
|
|
|
2614
2572
|
_vm_kernel_page_size, _vm_machine_attribute, _vm_map, _vm_map_page_query,
|
|
2615
2573
|
_vm_msync, _vm_page_mask, _vm_page_shift, _vm_page_size, _vm_pressure_monitor,
|
|
2616
2574
|
_vm_protect, _vm_purgable_control, _vm_read, _vm_read_list,
|
|
2617
|
-
_vm_read_overwrite, _vm_region_64, _vm_region_recurse_64,
|
|
2575
|
+
_vm_read_overwrite, _vm_reallocate, _vm_region_64, _vm_region_recurse_64,
|
|
2618
2576
|
_vm_remap, _vm_remap_new, _vm_wire, _vm_write, _voucher_mach_msg_adopt,
|
|
2619
2577
|
_voucher_mach_msg_clear, _voucher_mach_msg_revert, _voucher_mach_msg_set,
|
|
2620
2578
|
_vprintf_stderr_func, _wait4, _waitid, '_waitid$NOCANCEL',
|
|
@@ -2633,16 +2591,17 @@ exports:
|
|
|
2633
2591
|
- targets: [ arm64-macos, arm64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2634
2592
|
symbols: [ ___fstat, ___fstatat, ___fstatfs, ___getfsstat, ___lstat,
|
|
2635
2593
|
___stat, ___statfs, __current_pid, _mach_absolute_time_kernel,
|
|
2636
|
-
_mach_continuous_time_kernel
|
|
2594
|
+
_mach_continuous_time_kernel, _os_custom_x18_abi, _os_custom_x18_abi_get,
|
|
2595
|
+
_update_tpidr ]
|
|
2637
2596
|
--- !tapi-tbd
|
|
2638
2597
|
tbd-version: 4
|
|
2639
2598
|
targets: [ x86_64-macos, x86_64-maccatalyst, x86_64h-macos, x86_64h-maccatalyst,
|
|
2640
|
-
|
|
2599
|
+
arm64e-macos, arm64e-maccatalyst ]
|
|
2641
2600
|
install-name: '/usr/lib/system/libsystem_m.dylib'
|
|
2642
|
-
current-version:
|
|
2601
|
+
current-version: 3312.100.1
|
|
2643
2602
|
parent-umbrella:
|
|
2644
2603
|
- targets: [ x86_64-macos, x86_64-maccatalyst, x86_64h-macos, x86_64h-maccatalyst,
|
|
2645
|
-
|
|
2604
|
+
arm64e-macos, arm64e-maccatalyst ]
|
|
2646
2605
|
umbrella: System
|
|
2647
2606
|
exports:
|
|
2648
2607
|
- targets: [ x86_64-macos, x86_64-maccatalyst, x86_64h-macos, x86_64h-maccatalyst ]
|
|
@@ -2684,7 +2643,7 @@ exports:
|
|
|
2684
2643
|
__simd_tanpi_f8, __simd_tgamma_d4, __simd_tgamma_d8, __simd_tgamma_f16,
|
|
2685
2644
|
__simd_tgamma_f8 ]
|
|
2686
2645
|
- targets: [ x86_64-macos, x86_64-maccatalyst, x86_64h-macos, x86_64h-maccatalyst,
|
|
2687
|
-
|
|
2646
|
+
arm64e-macos, arm64e-maccatalyst ]
|
|
2688
2647
|
symbols: [ __FE_DFL_ENV, ___Libm_version, ___ceilf16, ___copysignf16,
|
|
2689
2648
|
___cos_d2, ___cos_f4, ___cospi, ___cospif, ___exp10, ___exp10f,
|
|
2690
2649
|
___fabsf16, ___fegetfltrounds, ___floorf16, ___fmaf16, ___fmaxf16,
|
|
@@ -2854,21 +2813,18 @@ exports:
|
|
|
2854
2813
|
'_tanhl$fenv_access_off', '_tanl$fenv_access_off', '_tgamma$fenv_access_off',
|
|
2855
2814
|
'_tgammaf$fenv_access_off', '_tgammal$fenv_access_off', '_trunc$fenv_access_off',
|
|
2856
2815
|
'_truncf$fenv_access_off', '_truncl$fenv_access_off' ]
|
|
2857
|
-
- targets: [
|
|
2816
|
+
- targets: [ arm64e-macos, arm64e-maccatalyst ]
|
|
2858
2817
|
symbols: [ __FE_DFL_DISABLE_DENORMS_ENV ]
|
|
2859
2818
|
--- !tapi-tbd
|
|
2860
2819
|
tbd-version: 4
|
|
2861
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
2862
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
2820
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2863
2821
|
install-name: '/usr/lib/system/libsystem_malloc.dylib'
|
|
2864
|
-
current-version:
|
|
2822
|
+
current-version: 812.100.31
|
|
2865
2823
|
parent-umbrella:
|
|
2866
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
2867
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
2824
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2868
2825
|
umbrella: System
|
|
2869
2826
|
exports:
|
|
2870
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
2871
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
2827
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2872
2828
|
symbols: [ ___mach_stack_logging_shared_memory_address, ___malloc_init,
|
|
2873
2829
|
___malloc_late_init, __malloc_fork_child, __malloc_fork_parent,
|
|
2874
2830
|
__malloc_fork_prepare, __malloc_no_asl_log, __os_cpu_number_override,
|
|
@@ -2913,16 +2869,13 @@ exports:
|
|
|
2913
2869
|
_zeroify_scalable_zone ]
|
|
2914
2870
|
--- !tapi-tbd
|
|
2915
2871
|
tbd-version: 4
|
|
2916
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
2917
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
2872
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2918
2873
|
install-name: '/usr/lib/system/libsystem_networkextension.dylib'
|
|
2919
2874
|
parent-umbrella:
|
|
2920
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
2921
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
2875
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2922
2876
|
umbrella: System
|
|
2923
2877
|
exports:
|
|
2924
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
2925
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
2878
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
2926
2879
|
symbols: [ _NEHelperCacheAddRedirectedAddress, _NEHelperCacheClearRedirectedAddresses,
|
|
2927
2880
|
_NEHelperCacheClearUUIDs, _NEHelperCacheClearUUIDsForBundleID,
|
|
2928
2881
|
_NEHelperCacheCopyAppUUIDMapping, _NEHelperCacheCopyAppUUIDMappingExtended,
|
|
@@ -3005,17 +2958,14 @@ exports:
|
|
|
3005
2958
|
_nelog_is_info_logging_enabled ]
|
|
3006
2959
|
--- !tapi-tbd
|
|
3007
2960
|
tbd-version: 4
|
|
3008
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3009
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
2961
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3010
2962
|
install-name: '/usr/lib/system/libsystem_notify.dylib'
|
|
3011
|
-
current-version:
|
|
2963
|
+
current-version: 348.100.7
|
|
3012
2964
|
parent-umbrella:
|
|
3013
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3014
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
2965
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3015
2966
|
umbrella: System
|
|
3016
2967
|
exports:
|
|
3017
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3018
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
2968
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3019
2969
|
symbols: [ __notify_fork_child, _notify_cancel, _notify_check, _notify_dump_status,
|
|
3020
2970
|
_notify_get_event, _notify_get_state, _notify_is_valid_token,
|
|
3021
2971
|
_notify_monitor_file, _notify_peek, _notify_post, _notify_register_check,
|
|
@@ -3028,7 +2978,7 @@ tbd-version: 4
|
|
|
3028
2978
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64-macos, arm64-maccatalyst,
|
|
3029
2979
|
arm64e-macos, arm64e-maccatalyst ]
|
|
3030
2980
|
install-name: '/usr/lib/system/libsystem_platform.dylib'
|
|
3031
|
-
current-version:
|
|
2981
|
+
current-version: 375.100.10
|
|
3032
2982
|
parent-umbrella:
|
|
3033
2983
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64-macos, arm64-maccatalyst,
|
|
3034
2984
|
arm64e-macos, arm64e-maccatalyst ]
|
|
@@ -3085,15 +3035,15 @@ exports:
|
|
|
3085
3035
|
_ffs, _ffsl, _ffsll, _fls, _flsl, _flsll, _getcontext, _longjmp,
|
|
3086
3036
|
_makecontext, _os_apt_msg_async_task_running_4swift, _os_apt_msg_async_task_waiting_on_4swift,
|
|
3087
3037
|
_os_lock_lock, _os_lock_trylock, _os_lock_unlock, _os_log_simple_now,
|
|
3088
|
-
_os_log_simple_type_from_asl,
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
_os_unfair_lock_lock, _os_unfair_lock_lock_no_tsd,
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
_os_unfair_lock_unlock_no_tsd, _os_unfair_recursive_lock_lock_with_options,
|
|
3038
|
+
_os_log_simple_type_from_asl, _os_script_config_storage, _os_security_config_get,
|
|
3039
|
+
_os_security_config_get_for_proc, _os_security_config_get_for_task,
|
|
3040
|
+
_os_sync_wait_on_address, _os_sync_wait_on_address_with_deadline,
|
|
3041
|
+
_os_sync_wait_on_address_with_timeout, _os_sync_wake_by_address_all,
|
|
3042
|
+
_os_sync_wake_by_address_any, _os_unfair_lock_assert_not_owner,
|
|
3043
|
+
_os_unfair_lock_assert_owner, _os_unfair_lock_lock, _os_unfair_lock_lock_no_tsd,
|
|
3044
|
+
_os_unfair_lock_lock_with_flags, _os_unfair_lock_lock_with_options,
|
|
3045
|
+
_os_unfair_lock_trylock, _os_unfair_lock_trylock_with_options,
|
|
3046
|
+
_os_unfair_lock_unlock, _os_unfair_lock_unlock_no_tsd, _os_unfair_recursive_lock_lock_with_options,
|
|
3097
3047
|
_os_unfair_recursive_lock_owned, _os_unfair_recursive_lock_trylock,
|
|
3098
3048
|
_os_unfair_recursive_lock_tryunlock4objc, _os_unfair_recursive_lock_unlock,
|
|
3099
3049
|
_os_unfair_recursive_lock_unlock_forked_child, _setcontext,
|
|
@@ -3102,13 +3052,13 @@ exports:
|
|
|
3102
3052
|
_sys_icache_invalidate, _timingsafe_enable_if_supported, _timingsafe_restore_if_supported ]
|
|
3103
3053
|
- targets: [ arm64-macos, arm64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3104
3054
|
symbols: [ ___sme_memchr, ___sme_memcpy, ___sme_memmove, ___sme_memset,
|
|
3105
|
-
__ctx_done ]
|
|
3055
|
+
__ctx_done, _os_apt_msg_async_task_stopped_4swift ]
|
|
3106
3056
|
--- !tapi-tbd
|
|
3107
3057
|
tbd-version: 4
|
|
3108
3058
|
targets: [ x86_64-macos, x86_64-maccatalyst, arm64-macos, arm64-maccatalyst,
|
|
3109
3059
|
arm64e-macos, arm64e-maccatalyst ]
|
|
3110
3060
|
install-name: '/usr/lib/system/libsystem_pthread.dylib'
|
|
3111
|
-
current-version: 539
|
|
3061
|
+
current-version: 539.100.4
|
|
3112
3062
|
parent-umbrella:
|
|
3113
3063
|
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64-macos, arm64-maccatalyst,
|
|
3114
3064
|
arm64e-macos, arm64e-maccatalyst ]
|
|
@@ -3201,17 +3151,14 @@ exports:
|
|
|
3201
3151
|
symbols: [ __pthread_mutex_enable_legacy_mode, _pthread_jit_write_protect_np ]
|
|
3202
3152
|
--- !tapi-tbd
|
|
3203
3153
|
tbd-version: 4
|
|
3204
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3205
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3154
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3206
3155
|
install-name: '/usr/lib/system/libsystem_sandbox.dylib'
|
|
3207
|
-
current-version: 2680.
|
|
3156
|
+
current-version: 2680.100.174
|
|
3208
3157
|
parent-umbrella:
|
|
3209
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3210
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3158
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3211
3159
|
umbrella: System
|
|
3212
3160
|
exports:
|
|
3213
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3214
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3161
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3215
3162
|
symbols: [ _APP_SANDBOX_IOKIT_CLIENT, _APP_SANDBOX_MACH, _APP_SANDBOX_READ,
|
|
3216
3163
|
_APP_SANDBOX_READ_WRITE, _IOS_SANDBOX_APPLICATION_GROUP, _IOS_SANDBOX_CONTAINER,
|
|
3217
3164
|
_SANDBOX_CHECK_ALLOW_APPROVAL, _SANDBOX_CHECK_CANONICAL, _SANDBOX_CHECK_NOFOLLOW,
|
|
@@ -3244,13 +3191,15 @@ exports:
|
|
|
3244
3191
|
_sandbox_check_by_audit_token, _sandbox_check_by_reference,
|
|
3245
3192
|
_sandbox_check_by_uniqueid, _sandbox_check_finder_automation_for_path,
|
|
3246
3193
|
_sandbox_check_message_filter_integer, _sandbox_check_message_filter_string,
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3194
|
+
_sandbox_check_network, _sandbox_check_process_signal_target,
|
|
3195
|
+
_sandbox_check_protected_app_container, _sandbox_check_self_signal_target,
|
|
3196
|
+
_sandbox_check_storage_class, _sandbox_check_with_attribution,
|
|
3197
|
+
_sandbox_checkattr_alloc, _sandbox_checkattr_disable_reporting,
|
|
3198
|
+
_sandbox_checkattr_free, _sandbox_consume_extension, _sandbox_consume_fs_extension,
|
|
3199
|
+
_sandbox_consume_mach_extension, _sandbox_container_path_for_audit_token,
|
|
3200
|
+
_sandbox_container_path_for_pid, _sandbox_enable_local_state_flag,
|
|
3201
|
+
_sandbox_enable_root_translation, _sandbox_enable_state_flag,
|
|
3202
|
+
_sandbox_extension_consume, _sandbox_extension_issue_file,
|
|
3254
3203
|
_sandbox_extension_issue_file_to_process, _sandbox_extension_issue_file_to_process_by_pid,
|
|
3255
3204
|
_sandbox_extension_issue_file_to_self, _sandbox_extension_issue_generic,
|
|
3256
3205
|
_sandbox_extension_issue_generic_to_process, _sandbox_extension_issue_generic_to_process_by_pid,
|
|
@@ -3282,20 +3231,20 @@ exports:
|
|
|
3282
3231
|
_sandbox_suspend, _sandbox_unregister_app_bundle, _sandbox_unregister_app_container,
|
|
3283
3232
|
_sandbox_unregister_bastion_profile, _sandbox_unregister_disk_image_backing_store,
|
|
3284
3233
|
_sandbox_unsuspend ]
|
|
3285
|
-
- targets: [ x86_64-macos,
|
|
3234
|
+
- targets: [ x86_64-macos, arm64e-macos ]
|
|
3286
3235
|
symbols: [ _SANDBOX_EXTENSION_MACL_LEARNING, _SANDBOX_EXTENSION_USER_INTENT,
|
|
3287
3236
|
_gpu_bundle_find_trusted, _gpu_bundle_is_path_trusted, _rootless_apply,
|
|
3288
3237
|
_rootless_apply_internal, _rootless_apply_relative, _rootless_manifest_free,
|
|
3289
3238
|
_rootless_manifest_parse, _rootless_preflight ]
|
|
3290
3239
|
--- !tapi-tbd
|
|
3291
3240
|
tbd-version: 4
|
|
3292
|
-
targets: [ x86_64-macos,
|
|
3241
|
+
targets: [ x86_64-macos, arm64e-macos ]
|
|
3293
3242
|
install-name: '/usr/lib/system/libsystem_sanitizers.dylib'
|
|
3294
3243
|
parent-umbrella:
|
|
3295
|
-
- targets: [ x86_64-macos,
|
|
3244
|
+
- targets: [ x86_64-macos, arm64e-macos ]
|
|
3296
3245
|
umbrella: System
|
|
3297
3246
|
exports:
|
|
3298
|
-
- targets: [ x86_64-macos,
|
|
3247
|
+
- targets: [ x86_64-macos, arm64e-macos ]
|
|
3299
3248
|
symbols: [ ___asan_abi_addr_is_in_fake_stack, ___asan_abi_address_is_poisoned,
|
|
3300
3249
|
___asan_abi_after_dynamic_init, ___asan_abi_alloca_poison,
|
|
3301
3250
|
___asan_abi_allocas_unpoison, ___asan_abi_before_dynamic_init,
|
|
@@ -3322,32 +3271,26 @@ exports:
|
|
|
3322
3271
|
_sanitizers_testonly_get_shadow_address ]
|
|
3323
3272
|
--- !tapi-tbd
|
|
3324
3273
|
tbd-version: 4
|
|
3325
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3326
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3274
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3327
3275
|
install-name: '/usr/lib/system/libsystem_secinit.dylib'
|
|
3328
|
-
current-version: 168.
|
|
3276
|
+
current-version: 168.100.7
|
|
3329
3277
|
parent-umbrella:
|
|
3330
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3331
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3278
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3332
3279
|
umbrella: System
|
|
3333
3280
|
exports:
|
|
3334
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3335
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3281
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3336
3282
|
symbols: [ __libsecinit_initializer, _libsecinit_delete_all_data_container_content_for_current_user,
|
|
3337
3283
|
_libsecinit_fileoperation_save, _libsecinit_fileoperation_set_attributes,
|
|
3338
3284
|
_libsecinit_fileoperation_symlink ]
|
|
3339
3285
|
--- !tapi-tbd
|
|
3340
3286
|
tbd-version: 4
|
|
3341
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3342
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3287
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3343
3288
|
install-name: '/usr/lib/system/libsystem_symptoms.dylib'
|
|
3344
3289
|
parent-umbrella:
|
|
3345
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3346
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3290
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3347
3291
|
umbrella: System
|
|
3348
3292
|
exports:
|
|
3349
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3350
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3293
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3351
3294
|
symbols: [ __symptoms_daemon_fallback_initial_disposition, __symptoms_daemon_fallback_subseq_disposition,
|
|
3352
3295
|
__symptoms_is_daemon_fallback_blacklisted, _symptom_framework_init,
|
|
3353
3296
|
_symptom_framework_set_version, _symptom_new, _symptom_send,
|
|
@@ -3355,17 +3298,14 @@ exports:
|
|
|
3355
3298
|
_symptom_set_qualifier ]
|
|
3356
3299
|
--- !tapi-tbd
|
|
3357
3300
|
tbd-version: 4
|
|
3358
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3359
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3301
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3360
3302
|
install-name: '/usr/lib/system/libsystem_trace.dylib'
|
|
3361
|
-
current-version:
|
|
3303
|
+
current-version: 1861.100.19
|
|
3362
3304
|
parent-umbrella:
|
|
3363
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3364
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3305
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3365
3306
|
umbrella: System
|
|
3366
3307
|
exports:
|
|
3367
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3368
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3308
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3369
3309
|
symbols: [ _RTBinIndexForType, _RTLogBufferAddResource, _RTLogBufferAllocateResource,
|
|
3370
3310
|
_RTLogBufferCheckStatus, _RTLogBufferGetHeader, _RTLogBufferGetResource,
|
|
3371
3311
|
_RTLogBufferGetResourceSize, _RTLogBufferInitialize, _RTLogBufferIterate,
|
|
@@ -3443,29 +3383,26 @@ exports:
|
|
|
3443
3383
|
objc-classes: [ OS_os_log ]
|
|
3444
3384
|
--- !tapi-tbd
|
|
3445
3385
|
tbd-version: 4
|
|
3446
|
-
targets: [ x86_64-macos,
|
|
3386
|
+
targets: [ x86_64-macos, arm64e-macos ]
|
|
3447
3387
|
install-name: '/usr/lib/system/libsystem_trial.dylib'
|
|
3448
|
-
current-version: 474.2
|
|
3388
|
+
current-version: 474.2.18
|
|
3449
3389
|
parent-umbrella:
|
|
3450
|
-
- targets: [ x86_64-macos,
|
|
3390
|
+
- targets: [ x86_64-macos, arm64e-macos ]
|
|
3451
3391
|
umbrella: System
|
|
3452
3392
|
exports:
|
|
3453
|
-
- targets: [ x86_64-macos,
|
|
3393
|
+
- targets: [ x86_64-macos, arm64e-macos ]
|
|
3454
3394
|
symbols: [ __os_trial_factor_get_bool_impl, __os_trial_factor_get_long_impl,
|
|
3455
3395
|
__os_trial_factor_has_impl ]
|
|
3456
3396
|
--- !tapi-tbd
|
|
3457
3397
|
tbd-version: 4
|
|
3458
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3459
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3398
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3460
3399
|
install-name: '/usr/lib/system/libunwind.dylib'
|
|
3461
|
-
current-version:
|
|
3400
|
+
current-version: 2100.2
|
|
3462
3401
|
parent-umbrella:
|
|
3463
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3464
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3402
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3465
3403
|
umbrella: System
|
|
3466
3404
|
exports:
|
|
3467
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3468
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3405
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3469
3406
|
symbols: [ __Unwind_Backtrace, __Unwind_DeleteException, __Unwind_FindEnclosingFunction,
|
|
3470
3407
|
__Unwind_Find_FDE, __Unwind_ForcedUnwind, __Unwind_GetCFA,
|
|
3471
3408
|
__Unwind_GetDataRelBase, __Unwind_GetGR, __Unwind_GetIP, __Unwind_GetIPInfo,
|
|
@@ -3481,21 +3418,16 @@ exports:
|
|
|
3481
3418
|
_unw_init_local, _unw_is_fpreg, _unw_is_signal_frame, _unw_iterate_dwarf_unwind_cache,
|
|
3482
3419
|
_unw_local_addr_space, _unw_regname, _unw_resume, _unw_resume_with_frames_walked,
|
|
3483
3420
|
_unw_set_fpreg, _unw_set_reg, _unw_step ]
|
|
3484
|
-
- targets: [ arm64-macos, arm64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3485
|
-
symbols: [ ___unw_is_pointer_auth_enabled ]
|
|
3486
3421
|
--- !tapi-tbd
|
|
3487
3422
|
tbd-version: 4
|
|
3488
|
-
targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3489
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3423
|
+
targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3490
3424
|
install-name: '/usr/lib/system/libxpc.dylib'
|
|
3491
|
-
current-version:
|
|
3425
|
+
current-version: 3102.100.102
|
|
3492
3426
|
parent-umbrella:
|
|
3493
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3494
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3427
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3495
3428
|
umbrella: System
|
|
3496
3429
|
exports:
|
|
3497
|
-
- targets: [ x86_64-macos, x86_64-maccatalyst,
|
|
3498
|
-
arm64e-macos, arm64e-maccatalyst ]
|
|
3430
|
+
- targets: [ x86_64-macos, x86_64-maccatalyst, arm64e-macos, arm64e-maccatalyst ]
|
|
3499
3431
|
symbols: [ _XPC_ACTIVITY_ALLOW_BATTERY, _XPC_ACTIVITY_APP_REFRESH, _XPC_ACTIVITY_CHECK_IN,
|
|
3500
3432
|
_XPC_ACTIVITY_COMMUNICATES_WITH_PAIRED_DEVICE, _XPC_ACTIVITY_CPU_INTENSIVE,
|
|
3501
3433
|
_XPC_ACTIVITY_DELAY, _XPC_ACTIVITY_DESIRED_MOTION_STATE, _XPC_ACTIVITY_DISK_INTENSIVE,
|
|
@@ -3537,10 +3469,7 @@ exports:
|
|
|
3537
3469
|
__launch_job_query_routine, __launch_job_routine, __launch_job_routine_async,
|
|
3538
3470
|
__launch_msg2, __launch_server_test_routine, __launch_service_stats_copy_4ppse_impl,
|
|
3539
3471
|
__launch_service_stats_copy_impl, __launch_trial_factors_routine,
|
|
3540
|
-
__libxpc_initializer, __spawn_via_launchd,
|
|
3541
|
-
__system_version_copy_string_plist, __system_version_copy_string_sysctl,
|
|
3542
|
-
__system_version_fallback, __system_version_parse_string,
|
|
3543
|
-
__system_version_plist_path, __vproc_get_last_exit_status,
|
|
3472
|
+
__libxpc_initializer, __spawn_via_launchd, __vproc_get_last_exit_status,
|
|
3544
3473
|
__vproc_grab_subset, __vproc_kickstart_by_label, __vproc_log,
|
|
3545
3474
|
__vproc_log_error, __vproc_logv, __vproc_pid_is_managed, __vproc_post_fork_ping,
|
|
3546
3475
|
__vproc_send_signal_by_label, __vproc_set_global_on_demand,
|
|
@@ -3623,7 +3552,8 @@ exports:
|
|
|
3623
3552
|
_launch_extension_property_path, _launch_extension_property_pid,
|
|
3624
3553
|
_launch_extension_property_version, _launch_extension_property_xpc_bundle,
|
|
3625
3554
|
_launch_get_fd, _launch_get_service_enabled, _launch_get_system_service_enabled,
|
|
3626
|
-
|
|
3555
|
+
_launch_get_user_context, _launch_job_query_get_additional_job_properties,
|
|
3556
|
+
_launch_load_jetsam_properties_path, _launch_load_mounted_jetsam_properties,
|
|
3627
3557
|
_launch_msg, _launch_path_for_user_service_4coresim, _launch_perfcheck_property_endpoint_active,
|
|
3628
3558
|
_launch_perfcheck_property_endpoint_event, _launch_perfcheck_property_endpoint_name,
|
|
3629
3559
|
_launch_perfcheck_property_endpoint_needs_activation, _launch_perfcheck_property_endpoints,
|