mirror of
https://github.com/darlinghq/darling.git
synced 2024-11-23 12:19:43 +00:00
Update symbolic header
This commit is contained in:
parent
557e7e9dec
commit
fdbb1f49a8
@ -0,0 +1 @@
|
||||
../../../../../../../../src/external/libc/locale/FreeBSD/collate.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/AvailabilityVersions/generated/dyld/VersionMap.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/AvailabilityVersions/generated/dyld/for_dyld_priv.inc
|
@ -0,0 +1 @@
|
||||
../../../../../../../../src/external/libc/locale/FreeBSD/lmessages.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../src/external/libc/locale/FreeBSD/lmonetary.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../src/external/libc/locale/FreeBSD/lnumeric.h
|
@ -74,7 +74,7 @@ typedef function_table_entry *function_table_t;
|
||||
#endif /* AUTOTEST */
|
||||
|
||||
#ifndef mach_vm_MSG_COUNT
|
||||
#define mach_vm_MSG_COUNT 21
|
||||
#define mach_vm_MSG_COUNT 22
|
||||
#endif /* mach_vm_MSG_COUNT */
|
||||
|
||||
#include <mach/std_types.h>
|
||||
@ -155,7 +155,7 @@ extern
|
||||
#endif /* mig_external */
|
||||
kern_return_t mach_vm_read
|
||||
(
|
||||
vm_map_t target_task,
|
||||
vm_map_read_t target_task,
|
||||
mach_vm_address_t address,
|
||||
mach_vm_size_t size,
|
||||
vm_offset_t *data,
|
||||
@ -170,7 +170,7 @@ extern
|
||||
#endif /* mig_external */
|
||||
kern_return_t mach_vm_read_list
|
||||
(
|
||||
vm_map_t target_task,
|
||||
vm_map_read_t target_task,
|
||||
mach_vm_read_entry_t data_list,
|
||||
natural_t count
|
||||
);
|
||||
@ -211,7 +211,7 @@ extern
|
||||
#endif /* mig_external */
|
||||
kern_return_t mach_vm_read_overwrite
|
||||
(
|
||||
vm_map_t target_task,
|
||||
vm_map_read_t target_task,
|
||||
mach_vm_address_t address,
|
||||
mach_vm_size_t size,
|
||||
mach_vm_address_t data,
|
||||
@ -311,7 +311,7 @@ extern
|
||||
#endif /* mig_external */
|
||||
kern_return_t mach_vm_page_query
|
||||
(
|
||||
vm_map_t target_map,
|
||||
vm_map_read_t target_map,
|
||||
mach_vm_offset_t offset,
|
||||
integer_t *disposition,
|
||||
integer_t *ref_count
|
||||
@ -325,7 +325,7 @@ extern
|
||||
#endif /* mig_external */
|
||||
kern_return_t mach_vm_region_recurse
|
||||
(
|
||||
vm_map_t target_task,
|
||||
vm_map_read_t target_task,
|
||||
mach_vm_address_t *address,
|
||||
mach_vm_size_t *size,
|
||||
natural_t *nesting_depth,
|
||||
@ -341,7 +341,7 @@ extern
|
||||
#endif /* mig_external */
|
||||
kern_return_t mach_vm_region
|
||||
(
|
||||
vm_map_t target_task,
|
||||
vm_map_read_t target_task,
|
||||
mach_vm_address_t *address,
|
||||
mach_vm_size_t *size,
|
||||
vm_region_flavor_t flavor,
|
||||
@ -388,7 +388,7 @@ extern
|
||||
#endif /* mig_external */
|
||||
kern_return_t mach_vm_page_info
|
||||
(
|
||||
vm_map_t target_task,
|
||||
vm_map_read_t target_task,
|
||||
mach_vm_address_t address,
|
||||
vm_page_info_flavor_t flavor,
|
||||
vm_page_info_t info,
|
||||
@ -403,13 +403,34 @@ extern
|
||||
#endif /* mig_external */
|
||||
kern_return_t mach_vm_page_range_query
|
||||
(
|
||||
vm_map_t target_map,
|
||||
vm_map_read_t target_map,
|
||||
mach_vm_offset_t address,
|
||||
mach_vm_size_t size,
|
||||
mach_vm_address_t dispositions,
|
||||
mach_vm_size_t *dispositions_count
|
||||
);
|
||||
|
||||
/* Routine mach_vm_remap_new */
|
||||
#ifdef mig_external
|
||||
mig_external
|
||||
#else
|
||||
extern
|
||||
#endif /* mig_external */
|
||||
kern_return_t mach_vm_remap_new
|
||||
(
|
||||
vm_map_t target_task,
|
||||
mach_vm_address_t *target_address,
|
||||
mach_vm_size_t size,
|
||||
mach_vm_offset_t mask,
|
||||
int flags,
|
||||
vm_map_read_t src_task,
|
||||
mach_vm_address_t src_address,
|
||||
boolean_t copy,
|
||||
vm_prot_t *cur_protection,
|
||||
vm_prot_t *max_protection,
|
||||
vm_inherit_t inheritance
|
||||
);
|
||||
|
||||
__END_DECLS
|
||||
|
||||
/********************** Caution **************************/
|
||||
@ -744,6 +765,30 @@ __END_DECLS
|
||||
#ifdef __MigPackStructs
|
||||
#pragma pack(pop)
|
||||
#endif
|
||||
|
||||
#ifdef __MigPackStructs
|
||||
#pragma pack(push, 4)
|
||||
#endif
|
||||
typedef struct {
|
||||
mach_msg_header_t Head;
|
||||
/* start of the kernel processed data */
|
||||
mach_msg_body_t msgh_body;
|
||||
mach_msg_port_descriptor_t src_task;
|
||||
/* end of the kernel processed data */
|
||||
NDR_record_t NDR;
|
||||
mach_vm_address_t target_address;
|
||||
mach_vm_size_t size;
|
||||
mach_vm_offset_t mask;
|
||||
int flags;
|
||||
mach_vm_address_t src_address;
|
||||
boolean_t copy;
|
||||
vm_prot_t cur_protection;
|
||||
vm_prot_t max_protection;
|
||||
vm_inherit_t inheritance;
|
||||
} __Request__mach_vm_remap_new_t __attribute__((unused));
|
||||
#ifdef __MigPackStructs
|
||||
#pragma pack(pop)
|
||||
#endif
|
||||
#endif /* !__Request__mach_vm_subsystem__defined */
|
||||
|
||||
/* union of all requests */
|
||||
@ -772,6 +817,7 @@ union __RequestUnion__mach_vm_subsystem {
|
||||
__Request__mach_vm_purgable_control_t Request_mach_vm_purgable_control;
|
||||
__Request__mach_vm_page_info_t Request_mach_vm_page_info;
|
||||
__Request__mach_vm_page_range_query_t Request_mach_vm_page_range_query;
|
||||
__Request__mach_vm_remap_new_t Request_mach_vm_remap_new;
|
||||
};
|
||||
#endif /* !__RequestUnion__mach_vm_subsystem__defined */
|
||||
/* typedefs for all replies */
|
||||
@ -1064,6 +1110,21 @@ union __RequestUnion__mach_vm_subsystem {
|
||||
#ifdef __MigPackStructs
|
||||
#pragma pack(pop)
|
||||
#endif
|
||||
|
||||
#ifdef __MigPackStructs
|
||||
#pragma pack(push, 4)
|
||||
#endif
|
||||
typedef struct {
|
||||
mach_msg_header_t Head;
|
||||
NDR_record_t NDR;
|
||||
kern_return_t RetCode;
|
||||
mach_vm_address_t target_address;
|
||||
vm_prot_t cur_protection;
|
||||
vm_prot_t max_protection;
|
||||
} __Reply__mach_vm_remap_new_t __attribute__((unused));
|
||||
#ifdef __MigPackStructs
|
||||
#pragma pack(pop)
|
||||
#endif
|
||||
#endif /* !__Reply__mach_vm_subsystem__defined */
|
||||
|
||||
/* union of all replies */
|
||||
@ -1092,6 +1153,7 @@ union __ReplyUnion__mach_vm_subsystem {
|
||||
__Reply__mach_vm_purgable_control_t Reply_mach_vm_purgable_control;
|
||||
__Reply__mach_vm_page_info_t Reply_mach_vm_page_info;
|
||||
__Reply__mach_vm_page_range_query_t Reply_mach_vm_page_range_query;
|
||||
__Reply__mach_vm_remap_new_t Reply_mach_vm_remap_new;
|
||||
};
|
||||
#endif /* !__RequestUnion__mach_vm_subsystem__defined */
|
||||
|
||||
@ -1117,7 +1179,8 @@ union __ReplyUnion__mach_vm_subsystem {
|
||||
{ "_mach_make_memory_entry", 4817 },\
|
||||
{ "mach_vm_purgable_control", 4818 },\
|
||||
{ "mach_vm_page_info", 4819 },\
|
||||
{ "mach_vm_page_range_query", 4820 }
|
||||
{ "mach_vm_page_range_query", 4820 },\
|
||||
{ "mach_vm_remap_new", 4821 }
|
||||
#endif
|
||||
|
||||
#ifdef __AfterMigUserHeader
|
||||
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/lkm/libkern/os/atomic.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/lkm/libkern/os/atomic_private.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/lkm/libkern/os/atomic_private_arch.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/lkm/libkern/os/atomic_private_impl.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libplatform/include/os/base.h
|
||||
../../../../../../../../../src/external/lkm/libkern/os/base.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libplatform/private/os/base_private.h
|
||||
../../../../../../../../../src/external/lkm/libkern/os/base_private.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/libc/os/boot_mode_private.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/libdispatch/os/clock.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/libplatform/private/os/crashlog_private.h
|
@ -4,5 +4,6 @@
|
||||
#define _OS_FEATURE_PRIVATE_H
|
||||
|
||||
#define os_feature_enabled(framework, feature) (0)
|
||||
#define os_feature_enabled_simple(framework, feature, boolean) (0)
|
||||
|
||||
#endif // _OS_FEATURE_PRIVATE_H
|
||||
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/libtrace/include/os/trace_private.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/libdispatch/os/workgroup.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/libdispatch/os/workgroup_base.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/libdispatch/os/workgroup_interval.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/libdispatch/os/workgroup_object.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/libdispatch/os/workgroup_parallel.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../src/external/libpthread/private/pthread/private.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/private/dependency_private.h
|
||||
../../../../../../../../../src/external/libpthread/private/pthread/dependency_private.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/pthread/introspection.h
|
||||
../../../../../../../../../src/external/libpthread/include/pthread/introspection.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/private/introspection_private.h
|
||||
../../../../../../../../../src/external/libpthread/private/pthread/introspection_private.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/private/posix_sched.h
|
||||
../../../../../../../../../src/external/libpthread/private/pthread/posix_sched.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/private/private.h
|
||||
../../../../../../../../../src/external/libpthread/private/pthread/private.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/pthread/pthread.h
|
||||
../../../../../../../../../src/external/libpthread/include/pthread/pthread.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/pthread/pthread_impl.h
|
||||
../../../../../../../../../src/external/libpthread/include/pthread/pthread_impl.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/pthread/pthread_spis.h
|
||||
../../../../../../../../../src/external/libpthread/include/pthread/pthread_spis.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/pthread/qos.h
|
||||
../../../../../../../../../src/external/libpthread/include/pthread/qos.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/private/qos_private.h
|
||||
../../../../../../../../../src/external/libpthread/private/pthread/qos_private.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/pthread/sched.h
|
||||
../../../../../../../../../src/external/libpthread/include/pthread/sched.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/pthread/spawn.h
|
||||
../../../../../../../../../src/external/libpthread/include/pthread/spawn.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/private/spinlock_private.h
|
||||
../../../../../../../../../src/external/libpthread/private/pthread/spinlock_private.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/pthread/stack_np.h
|
||||
../../../../../../../../../src/external/libpthread/include/pthread/stack_np.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/private/tsd_private.h
|
||||
../../../../../../../../../src/external/libpthread/private/pthread/tsd_private.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/private/workqueue_private.h
|
||||
../../../../../../../../../src/external/libpthread/private/pthread/workqueue_private.h
|
@ -1 +1 @@
|
||||
../../../../../../../../src/external/libpthread/private/private.h
|
||||
../../../../../../../../src/external/libpthread/private/pthread/private.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../src/external/lkm/EXTERNAL_HEADERS/ptrauth.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../src/external/libc/locale/FreeBSD/setlocale.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../src/external/lkm/EXTERNAL_HEADERS/stdatomic.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../src/external/libc/darwin/subsystem.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_attr_t.h
|
||||
../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_attr_t.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_cond_t.h
|
||||
../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_cond_t.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_condattr_t.h
|
||||
../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_condattr_t.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_key_t.h
|
||||
../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_key_t.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_mutex_t.h
|
||||
../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_mutex_t.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_mutexattr_t.h
|
||||
../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_mutexattr_t.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_once_t.h
|
||||
../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_once_t.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_rwlock_t.h
|
||||
../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_rwlock_t.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_rwlockattr_t.h
|
||||
../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_rwlockattr_t.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_t.h
|
||||
../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_t.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../../src/external/libpthread/sys/_pthread/_pthread_types.h
|
||||
../../../../../../../../../../src/external/libpthread/include/sys/_pthread/_pthread_types.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/sys/qos.h
|
||||
../../../../../../../../../src/external/libpthread/include/sys/qos.h
|
@ -1 +1 @@
|
||||
../../../../../../../../../src/external/libpthread/sys/qos_private.h
|
||||
../../../../../../../../../src/external/libpthread/private/sys/qos_private.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../../src/external/lkm/bsd/sys/vsock.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../src/external/libc/stdtime/FreeBSD/timelocal.h
|
@ -0,0 +1 @@
|
||||
../../../../../../../../src/external/libc/locale/xlocale_private.h
|
@ -0,0 +1 @@
|
||||
../../../../usr/include/dyld/for_dyld_priv.inc
|
Loading…
Reference in New Issue
Block a user