this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update symbolic header

Thomas A fdbb1f49 557e7e9d

+134 -42
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/collate.h
··· 1 + ../../../../../../../../src/external/libc/locale/FreeBSD/collate.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/dyld/VersionMap.h
··· 1 + ../../../../../../../../../src/external/AvailabilityVersions/generated/dyld/VersionMap.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/dyld/for_dyld_priv.inc
··· 1 + ../../../../../../../../../src/external/AvailabilityVersions/generated/dyld/for_dyld_priv.inc
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/lmessages.h
··· 1 + ../../../../../../../../src/external/libc/locale/FreeBSD/lmessages.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/lmonetary.h
··· 1 + ../../../../../../../../src/external/libc/locale/FreeBSD/lmonetary.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/lnumeric.h
··· 1 + ../../../../../../../../src/external/libc/locale/FreeBSD/lnumeric.h
+73 -10
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/mach/mach_vm.h
··· 74 74 #endif /* AUTOTEST */ 75 75 76 76 #ifndef mach_vm_MSG_COUNT 77 - #define mach_vm_MSG_COUNT 21 77 + #define mach_vm_MSG_COUNT 22 78 78 #endif /* mach_vm_MSG_COUNT */ 79 79 80 80 #include <mach/std_types.h> ··· 155 155 #endif /* mig_external */ 156 156 kern_return_t mach_vm_read 157 157 ( 158 - vm_map_t target_task, 158 + vm_map_read_t target_task, 159 159 mach_vm_address_t address, 160 160 mach_vm_size_t size, 161 161 vm_offset_t *data, ··· 170 170 #endif /* mig_external */ 171 171 kern_return_t mach_vm_read_list 172 172 ( 173 - vm_map_t target_task, 173 + vm_map_read_t target_task, 174 174 mach_vm_read_entry_t data_list, 175 175 natural_t count 176 176 ); ··· 211 211 #endif /* mig_external */ 212 212 kern_return_t mach_vm_read_overwrite 213 213 ( 214 - vm_map_t target_task, 214 + vm_map_read_t target_task, 215 215 mach_vm_address_t address, 216 216 mach_vm_size_t size, 217 217 mach_vm_address_t data, ··· 311 311 #endif /* mig_external */ 312 312 kern_return_t mach_vm_page_query 313 313 ( 314 - vm_map_t target_map, 314 + vm_map_read_t target_map, 315 315 mach_vm_offset_t offset, 316 316 integer_t *disposition, 317 317 integer_t *ref_count ··· 325 325 #endif /* mig_external */ 326 326 kern_return_t mach_vm_region_recurse 327 327 ( 328 - vm_map_t target_task, 328 + vm_map_read_t target_task, 329 329 mach_vm_address_t *address, 330 330 mach_vm_size_t *size, 331 331 natural_t *nesting_depth, ··· 341 341 #endif /* mig_external */ 342 342 kern_return_t mach_vm_region 343 343 ( 344 - vm_map_t target_task, 344 + vm_map_read_t target_task, 345 345 mach_vm_address_t *address, 346 346 mach_vm_size_t *size, 347 347 vm_region_flavor_t flavor, ··· 388 388 #endif /* mig_external */ 389 389 kern_return_t mach_vm_page_info 390 390 ( 391 - vm_map_t target_task, 391 + vm_map_read_t target_task, 392 392 mach_vm_address_t address, 393 393 vm_page_info_flavor_t flavor, 394 394 vm_page_info_t info, ··· 403 403 #endif /* mig_external */ 404 404 kern_return_t mach_vm_page_range_query 405 405 ( 406 - vm_map_t target_map, 406 + vm_map_read_t target_map, 407 407 mach_vm_offset_t address, 408 408 mach_vm_size_t size, 409 409 mach_vm_address_t dispositions, 410 410 mach_vm_size_t *dispositions_count 411 411 ); 412 412 413 + /* Routine mach_vm_remap_new */ 414 + #ifdef mig_external 415 + mig_external 416 + #else 417 + extern 418 + #endif /* mig_external */ 419 + kern_return_t mach_vm_remap_new 420 + ( 421 + vm_map_t target_task, 422 + mach_vm_address_t *target_address, 423 + mach_vm_size_t size, 424 + mach_vm_offset_t mask, 425 + int flags, 426 + vm_map_read_t src_task, 427 + mach_vm_address_t src_address, 428 + boolean_t copy, 429 + vm_prot_t *cur_protection, 430 + vm_prot_t *max_protection, 431 + vm_inherit_t inheritance 432 + ); 433 + 413 434 __END_DECLS 414 435 415 436 /********************** Caution **************************/ ··· 744 765 #ifdef __MigPackStructs 745 766 #pragma pack(pop) 746 767 #endif 768 + 769 + #ifdef __MigPackStructs 770 + #pragma pack(push, 4) 771 + #endif 772 + typedef struct { 773 + mach_msg_header_t Head; 774 + /* start of the kernel processed data */ 775 + mach_msg_body_t msgh_body; 776 + mach_msg_port_descriptor_t src_task; 777 + /* end of the kernel processed data */ 778 + NDR_record_t NDR; 779 + mach_vm_address_t target_address; 780 + mach_vm_size_t size; 781 + mach_vm_offset_t mask; 782 + int flags; 783 + mach_vm_address_t src_address; 784 + boolean_t copy; 785 + vm_prot_t cur_protection; 786 + vm_prot_t max_protection; 787 + vm_inherit_t inheritance; 788 + } __Request__mach_vm_remap_new_t __attribute__((unused)); 789 + #ifdef __MigPackStructs 790 + #pragma pack(pop) 791 + #endif 747 792 #endif /* !__Request__mach_vm_subsystem__defined */ 748 793 749 794 /* union of all requests */ ··· 772 817 __Request__mach_vm_purgable_control_t Request_mach_vm_purgable_control; 773 818 __Request__mach_vm_page_info_t Request_mach_vm_page_info; 774 819 __Request__mach_vm_page_range_query_t Request_mach_vm_page_range_query; 820 + __Request__mach_vm_remap_new_t Request_mach_vm_remap_new; 775 821 }; 776 822 #endif /* !__RequestUnion__mach_vm_subsystem__defined */ 777 823 /* typedefs for all replies */ ··· 1064 1110 #ifdef __MigPackStructs 1065 1111 #pragma pack(pop) 1066 1112 #endif 1113 + 1114 + #ifdef __MigPackStructs 1115 + #pragma pack(push, 4) 1116 + #endif 1117 + typedef struct { 1118 + mach_msg_header_t Head; 1119 + NDR_record_t NDR; 1120 + kern_return_t RetCode; 1121 + mach_vm_address_t target_address; 1122 + vm_prot_t cur_protection; 1123 + vm_prot_t max_protection; 1124 + } __Reply__mach_vm_remap_new_t __attribute__((unused)); 1125 + #ifdef __MigPackStructs 1126 + #pragma pack(pop) 1127 + #endif 1067 1128 #endif /* !__Reply__mach_vm_subsystem__defined */ 1068 1129 1069 1130 /* union of all replies */ ··· 1092 1153 __Reply__mach_vm_purgable_control_t Reply_mach_vm_purgable_control; 1093 1154 __Reply__mach_vm_page_info_t Reply_mach_vm_page_info; 1094 1155 __Reply__mach_vm_page_range_query_t Reply_mach_vm_page_range_query; 1156 + __Reply__mach_vm_remap_new_t Reply_mach_vm_remap_new; 1095 1157 }; 1096 1158 #endif /* !__RequestUnion__mach_vm_subsystem__defined */ 1097 1159 ··· 1117 1179 { "_mach_make_memory_entry", 4817 },\ 1118 1180 { "mach_vm_purgable_control", 4818 },\ 1119 1181 { "mach_vm_page_info", 4819 },\ 1120 - { "mach_vm_page_range_query", 4820 } 1182 + { "mach_vm_page_range_query", 4820 },\ 1183 + { "mach_vm_remap_new", 4821 } 1121 1184 #endif 1122 1185 1123 1186 #ifdef __AfterMigUserHeader
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/atomic.h
··· 1 + ../../../../../../../../../src/external/lkm/libkern/os/atomic.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/atomic_private.h
··· 1 + ../../../../../../../../../src/external/lkm/libkern/os/atomic_private.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/atomic_private_arch.h
··· 1 + ../../../../../../../../../src/external/lkm/libkern/os/atomic_private_arch.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/atomic_private_impl.h
··· 1 + ../../../../../../../../../src/external/lkm/libkern/os/atomic_private_impl.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/base.h
··· 1 - ../../../../../../../../../src/external/libplatform/include/os/base.h 1 + ../../../../../../../../../src/external/lkm/libkern/os/base.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/base_private.h
··· 1 - ../../../../../../../../../src/external/libplatform/private/os/base_private.h 1 + ../../../../../../../../../src/external/lkm/libkern/os/base_private.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/boot_mode_private.h
··· 1 + ../../../../../../../../../src/external/libc/os/boot_mode_private.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/clock.h
··· 1 + ../../../../../../../../../src/external/libdispatch/os/clock.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/crashlog_private.h
··· 1 + ../../../../../../../../../src/external/libplatform/private/os/crashlog_private.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/feature_private.h
··· 4 4 #define _OS_FEATURE_PRIVATE_H 5 5 6 6 #define os_feature_enabled(framework, feature) (0) 7 + #define os_feature_enabled_simple(framework, feature, boolean) (0) 7 8 8 9 #endif // _OS_FEATURE_PRIVATE_H
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/trace_private.h
··· 1 + ../../../../../../../../../src/external/libtrace/include/os/trace_private.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/workgroup.h
··· 1 + ../../../../../../../../../src/external/libdispatch/os/workgroup.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/workgroup_base.h
··· 1 + ../../../../../../../../../src/external/libdispatch/os/workgroup_base.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/workgroup_interval.h
··· 1 + ../../../../../../../../../src/external/libdispatch/os/workgroup_interval.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/workgroup_object.h
··· 1 + ../../../../../../../../../src/external/libdispatch/os/workgroup_object.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/os/workgroup_parallel.h
··· 1 + ../../../../../../../../../src/external/libdispatch/os/workgroup_parallel.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/private.h
··· 1 + ../../../../../../../../src/external/libpthread/private/pthread/private.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/dependency_private.h
··· 1 - ../../../../../../../../../src/external/libpthread/private/dependency_private.h 1 + ../../../../../../../../../src/external/libpthread/private/pthread/dependency_private.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/introspection.h
··· 1 - ../../../../../../../../../src/external/libpthread/pthread/introspection.h 1 + ../../../../../../../../../src/external/libpthread/include/pthread/introspection.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/introspection_private.h
··· 1 - ../../../../../../../../../src/external/libpthread/private/introspection_private.h 1 + ../../../../../../../../../src/external/libpthread/private/pthread/introspection_private.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/posix_sched.h
··· 1 - ../../../../../../../../../src/external/libpthread/private/posix_sched.h 1 + ../../../../../../../../../src/external/libpthread/private/pthread/posix_sched.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/private.h
··· 1 - ../../../../../../../../../src/external/libpthread/private/private.h 1 + ../../../../../../../../../src/external/libpthread/private/pthread/private.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/pthread.h
··· 1 - ../../../../../../../../../src/external/libpthread/pthread/pthread.h 1 + ../../../../../../../../../src/external/libpthread/include/pthread/pthread.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/pthread_impl.h
··· 1 - ../../../../../../../../../src/external/libpthread/pthread/pthread_impl.h 1 + ../../../../../../../../../src/external/libpthread/include/pthread/pthread_impl.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/pthread_spis.h
··· 1 - ../../../../../../../../../src/external/libpthread/pthread/pthread_spis.h 1 + ../../../../../../../../../src/external/libpthread/include/pthread/pthread_spis.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/qos.h
··· 1 - ../../../../../../../../../src/external/libpthread/pthread/qos.h 1 + ../../../../../../../../../src/external/libpthread/include/pthread/qos.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/qos_private.h
··· 1 - ../../../../../../../../../src/external/libpthread/private/qos_private.h 1 + ../../../../../../../../../src/external/libpthread/private/pthread/qos_private.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/sched.h
··· 1 - ../../../../../../../../../src/external/libpthread/pthread/sched.h 1 + ../../../../../../../../../src/external/libpthread/include/pthread/sched.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/spawn.h
··· 1 - ../../../../../../../../../src/external/libpthread/pthread/spawn.h 1 + ../../../../../../../../../src/external/libpthread/include/pthread/spawn.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/spinlock_private.h
··· 1 - ../../../../../../../../../src/external/libpthread/private/spinlock_private.h 1 + ../../../../../../../../../src/external/libpthread/private/pthread/spinlock_private.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/stack_np.h
··· 1 - ../../../../../../../../../src/external/libpthread/pthread/stack_np.h 1 + ../../../../../../../../../src/external/libpthread/include/pthread/stack_np.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/tsd_private.h
··· 1 - ../../../../../../../../../src/external/libpthread/private/tsd_private.h 1 + ../../../../../../../../../src/external/libpthread/private/pthread/tsd_private.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/workqueue_private.h
··· 1 - ../../../../../../../../../src/external/libpthread/private/workqueue_private.h 1 + ../../../../../../../../../src/external/libpthread/private/pthread/workqueue_private.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread_machdep.h
··· 1 - ../../../../../../../../src/external/libpthread/private/private.h 1 + ../../../../../../../../src/external/libpthread/private/pthread/private.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/ptrauth.h
··· 1 + ../../../../../../../../src/external/lkm/EXTERNAL_HEADERS/ptrauth.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/setlocale.h
··· 1 + ../../../../../../../../src/external/libc/locale/FreeBSD/setlocale.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/stdatomic.h
··· 1 + ../../../../../../../../src/external/lkm/EXTERNAL_HEADERS/stdatomic.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/subsystem.h
··· 1 + ../../../../../../../../src/external/libc/darwin/subsystem.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_attr_t.h
··· 1 - ../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_attr_t.h 1 + ../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_attr_t.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_cond_t.h
··· 1 - ../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_cond_t.h 1 + ../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_cond_t.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h
··· 1 - ../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_condattr_t.h 1 + ../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_condattr_t.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_key_t.h
··· 1 - ../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_key_t.h 1 + ../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_key_t.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h
··· 1 - ../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_mutex_t.h 1 + ../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_mutex_t.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h
··· 1 - ../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_mutexattr_t.h 1 + ../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_mutexattr_t.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_once_t.h
··· 1 - ../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_once_t.h 1 + ../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_once_t.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h
··· 1 - ../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_rwlock_t.h 1 + ../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_rwlock_t.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h
··· 1 - ../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_rwlockattr_t.h 1 + ../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_rwlockattr_t.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_t.h
··· 1 - ../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_t.h 1 + ../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_t.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/_pthread/_pthread_types.h
··· 1 - ../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_types.h 1 + ../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_types.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/qos.h
··· 1 - ../../../../../../../../../src/external/libpthread/sys/qos.h 1 + ../../../../../../../../../src/external/libpthread/include/sys/qos.h
+1 -1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/qos_private.h
··· 1 - ../../../../../../../../../src/external/libpthread/sys/qos_private.h 1 + ../../../../../../../../../src/external/libpthread/private/sys/qos_private.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/vsock.h
··· 1 + ../../../../../../../../../src/external/lkm/bsd/sys/vsock.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/timelocal.h
··· 1 + ../../../../../../../../src/external/libc/stdtime/FreeBSD/timelocal.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/xlocale_private.h
··· 1 + ../../../../../../../../src/external/libc/locale/xlocale_private.h
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include/dyld/for_dyld_priv.inc
··· 1 + ../../../../usr/include/dyld/for_dyld_priv.inc