From 10dba534384a4d0d4d4608e019d0b04a9a81958b Mon Sep 17 00:00:00 2001 From: Apple Date: Sat, 5 Feb 2005 05:19:26 +0000 Subject: [PATCH] Libsystem-88.tar.gz --- CommPageSymbols.st | 2 +- GNUmakefile | 26 +- Info.plist | 2 +- Makefile | 14 +- Makefile.postamble | 60 +- Makefile.preamble | 21 +- System.order | 4937 +++++++++++--------------------------------- SystemMath.s | 8 +- spinlock_stub.s | 5 +- spinlocktry_stub.s | 5 +- spinunlock_stub.s | 5 +- 11 files changed, 1300 insertions(+), 3785 deletions(-) diff --git a/CommPageSymbols.st b/CommPageSymbols.st index c89359b..0215740 100644 --- a/CommPageSymbols.st +++ b/CommPageSymbols.st @@ -31,4 +31,4 @@ #define __APPLE_API_PRIVATE #define __COMM_PAGE_SYMBOLS -#include "cpu_capabilities.h" +#include "machine/cpu_capabilities.h" diff --git a/GNUmakefile b/GNUmakefile index b232b02..b21054b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -12,33 +12,43 @@ no_target: ##--------------------------------------------------------------------- # For each arch, we setup the independent OBJROOT and DSTROOT, and adjust -# the other flags. After all the archs are built, we ditto over one on +# the other flags. After all the archs are built, we copy over one on # time (for the non-dylib files), and then call lipo to create fat files # for the three dylibs. ##--------------------------------------------------------------------- -ALLARCHS = hppa i386 m68k ppc sparc +ALLARCHS = hppa i386 m68k ppc ppc64 sparc NARCHS = $(words $(RC_ARCHS)) USRLIB = /usr/lib install: $(RC_ARCHS) - ditto $(OBJROOT)/$(word 1,$(RC_ARCHS))/dstroot $(DSTROOT) ifneq "$(NARCHS)" "1" + rsync -aH $(OBJROOT)/$(word 1,$(RC_ARCHS))/dstroot/ $(DSTROOT) + rsync -aH $(OBJROOT)/$(word 1,$(RC_ARCHS))/symroot/ $(SYMROOT) @for i in libSystem.B.dylib libSystem.B_debug.dylib libSystem.B_profile.dylib; do \ - echo rm -f $(DSTROOT)$(USRLIB)/$$i; \ - rm -f $(DSTROOT)$(USRLIB)/$$i; \ - echo lipo -create -o $(DSTROOT)$(USRLIB)/$$i $(foreach ARCH,$(RC_ARCHS),$(OBJROOT)/$(ARCH)/dstroot$(USRLIB)/$$i); \ - lipo -create -o $(DSTROOT)$(USRLIB)/$$i $(foreach ARCH,$(RC_ARCHS),$(OBJROOT)/$(ARCH)/dstroot$(USRLIB)/$$i); \ + echo rm -f $(DSTROOT)$(USRLIB)/$$i && \ + rm -f $(DSTROOT)$(USRLIB)/$$i && \ + echo lipo -create -o $(DSTROOT)$(USRLIB)/$$i $(foreach ARCH,$(RC_ARCHS),$(OBJROOT)/$(ARCH)/dstroot$(USRLIB)/$$i) && \ + lipo -create -o $(DSTROOT)$(USRLIB)/$$i $(foreach ARCH,$(RC_ARCHS),$(OBJROOT)/$(ARCH)/dstroot$(USRLIB)/$$i) && \ + echo rm -f $(SYMROOT)/$$i && \ + rm -f $(SYMROOT)/$$i && \ + echo lipo -create -o $(SYMROOT)/$$i $(foreach ARCH,$(RC_ARCHS),$(OBJROOT)/$(ARCH)/symroot/$$i) && \ + lipo -create -o $(SYMROOT)/$$i $(foreach ARCH,$(RC_ARCHS),$(OBJROOT)/$(ARCH)/symroot/$$i); \ done endif $(ALLARCHS): - mkdir -p $(OBJROOT)/$@/objroot $(OBJROOT)/$@/dstroot +ifneq "$(NARCHS)" "1" + mkdir -p $(OBJROOT)/$@/objroot $(OBJROOT)/$@/dstroot $(OBJROOT)/$@/symroot $(MAKE) -f Makefile install \ OBJROOT='$(OBJROOT)/$@/objroot' \ DSTROOT='$(OBJROOT)/$@/dstroot' \ + SYMROOT='$(OBJROOT)/$@/symroot' \ RC_CFLAGS='-arch $@ $(RC_NONARCH_CFLAGS)' \ RC_ARCHS='$@' \ RC_$@=YES $(foreach ARCH,$(filter-out $@,$(ALLARCHS)),RC_$(ARCH)=) +else # NARCHS == 1 + $(MAKE) -f Makefile install +endif # NARCHS != 1 .DEFAULT: @$(MAKE) -f Makefile $@ diff --git a/Info.plist b/Info.plist index 71f59ad..4c9c6b1 100644 --- a/Info.plist +++ b/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 7.2 + 8.0 CFBundleSignature ???? CarbonLazyValues diff --git a/Makefile b/Makefile index 460558a..9e4b0df 100644 --- a/Makefile +++ b/Makefile @@ -13,12 +13,11 @@ PROJECTVERSION = 2.8 PROJECT_TYPE = Library OTHERLINKED = SystemMath.s spinlock_stub.s spinlocktry_stub.s spinunlock_stub.s +OTHERLINKEDOFILES = SystemMath.o OTHERSRCS = GNUmakefile Makefile.preamble Makefile Makefile.postamble \ System.order Info.plist CommPageSymbols.st -OTHERLINKEDOFILES = SystemMath.o - MAKEFILEDIR = $(MAKEFILEPATH)/pb_makefiles CURRENTLY_ACTIVE_VERSION = YES DEPLOY_WITH_VERSION_NAME = B @@ -27,10 +26,13 @@ MAKEFILE = library.make NEXTSTEP_INSTALLDIR = $(USRLIBDIR) WINDOWS_INSTALLDIR = /Library/Frameworks PDO_UNIX_INSTALLDIR = /Library/Frameworks -LIBSYSTEM_LIBS = -lc -ldyld -linfo -lkvm -lm -lmacho\ - -lnotify -lstreams -lunc -lkeymgr -lpoll -ldl -#DEBUG_LIBS = $(LIBS) -#PROF_LIBS = $(LIBS) +LIBS = -lc -lcommonCrypto -ldyldapis -linfo -lm -lmacho\ + -lnotify -lunc -lkeymgr +ifneq ($(RC_ARCHS),ppc64) +LIBS += -lstreams -lkvm -llaunch +endif +DEBUG_LIBS = $(LIBS) +PROF_LIBS = $(LIBS) ifdef ALTUSRLOCALLIBSYSTEM LIBSYS = $(ALTUSRLOCALLIBSYSTEM) diff --git a/Makefile.postamble b/Makefile.postamble index ff9aef2..979edc5 100644 --- a/Makefile.postamble +++ b/Makefile.postamble @@ -1,9 +1,21 @@ include $(CoreOSMakefiles)/ProjectBuilder/Makefile.Postamble.Common -ifeq ($(BUILD_TYPE),normal) -OPTIMIZE_BUILD_LIBS := $(LIBSYSTEM_LIBS) $(GCCLIBS) +CC = $(GCC) # override +# gcc-3.5 doesn't support -precomp-trustfile (3689986), which +# pb_makefiles/flags.make sets, so we overwrite PRECOMP_CFLAGS +PRECOMP_CFLAGS = + +ifeq "$(BUILD_TYPE)" "normal" +LIBS += $(GCCLIBS) +else +LIBS = endif +LIBS := $(foreach LIB, \ + $(filter $(BSD_LIBS), $(subst -l,,$(LIBS))), \ + $(LIBSYS)/lib$(LIB).a) \ + $(filter-out $(addprefix -l, $(BSD_LIBS)), $(LIBS)) + # pb_makefiles erroneously omits $(BUILD_TYPE_SUFFIX) from the install name DYLIB_INSTALL_NAME = $(LIBRARY_PREFIX)$(NAME).$(VERSION_NAME)$(BUILD_TYPE_SUFFIX)$(LIBRARY_EXT) @@ -48,51 +60,21 @@ comm-page-symbols: spinlock_stub.o spinlocktry_stub.o spinunlock_stub.o CommPage .SUFFIXES: .st +SEG1ADDR_i386 = 0xffff0000 +SEG1ADDR_ppc = 0xffff8000 +SEG1ADDR_ppc64 = 0xffffffffffff8000 SLFS_F_PH = /System/Library/Frameworks/System.framework/PrivateHeaders -$(OFILE_DIR)/%.ppc.o %.ppc.o: %.st +$(OFILE_DIR)/%.ppc.o %.ppc.o $(OFILE_DIR)/%.ppc64.o %.ppc64.o $(OFILE_DIR)/%.i386.o %.i386.o: %.st $(CC) -arch $(CURRENT_ARCH) -x assembler-with-cpp \ -I$(SLFS_F_PH)/$(CURRENT_ARCH) \ $(ALL_CFLAGS) -c -o $(OFILE_DIR)/commsym.$(CURRENT_ARCH).o $< - ld -arch $(CURRENT_ARCH) -r -seg1addr 0xffff8000 \ + ld -arch $(CURRENT_ARCH) -r -seg1addr $(SEG1ADDR_$(CURRENT_ARCH)) \ $(OFILE_DIR)/commsym.$(CURRENT_ARCH).o -o $(OFILE_DIR)/$(notdir $@) -$(OFILE_DIR)/%.i386.o %.i386.o: %.st - $(CC) -arch $(CURRENT_ARCH) -x assembler-with-cpp \ - -I$(SLFS_F_PH)/$(CURRENT_ARCH) \ - $(ALL_CFLAGS) -c -o $(OFILE_DIR)/commsym.$(CURRENT_ARCH).o $< - ld -arch $(CURRENT_ARCH) -r -seg1addr 0xBFFF8000 \ - $(OFILE_DIR)/commsym.$(CURRENT_ARCH).o -o $(OFILE_DIR)/$(notdir $@) +#------------------------------------------------------------------------- -#---------------------------------------------------------------------------- - -ifeq ($(RC_ARCHS),ppc) -ifeq ($(BUILD_TYPE),normal) -LIBSUFFIX = .a -REMOVESUFFIX = .So -else -ifeq ($(BUILD_TYPE),debug) -LIBSUFFIX = _debug.a -REMOVESUFFIX = .do -else -LIBSUFFIX = _profile.a -REMOVESUFFIX = .po -endif -endif -CNAME = libc$(LIBSUFFIX) -MNAME = libm$(LIBSUFFIX) -REMOVELIBC = _ldtoa err hexfloat syslog vfprintf vfwprintf -REMOVELIBCOBJS = $(addsuffix $(REMOVESUFFIX),$(REMOVELIBC)) -REMOVELIBM = fpmacros -REMOVELIBMOBJS = $(addsuffix .o,$(REMOVELIBM)) -LIBGCC = $(LIBSYS)/libgcc-ppc.a +LIBGCC = $(shell $(CC) -arch $(RC_ARCHS) -print-file-name=libgcc.a) $(OFILE_DIR)/libgcc.unexport: nm -g -arch $(RC_ARCHS) $(LIBGCC) | grep ' [A-TV-Z] ' | sed 's/^.* [A-Z] //' > $(OFILE_DIR)/libgcc.unexport - lipo -thin ppc -output $(OFILE_DIR)/$(CNAME) $(LIBSYS)/$(CNAME) - ar -d $(OFILE_DIR)/$(CNAME) $(REMOVELIBCOBJS) - ranlib $(OFILE_DIR)/$(CNAME) - lipo -thin ppc -output $(OFILE_DIR)/$(MNAME) $(LIBSYS)/$(MNAME) - ar -d $(OFILE_DIR)/$(MNAME) $(REMOVELIBMOBJS) - ranlib $(OFILE_DIR)/$(MNAME) -endif diff --git a/Makefile.preamble b/Makefile.preamble index 776bfce..e2849a4 100644 --- a/Makefile.preamble +++ b/Makefile.preamble @@ -1,19 +1,13 @@ -ifeq ($(RC_ARCHS),ppc) -GCCLIBS = -lgcc-ppc +GCC = gcc-3.5 +GCCLIBS = -lgcc OTHER_PRODUCT_DEPENDS += $(OFILE_DIR)/libgcc.unexport -else -GCCLIBS = -lcc_noc++ -endif BEFORE_BUILD += comm-page-symbols BEFORE_INSTALL += profile debug AFTER_INSTALL += compat-next compat-bsd copy_plist -ifeq ($(RC_ARCHS),ppc) -LIBSYSTEM_LIBS := -lldbl128 $(LIBSYSTEM_LIBS) -endif -PROFILE_BUILD_LIBS := $(foreach LIB, $(LIBSYSTEM_LIBS), $(LIB)_profile) $(GCCLIBS) -DEBUG_BUILD_LIBS := $(foreach LIB, $(LIBSYSTEM_LIBS), $(LIB)_debug) $(GCCLIBS) +PROFILE_BUILD_LIBS := $(foreach LIBS, $(LIBS), $(LIBS)_profile) $(GCCLIBS) +DEBUG_BUILD_LIBS := $(foreach LIBS, $(LIBS), $(LIBS)_debug ) $(GCCLIBS) # the _stub.o files need to come first to ensure that they override the default stubs OTHER_LIBTOOL_FLAGS = $(OFILE_DIR)/spinlock_stub.o \ @@ -21,11 +15,8 @@ OTHER_LIBTOOL_FLAGS = $(OFILE_DIR)/spinlock_stub.o \ $(OFILE_DIR)/spinunlock_stub.o \ -L/usr/lib/system -sub_library libmathCommon \ -lmathCommon -sectorder __TEXT __text System.order \ - -segcreate __DATA __commpage $(OFILE_DIR)/CommPageSymbols.o - -ifeq ($(RC_ARCHS),ppc) -OTHER_LIBTOOL_FLAGS += -unexported_symbols_list $(OFILE_DIR)/libgcc.unexport -endif + -segcreate __DATA __commpage $(OFILE_DIR)/CommPageSymbols.o \ + -unexported_symbols_list $(OFILE_DIR)/libgcc.unexport BSD_LIBS = c info kvm m pthread dbm poll dl rpcsvc diff --git a/System.order b/System.order index b730f53..7827bb4 100644 --- a/System.order +++ b/System.order @@ -1,3774 +1,1301 @@ +sysctl.So:_sysctl +_sysctl.So:___sysctl +dyldAPIsInLibSystem.o:__dyld_register_func_for_add_image +dyldLock-B32866A3.o:__ZN16LockWriterHelperD1Ev +dyldLock-B32866A3.o:__ZN25RecursiveReaderWriterLock28unlockForSingleWritingThreadEv +dyldLock-B32866A3.o:__ZN25RecursiveReaderWriterLock12initIfNeededEv +pthread_mutex.So:_pthread_mutex_unlock +pthread_self.So:_pthread_self +atexit.So:_atexit +dyldAPIsInLibSystem.o:__dyld_get_image_header_containing_address +dyldLock-B32866A3.o:__ZN16LockReaderHelperC1Ev +dyldLock-B32866A3.o:__ZN25RecursiveReaderWriterLock29lockForMultipleReadingThreadsEv +pthread_mutex.So:_pthread_mutex_lock +dylib1.o:__dyld_func_lookup +dyldLock-B32866A3.o:__ZN16LockReaderHelperD1Ev +dyldLock-B32866A3.o:__ZN25RecursiveReaderWriterLock31unlockForMultipleReadingThreadsEv +setjmp.So:.section_all +sigprocmask.So:_sigprocmask +_setjmp.So:__setjmp +open.So:_open +cerror.So:.section_all +cprocs.So:_cthread_set_errno_self +errno.So:___error +fileno.So:_fileno +ttyname.So:_ttyname +termios.So:_tcgetattr +ioctl.So:_ioctl +setlocale.So:_setlocale +strcpy.So:_strcpy +getenv.So:_getenv +crt_externs.So:__NSGetEnviron +strlen.So:_strlen +strchr.So:_strchr strcmp.So:_strcmp -bsearch.So:_bsearch -malloc.So:_free +malloc.So:_malloc malloc.So:_malloc_zone_malloc -lock.So:.section_all -scalable_malloc.So:_szone_free +scalable_malloc.So:_szone_malloc +getuid.So:_getuid +getgid.So:_getgid +geteuid.So:_geteuid +getegid.So:_getegid +strncmp.So:_strncmp +strrchr.So:_strrchr +time.So:_time +gettimeofday.So:_gettimeofday +ppc_gettimeofday.So:___commpage_gettimeofday +setvbuf.So:_setvbuf +fflush.So:___sflush +makebuf.So:___swhatbuf +fstat.So:_fstat +qsort.So:_qsort +sigaction.So:_sigaction +syscall.So:_syscall +gethostname.So:_gethostname +stat.So:_stat +malloc.So:_free scalable_malloc.So:_szone_size -malloc.So:_malloc_zone_free +scalable_malloc.So:_szone_free +getpid.So:_getpid +memset.So:.section_all +strtoimax.So:_strtoimax +_umoddi3.o:___umoddi3 +_udivdi3.o:___udivdi3 +getppid.So:_getppid +lu_user.o:_getpwuid +lu_user.o:_getpw +lu_utils.o:__lu_data_create_key +lu_utils.o:__lu_data_get +pthread.So:_pthread_once +unwind-c.o:___gcc_personality_v0 +lu_utils.o:__lu_data_init +pthread_tsd.So:_pthread_key_create pthread_getspecific.So:_pthread_getspecific -bzero.So:.section_all -malloc.So:_malloc -pthread_mutex.So:_pthread_mutex_unlock -pthread_mutex.So:_pthread_mutex_lock -bcopy.So:.section_all -scalable_malloc.So:_szone_calloc -malloc.So:_malloc_zone_calloc -scalable_malloc.So:_szone_malloc malloc.So:_calloc -pthread_self.So:_pthread_self -malloc.So:_malloc_size -vfprintf.So:___vfprintf -fvwrite.So:___sfvwrite -vfprintf.So:___sprint -strlen.So:_strlen -mach_absolute_time.So:_mach_absolute_time -fabs.o:_fabs -sprintf.So:_sprintf -mach_msg.So:_mach_msg -getpid.So:_getpid -memcmp.So:.section_all -ceilfloor.o:_floor +scalable_malloc.So:_szone_calloc +pthread_tsd.So:_pthread_setspecific +lu_utils.o:__lu_data_set_key +lu_utils.o:__lu_data_index +lu_user.o:_getpw_internal +getlogin.So:_getlogin +_getlogin.So:__getlogin +lu_utils.So:__lu_running +taskUser.So:_task_get_special_port mig_support.So:_mig_get_reply_port -pthread_cond.So:_pthread_cond_signal_thread_np -pthread_cond.So:_pthread_cond_signal +mach_msg.So:_mach_msg mach_traps.So:_mach_msg_trap -pthread.So:_pthread_main_np -gettimeofday.So:_gettimeofday -strcpy.So:_strcpy -regexec.So:_lslow -localeconv.So:_localeconv -vfprintf.So:___ultoa -abs.So:_abs -pthread_tsd.So:_pthread_setspecific -errno.So:___error -pthread.So:_pthread_once -scalable_malloc.So:_szone_realloc -dyld.o:__dyld_image_containing_address -ceilfloor.o:_ceil -ppc_gettimeofday.So:___commpage_gettimeofday -malloc.So:_realloc -pthread_cond.So:_pthread_cond_broadcast -malloc.So:_malloc_default_zone -FastSinCos.o:_sin -ceilfloor.o:_floorf -strncmp.So:_strncmp -malloc.So:_malloc_zone_from_ptr -localtime.So:_time2 -localtime.So:_localsub -getc.So:_getc -qsort.So:_qsort -FastSinCos.o:_cos -_setjmp.So:__setjmp -setjmp.So:.section_all -_flock_stub.So:_flockfile -recvmsg.So:_recvmsg -malloc.So:_malloc_zone_realloc -getenv.So:_getenv -cerror.So:cerror -cprocs.So:_cthread_set_errno_self -regexec.So:_lstep -sigprocmask.So:_sigprocmask +srvbootstrapUser.So:_bootstrap_look_up +mig_strncpy.So:_mig_strncpy +mach_portUser.So:_mach_port_type +lu_utils.o:__lookup_link +lookupUser.o:__lookup_link_secure +bcopy.So:.section_all +syslog.So:_openlog strncpy.So:_strncpy -mach_msg.So:_mach_msg_overwrite -select.So:_select -_flock_stub.So:_funlockfile -scalable_malloc.So:_small_free_list_add_ptr -localtime.So:_timesub -power.o:_pow -memchr.So:_memchr -localtime.So:_tmcomp -strcasecmp.So:_strcasecmp -strstr.So:_strstr -getsecbyname.o:_getsectbynamefromheader -ungetc.So:_ungetc -mach_portUser.So:_mach_port_insert_member -mach_portUser.So:_mach_port_extract_member -strtol.So:_strtol -vm_mapUser.So:_vm_deallocate -crt_externs.So:__NSGetEnviron -atoi.So:_atoi -snprintf.So:_snprintf -vfprintf.So:_vfprintf -time.So:_time -darwin-fpsave.o:saveFP -darwin-fpsave.o:restFP -isctype.So:_tolower -power.o:_PowerInner -strdup.So:_strdup -rndint.o:_rintf -mach_traps.So:_mk_timer_arm -localtime.So:_localtime -strcat.So:_strcat -mach_traps.So:_mach_msg_overwrite_trap -fputs.So:_fputs -fprintf.So:_fprintf -readdir.So:_readdir -isctype.So:_isspace -recvfrom.So:_recvfrom -strchr.So:_strchr -ungetc.So:___ungetc -nanosleep.So:_nanosleep -clockUser.So:_clock_get_time -scalable_malloc.So:_small_free_list_remove_ptr -fgets.So:_fgets -dyld.o:__dyld_get_image_header -pthread_mutex.So:_pthread_mutex_trylock -remmod.o:_fmod -dyld.o:__dyld_get_image_name -vm_mapUser.So:_vm_allocate -xdr.o:_xdr_string -dyld.o:__dyld_get_image_vmaddr_slide -pthread_cond.So:__pthread_cond_wait -open.So:_open -scalable_malloc.So:_large_entry_for_pointer_no_lock -stat.So:_stat -mbrtowc.So:_mbrtowc -xdr_mem.o:_xdrmem_getbytes +notify_client.o:_notify_register_plain +notify_client.o:__notify_lib_init +notify_ipcUser.o:__notify_server_register_plain +notify_client.o:_token_table_add +table.o:__nc_table_new +table.o:__nc_table_insert_n +table.o:_hash_nkey +asprintf.So:_asprintf$LDBL128 +vfprintf.So:___vfprintf$LDBL128 +localeconv.So:_localeconv +fvwrite.So:___sfvwrite +memcmp.So:.section_all +sprintf-LDBL.So:_sprintf +vfprintf-LDBL.So:___vfprintf +lseek.So:_lseek read.So:_read -mach_portUser.So:_mach_port_deallocate -localtime.So:_tzset_basic -inet_ntop.o:_inet_ntop4 -lu_user.o:_extract_user -remmod.o:_remainder -keymgr.o:__keymgr_set_and_unlock_key -gdtoa-dtoa.So:___dtoa -scalable_malloc.So:_large_and_huge_malloc -close.So:_close -mach_traps.So:_mk_timer_destroy -mach_traps.So:_mk_timer_create -inet_addr.So:_inet_aton +OSAtomic.So:.section_all +malloc.So:_malloc_zone_free write.So:_write -pthread_rwlock.So:_pthread_rwlock_unlock -keymgr.o:__keymgr_get_or_create_key_element -sendto.So:_sendto -strrchr.So:_strrchr -arc4random.So:_arc4random -send.So:_send -getattrlist.So:_getattrlist -strtoul.So:_strtoul -recv.So:_recv -gdtoa-strtod.So:_strtod -isctype.So:_toupper -pthread_rwlock.So:_pthread_rwlock_rdlock -xdr.o:_xdr_opaque -readdir.So:__readdir_unlocked -scalable_malloc.So:_allocate_pages -usleep.So:_usleep -vsnprintf.So:_vsnprintf -localtime.So:_increment_overflow -localtime.So:_mktime -pthread_mutex.So:__pthread_mutex_init -ms_thread_switch.So:_thread_switch -mach_traps.So:_syscall_thread_switch -mach_traps.So:_clock_sleep_trap -keymgr.o:__keymgr_get_and_lock_key -keymgr.o:__keymgr_lock -scalable_malloc.So:_deallocate_pages -getsecbyname.o:_getsectdatafromheader -keymgr.o:_dwarf2_unwind_dyld_add_image_hook -streams_internal.o:__NXVerifyStream -lu_utils.o:__lu_xdr_attribute -mbrlen.So:_mbrlen -none.So:__none_sgetrune -mig_strncpy.So:_mig_strncpy +close.So:_close +exit.So:_exit +atexit.So:___cxa_finalize +_exit.So:__exit +signal.So:_signal +srvbootstrapUser.So:_bootstrap_status +setsid.So:_setsid pthread_mutex.So:_pthread_mutex_init -fenv.o:___fegetfltrounds -localtime.So:_tzsetwall_basic -pthread.So:_new_sem_from_pool -xdr.o:_xdr_u_long -opendir.So:___opendir2 -finite.o:_finite -fpmacros.o:___isfinited -pthread.So:_restore_sem_to_pool -rand.So:_rand -rand.So:_do_rand -streams_internal.o:_NXDefaultRead -streams.o:_NXSeek -keymgr.o:__init_keymgr -xdr.o:_xdr_u_int -gdtoa-dmisc.So:___quorem_D2A -scalable_malloc.So:_large_entry_insert_no_lock -fpmacros.o:___fpclassifyd -keymgr.o:__keymgr_get_key_element -keymgr.o:__keymgr_unlock -xdr_mem.o:_xdrmem_getlong -keymgr.o:__keymgr_get_and_lock_processwide_ptr -keymgr.o:__keymgr_set_key_element -localtime.So:_normalize_overflow -keymgr.o:__keymgr_set_and_unlock_processwide_ptr -streams.o:_NXTell -fwrite.So:_fwrite -strftime.So:__conv -gdtoa-misc.So:___d2b_D2A -pthread_mutex.So:_pthread_mutex_destroy -scalb.o:_scalbn -isctype.So:_isalnum -gdtoa-misc.So:___Balloc_D2A -gdtoa-misc.So:___Bfree_D2A -scalable_malloc.So:_large_free_no_lock -lstat.So:_lstat -semaphore.So:_semaphore_wait -mach_traps.So:_semaphore_wait_trap -fstat.So:_fstat -syslog.So:_vsyslog -fputc.So:_fputc -pthread_cond.So:__pthread_cond_init pthread_cond.So:_pthread_cond_init -malloc.So:_malloc_good_size -scalable_malloc.So:_szone_good_size -localtime.So:_time1 -pthread_cond.So:__pthread_cond_add -regexec.So:_lfast -pthread_cond.So:_pthread_cond_destroy -stdio.So:__sseek -strftime.So:__fmt -getcwd.So:_getcwd -closedir.So:_closedir -table.o:__nc_list_data -thread_actUser.So:_thread_get_state -gdtoa-dmisc.So:___rv_alloc_D2A -xdr.o:_xdr_long -pthread.So:_pthread_equal -logb.o:_logb -gdtoa-misc.So:___cmp_D2A -getifaddrs.o:_getifaddrs -gdtoa-misc.So:___multadd_D2A -xdr_mem.o:_xdrmem_putlong -mach_portUser.So:_mach_port_allocate -table.o:__nc_list_next -regcomp.So:_categorize -geteuid.So:_geteuid -sscanf.So:_sscanf -zone.So:_NXZoneMalloc -semaphore.So:_semaphore_wait_signal -mach_traps.So:_semaphore_wait_signal_trap -pthread_cond.So:__pthread_cond_remove -pthread.So:_pthread_exit -pthread.So:_sched_yield -fpmacros.o:___isnand -fseek.So:_fseek -mach_portUser.So:_mach_port_insert_right -vm_mapUser.So:_vm_map -dyld_support.o:_NSAddressOfSymbol -putc.So:_putc -mach_portUser.So:_mach_port_destroy -pthread.So:__pthread_create_suspended -mach_traps.So:_swtch_pri -getdirentries.So:_getdirentries -strlcpy.So:_strlcpy -strftime.So:__add -strcasecmp.So:_strncasecmp -gdtoa-misc.So:___lshift_D2A -semaphore.So:_semaphore_signal_thread -mach_traps.So:_semaphore_signal_thread_trap -dyld_support.o:_NSLookupSymbolInImage -sysctl.So:_sysctl -_sysctl.So:___sysctl -regexec.So:_smatcher -memory_funcs.o:_memory_seek -lu_user.o:_copy_user -pread.So:_pread -mmap.So:_mmap -vm_mapUser.So:_vm_protect -pthread_mutex.So:_pthread_mutexattr_init -semaphore.So:_semaphore_signal -mach_traps.So:_semaphore_signal_trap -semaphore.So:_semaphore_timedwait_signal -mach_traps.So:_semaphore_timedwait_signal_trap -getuid.So:_getuid -pthread_mutex.So:_pthread_mutexattr_destroy -regcomp.So:_samesets -pthread_rwlock.So:_pthread_rwlock_init -taskUser.So:_task_get_special_port -vfscanf.So:___svfscanf -strtoumax.So:_strtoumax -inet_ntoa.So:_inet_ntoa -gdtoa-misc.So:___lo0bits_D2A -syscall.So:_syscall -xdr.o:_xdr_enum -regexec.So:_sstep -localtime.So:_tzload -fseek.So:__fseeko -pthread.So:_ur_cthread_self -gdtoa-dmisc.So:___freedtoa -pthread_rwlock.So:_pthread_rwlock_destroy -lseek.So:_lseek -refill.So:___srefill -inet_ntop.o:_inet_ntop -strsep.So:_strsep -localtime.So:_detzcode -pthread_cond.So:_pthread_cond_timedwait -telldir.So:_telldir -lu_user.o:_free_user_data -rndint.o:_rint -asprintf.So:_asprintf -xdr.o:_xdr_int -stdio.So:__sread -mach_portUser.So:_mach_port_request_notification -regexec.So:_sslow -taskUser.So:_thread_create_running -fts.So:_fts_build -xdr_rec.o:_xdrrec_getlong -mach_init.So:_mach_init_doit -fclose.So:_fclose -pthread_rwlock.So:_pthread_rwlock_wrlock -mach_msg.So:_mach_msg_server -mach_portUser.So:_mach_port_mod_refs -vm_mapUser.So:_vm_msync -rpc_callmsg.o:_xdr_callmsg -strftime.So:_strftime -srvbootstrapUser.So:_bootstrap_look_up -pthread.So:__pthread_reap_thread -seteuid.So:_seteuid -lu_user.o:_cache_getpwnam -pthread_cond.So:_pthread_cond_wait -localtime.So:_tzset -thread_actUser.So:_thread_policy -pthread.So:__pthread_reap_threads -lu_user.o:_getpw_internal -mach_init_ports.So:_mach_init_ports -svc.o:_svc_getreqset -thread_setup.So:__pthread_setup -stpcpy.So:_stpcpy -pthread_tsd.So:__pthread_tsd_cleanup -mach_traps.So:_mk_timer_cancel -clnt_tcp.o:_clnttcp_call -dyld.o:__dyld_image_count -alarm.So:_alarm -lu_user.o:_getpw -pthread.So:__pthread_allocate_stack +getdtablesize.So:_getdtablesize +dup.So:_dup fopen.So:_fopen -xdr_mem.o:_xdrmem_inline -svc_auth_unix.o:__svcauth_unix -telldir.So:__seekdir -sigcompat.So:_sigblock -munmap.So:_munmap -dyld_support.o:_NSIsSymbolNameDefinedInImage -fread.So:_fread -pthread.So:_pthread_mach_thread_np -xdr_rec.o:_get_input_bytes -regcomp.So:_isinsets -regexec.So:_regexec -ni_util.o:_ni_name_free -pthread.So:__pthread_create -NSSystemDirectories.So:_NSGetNextSearchPathEnumeration -lu_utils.o:__lu_data_get +flags.So:___sflags findfp.So:___sfp -malloc.So:_malloc_create_zone -fcntl.So:_fcntl -flock.So:_flock -rpc_prot.o:_xdr_replymsg -rpc_prot.o:_xdr_accepted_reply -vm_mapUser.So:_vm_map_64 -svc_udp.o:_svcudp_reply -pthread.So:_pthread_init -vm_mapUser.So:_mach_make_memory_entry_64 -timelocal.So:___get_current_time_locale -gdtoa-misc.So:___pow5mult_D2A -ftell.So:_ftello -xdr_rec.o:_xdrrec_putbytes -xdr_mem.o:_xdrmem_putbytes -pthread.So:__pthread_set_self -svc_udp.o:_svcudp_recv -tableLogD.o:_log -sigaction.So:_sigaction__ -taskUser.So:_task_threads -fflush.So:___sflush -fts.So:_fts_read +fprintf-LDBL.So:_fprintf +vfprintf-LDBL.So:_vfprintf +wsetup.So:___swsetup makebuf.So:___smakebuf -setlocale.So:_setlocale -xdr_rec.o:_xdrrec_getbytes -getdirentriesattr.So:_getdirentriesattr -mach_traps.So:_mach_reply_port -dylib1.o:__dyld_func_lookup -scalable_malloc.So:_large_entries_grow_no_lock -getsecbyname.o:_getsectbyname -lu_host.o:_extract_host -except.o:__NXAddHandler -xdr.o:_xdr_bytes -vm_mapUser.So:_vm_copy -dyld.o:__dyld_present -mach_hostUser.So:_host_get_io_master -sigcompat.So:_sigsetmask -gdtoa-strtodg.So:_rvOK -taskUser.So:_semaphore_create -regexec.So:_ldissect -clock.So:_clock -_udivdi3.o:___udivdi3 -_umoddi3.o:___umoddi3 -pthread_set_self.So:___pthread_set_self -mach_traps.So:_host_self_trap -fork.So:_fork -thread_actUser.So:_thread_info -fpmacros.o:___isinfd -streams_internal.o:_NXStreamCreateFromZone -rpc_prot.o:_xdr_opaque_auth -xdr_array.o:_xdr_array -ni_prot_xdr.o:_xdr_ni_name -setegid.So:_setegid -random.So:_random -pthread.So:__pthread_become_available -thread_actUser.So:_thread_terminate -xdr.o:_xdr_union -lu_utils.o:__lu_data_create_key -ftell.So:__ftello -fileno.So:_fileno -fts.So:_fts_alloc -streams_internal.o:_NXDefaultWrite -getpagesize.So:_getpagesize -pthread.So:__pthread_body -streams.o:_NXClose -cthreads.So:__cthread_fork_child -makebuf.So:___swhatbuf -mach_hostUser.So:_host_info -vsprintf.So:_vsprintf -strncat.So:_strncat +fclose.So:_fclose +stdio.So:__swrite +stdio.So:___swrite +stdio.So:___sclose random.So:_srandom -tfind.So:_tfind -setitimer.So:_setitimer -ni_util.o:_ni_namelist_free -sigtramp.So:__sigtramp -ni_prot_xdr.o:_xdr_ni_id -xdr_rec.o:_xdrrec_putlong +pthread_cond.So:_pthread_cond_broadcast +malloc.So:_malloc_zone_calloc +malloc.So:_malloc_default_zone +lock.So:.section_all +asprintf-LDBL.So:_asprintf +common.o:__notify_lib_notify_state_new +scalable_malloc.So:_large_and_huge_malloc +vm_mapUser.So:_vm_allocate +common.o:__notify_lib_register_plain table.o:__nc_table_find -mach_init.So:_mach_host_self +table.o:_hash_key +common.o:__internal_new_name +strdup.So:_strdup +table.o:__nc_table_insert +common.o:__internal_check_access +common.o:__internal_client_new +table.o:__nc_list_new +table.o:__nc_list_prepend +notify_client.o:_notify_set_state +notify_client.o:_token_table_find +table.o:__nc_table_find_n +common.o:__notify_lib_set_state +malloc.So:_realloc +scalable_malloc.So:_szone_realloc +flock.So:_flock +opendir.So:_opendir +fcntl.So:_fcntl +getpagesize.So:_getpagesize fstatfs.So:_fstatfs +telldir.So:_telldir +readdir.So:_readdir +getdirentries.So:_getdirentries +atoi.So:_atoi +strtol.So:_strtol +fseek.So:_fseek +ftell.So:__ftello +stdio.So:__sseek +stdio.So:___sseek +fread.So:_fread +refill.So:___srefill +stdio.So:__sread +stdio.So:___sread +getopt.So:_getopt +socket.So:_socket +closedir.So:_closedir +telldir.So:__seekdir telldir.So:__reclaim_telldir -lookupUser.o:__lookup_all_secure -lu_user.o:_lu_getpwnam -strcspn.So:_strcspn -xdr_mem.o:_xdrmem_setpos -multi_call.o:_encodemsg -mach_init.So:_mach_thread_self -mach_traps.So:_thread_self_trap -xdr_mem.o:_xdrmem_create -clnt_tcp.o:_readtcp +unlink.So:_unlink +notify_client.o:_notify_register_check +notify_ipcUser.o:__notify_server_register_check +shm_open.So:_shm_open +fix-3375657.So:__shm_match +fix-3375657.So:_dosearch +bsearch.So:_bsearch +fix-3375657.So:_comparkey +mmap.So:_mmap +notify_ipcUser.o:__notify_server_set_state +notify_client.o:_notify_check +notify_client.o:_notify_get_state +notify_ipcUser.o:__notify_server_get_state +index.So:_index +ni_util.o:_ni_name_free +ni_util.o:_ni_idlist_free +connect.So:_connect +ni_glue.o:_ni_connect +ni_glue.o:_ni_alloc +getmntinfo.So:_getmntinfo +getfsstat.So:_getfsstat +getattrlist.So:_getattrlist +ni_util.o:_ni_name_dup +ni_glue.o:_ni_setreadtimeout +ni_glue.o:_ni_setabort +ni_glue.o:_ni_self ni_glue.o:_callit -stdio.So:___sread -stdio.So:___sseek -mach_portUser.So:_mach_port_set_attributes -stdio.So:__swrite -streams_internal.o:_NXStreamDestroy -lu_user.o:_recycle_user -sqrt.o:___sqrt -regcomp.So:_p_bracket -semaphore.So:_semaphore_signal_all -mach_traps.So:_semaphore_signal_all_trap -pthread.So:_pthread_setschedparam -gdtoa-misc.So:___mult_D2A -ftell.So:_ftell -gdtoa-strtodg.So:___strtodg -pthread_rwlock.So:_pthread_rwlockattr_init -pthread_rwlock.So:_pthread_rwlockattr_destroy -opendir.So:_opendir -mach_msg.So:_mach_msg_send -xdr_mem.o:_xdrmem_destroy -memory_funcs.o:_NXOpenMemory -streams_internal.o:_NXStreamCreate -mach_hostUser.So:_host_page_size -taskUser.So:_mach_ports_lookup -mach_hostUser.So:_host_get_clock_service -keymgr.o:__keymgr_create_key_element -dyld.o:__dyld_lookup_and_bind -fsync.So:_fsync -gdtoa-misc.So:___i2b_D2A -regcomp.So:_p_ere_exp -fts.So:_fts_stat -svc.o:_svc_sendreply -chmod.So:_chmod -xdr_mem.o:_xdrmem_getpos -pthread.So:_pthread_attr_init -readlink.So:_readlink -mig_support.So:_mig_init -dyld_support.o:_NSAddImage -ceilfloor.o:_ceilf -setsockopt.So:_setsockopt -umask.So:_umask -setlocale.So:_loadlocale -except.o:__NXRemoveHandler -pthread.So:_pthread_create -malloc.So:_set_malloc_singlethreaded -atof.So:_atof -regexec.So:_sfast -malloc.So:_malloc_set_zone_name -syslog.So:_syslog -sigaction.So:_sigaction -remmod.o:_fmodf -flags.So:___sflags -access.So:_access -lu_host.o:_lu_gethostbyname -fflush.So:_fflush -pwrite.So:_pwrite -getrusage.So:_getrusage -NSSystemDirectories.So:_NSStartSearchPathEnumeration -mach_portUser.So:_mach_port_type -pthread.So:_pthread_attr_setdetachstate -sigcompat.So:_sigpause -lu_utils.So:__lu_fork_child -regcomp.So:_doemit -regcomp.So:_ordinary -mach_portUser.So:_mach_port_get_set_status -DNSServiceDiscovery.o:_DNSServiceDiscovery_handleReply -printf.So:_printf -vfscanf.So:_parsefloat -strtoimax.So:_strtoimax -ni_util.o:_ni_proplist_free -ni_util.o:_ni_prop_free -lu_user.o:_cache_user -pthread.So:_pthread_attr_destroy -malloc.So:__malloc_fork_prepare -malloc.So:__malloc_fork_parent -malloc.So:__malloc_fork_child -stdio.So:___sclose -mach_traps.So:_map_fd -dyld.o:__dyld_register_func_for_remove_image -dyld.o:__dyld_register_func_for_add_image -dyld_support.o:_NSLookupSymbolInModule -socket.So:_socket -lu_host.o:_copy_host -lu_host.o:_free_host_data -regcomp.So:_othercase -DNSServiceDiscovery.o:_internal_DNSServiceBrowserReply_rpc -fpmacros.o:___isnanf -malloc.So:__malloc_initialize -dyld.o:__dyld_lookup_and_bind_fully -gdtoa-strtof.So:_strtof -sscanf.So:_eofread -ni_util.o:_ni_name_match -zone.So:_NXDefaultMallocZone -xdr_rec.o:_set_input_fragment -xdr_rec.o:_fill_input_buf -svc_auth.o:__authenticate -xdr_rec.o:_flush_out -clnt_tcp.o:_writetcp -atexit.So:_atexit -localtime.So:_localtime_r -stdio.So:___swrite -crt_externs.So:__NSGetArgv -ioctl.So:_ioctl -DNSServiceDiscoveryReplyServer.o:__XDNSServiceBrowserReply_rpc -pthread_cond.So:_pthread_cond_timedwait_relative_np -malloc.So:_malloc_zone_register -exit.So:_exit -fpmacros.o:___isinff -if_nametoindex.o:_if_nametoindex -gdtoa-misc.So:___hi0bits_D2A -signal.So:_signal__ -dyld.o:__dyld_bind_fully_image_containing_address -strerror.So:_strerror -common.o:__notify_lib_cancel_session -lu_utils.o:__lookup_all -memory_funcs.o:_memory_close -ni_util.o:_ni_name_dup -ni_prot_xdr.o:_xdr_ni_status -ni_glue.o:_getmyport -lu_user.o:_getpwnam -lu_utils.So:__lu_running -lu_utils.So:_port_valid -table.o:_hash_key -setgroups.So:_setgroups -lu_user.o:_cache_getpwuid -srvbootstrapUser.So:_bootstrap_register -ptrace.So:_ptrace -pthread.So:_pthread_get_stackaddr_np -pthread.So:_pthread_get_stacksize_np -sleep.So:_sleep -lu_host.o:_cache_gethostbyname -svc_udp.o:_svcudp_getargs -svc_udp.o:_svcudp_stat -scalable_malloc.So:_create_scalable_zone -scalable_malloc.So:_tiny_malloc_from_region_no_lock -strcasestr.So:_strcasestr -getsecbyname.o:_getsectdatafromFramework -pthread.So:_pthread_setcanceltype -chown.So:_chown -inet_addr.So:_inet_addr -dyld.o:__dyld_bind_objc_module ni_glue.o:_ni_settimeout ni_glue.o:_confirm_tcp -rename.So:_rename -_lu_types_xdr.o:_xdr__lu_string -ni_prot_xdr.o:_xdr_ni_lookup_args -sync.So:_sync -kevent.So:_kevent -sigsuspend.So:_sigsuspend -setenv.So:_setenv -pthread_tsd.So:_pthread_key_create -fdopen.So:_fdopen -objectfileimage.o:_ofile_map -lu_host.o:_getipnodebyname -lu_host.o:_cache_host -svc_udp.o:_svcudp_freeargs -pthread.So:_cthread_set_self -init_cpu_capabilities.So:__init_cpu_capabilities -keymgr.o:___keymgr_dwarf2_register_sections -strlcat.So:_strlcat -mktemp.So:__gettemp -taskUser.So:_task_policy_set -mig_deallocate.So:_mig_deallocate -regcomp.So:_p_ere ni_glue.o:_rebind -nlist.So:___fdnlist -setvbuf.So:_setvbuf -pthread_rwlock.So:_pthread_rwlock_trywrlock -frexpldexp.o:_ldexp -taskUser.So:_semaphore_destroy -ni_util.o:_ni_proplist_match -ni_util.o:_ni_namelist_insert -ni_prot_xdr.o:_xdr_ni_namelist +ni_glue.o:_connectit +ni_glue.o:_socket_open +bindresvport.o:_bindresvport +bindresvport.o:_bindresvport_sa getsockname.So:_getsockname -lookupUser.o:__lookup_link_secure -ni_prot_xdr.o:_xdr_ni_property -index.So:_index -cthreads.So:__cthread_fork_prepare -cthreads.So:__cthread_fork_parent -mach_traps.So:_task_self_trap -pthread.So:__pthread_fork_child -cprocs.So:__cproc_fork_child -rget.So:___srget -putenv.So:_putenv -dyld.o:__dyld_all_twolevel_modules_prebound -objectfileimage.o:_NSCreateImageFromFileOrMemory -lu_host.o:_freehostent -regcomp.So:_regcomp -regcomp.So:_p_b_term -DNSServiceDiscoveryReplyServer.o:_DNSServiceDiscoveryReply_server -crt_externs.So:__NSGetArgc -dyld_support.o:__NSGetExecutablePath -fwalk.So:__fwalk -wait4.So:_wait4 -getmntinfo.So:_getmntinfo -streams.o:_NXUngetc -inet_pton.o:_inet_pton6 -getaddrinfo.o:_gai_lookupd_process_dictionary -connect.So:_connect -fflush.So:___fflush -regcomp.So:_doinsert -gdtoa-smisc.So:___copybits_D2A -regexec.So:_sdissect -signal.So:_signal -gdtoa-dmisc.So:___nrv_alloc_D2A -asinacos.o:_asin -setlocale.So:_currentlocale -sem_open.So:_sem_open -sem_close.So:_sem_close -getchar.So:_getchar -lookupUser.o:___MIG_check__Reply___lookup_all_secure_t -lu_user.o:_lu_getpwuid -xdr_rec.o:_xdrrec_skiprecord +getsockopt.So:_getsockopt +setsockopt.So:_setsockopt +bind.So:_bind +clnt_tcp.o:_clnttcp_create +xdr_mem.o:_xdrmem_create +rpc_prot.o:_xdr_callhdr +xdr.o:_xdr_u_long +xdr_mem.o:_xdrmem_putlong_aligned +xdr.o:_xdr_enum +xdr.o:_xdr_long +xdr_mem.o:_xdrmem_getpos +xdr_mem.o:_xdrmem_destroy +xdr_rec.o:_xdrrec_create +xdr_rec.o:_fix_buf_size +auth_none.o:_authnone_create +rpc_prot.o:_xdr_opaque_auth +xdr.o:_xdr_bytes +xdr.o:_xdr_u_int +xdr.o:_xdr_opaque +clnt_tcp.o:_clnttcp_control +ni_glue.o:_getmyport +ni_glue.o:_createauth +ni_prot_clnt.o:__ni_self_2 +clnt_tcp.o:_clnttcp_call +xdr_rec.o:_xdrrec_putbytes +xdr_rec.o:_xdrrec_putlong +auth_none.o:_authnone_marshal +ni_prot_xdr.o:_xdr_ni_id xdr_rec.o:_xdrrec_endofrecord +xdr_rec.o:_flush_out +clnt_tcp.o:_writetcp +xdr_rec.o:_xdrrec_skiprecord +rpc_prot.o:_xdr_replymsg +xdr_rec.o:_xdrrec_getlong +xdr_rec.o:_xdrrec_getbytes +xdr_rec.o:_set_input_fragment +xdr_rec.o:_get_input_bytes +xdr_rec.o:_fill_input_buf +clnt_tcp.o:_readtcp +select.So:_select +xdr.o:_xdr_union +rpc_prot.o:_xdr_accepted_reply xdr.o:_xdr_void rpc_prot.o:__seterr_reply -clnt_tcp.o:_clnttcp_control -getlogin.So:_getlogin -getlogin.So:_getlogin_basic -auth_unix.o:_authunix_marshal -auth_unix.o:_authunix_validate -ni_util.o:_ni_idlist_free -ni_glue.o:_ni_self -ni_prot_clnt.o:__ni_self_2 +auth_none.o:_authnone_validate ni_prot_xdr.o:_xdr_ni_id_res -ni_glue.o:_ni_lookup -ni_prot_clnt.o:__ni_lookup_2 -ni_prot_xdr.o:_xdr_ni_lookup_res -setgid.So:_setgid -pthread.So:_pthread_attr_setscope -scalable_malloc.So:_szone_force_unlock -getvfsbyname.So:_getvfsbyname -keymgr.o:__keymgr_init_per_thread_data -arch.o:_NXGetLocalArchInfo -mach_portUser.So:_mach_port_get_attributes -mach_portUser.So:_mach_port_move_member -mach_traps.So:_mach_timebase_info -mkdir.So:_mkdir -wsetup.So:___swsetup -objectfileimage.o:_get_arch_from_host -objectfileimage.o:_ofi_alloc -objectfileimage.o:_ofile_map_from_memory -objectfileimage.o:_savestr -getgid.So:_getgid -setuid.So:_setuid -lu_utils.o:__lu_data_set_key -_exit.So:__exit -memory_funcs.o:_NXCloseMemory -memory_funcs.o:_NXGetMemoryBuffer -gdtoa-smisc.So:___s2b_D2A -inet_pton.o:_inet_pton -inet_ntop.o:_inet_ntop6 -getifaddrs.o:_freeifaddrs -getsockopt.So:_getsockopt -pthread_mutex.So:_pthread_mutexattr_settype -writev.So:_writev +ni_prot_xdr.o:_xdr_ni_status +ni_glue.o:_ni_free +ni_glue.o:_clnt_kill +auth_none.o:_authnone_destroy +clnt_tcp.o:_clnttcp_destroy +xdr_rec.o:_xdrrec_destroy +uname.So:_uname +sscanf-LDBL.So:_sscanf +vfscanf-LDBL.So:___svfscanf +strtoumax.So:_strtoumax +sendto.So:_sendto +localtime.So:_localtime +localtime.So:_tzset_basic +localtime.So:_tzload +access.So:_access +localtime.So:_notify_register_tz +timezone_unix03.So:__st_set_timezone +getcwd.So:_getcwd +lstat.So:_lstat +strcat.So:_strcat +printf-LDBL.So:_printf +findfp.So:___sinit isatty.So:_isatty -dyld_support.o:_NSIsSymbolNameDefinedWithHint -fpmacros.o:___fpclassifyf -pthread.So:__pthread_testcancel -multi_call.o:_multi_call -gethostname.So:_gethostname -waitpid.So:_waitpid -logb.o:_logbf -dyld_support.o:_NSLookupAndBindSymbolWithHint -strerror.So:_errstr -svc_run.o:_svc_run -readdir.So:_readdir_r -DNSServiceDiscovery.o:_DNSServiceDiscoveryDeallocate -frexpldexp.o:_frexp -sysctlnametomib.So:_sysctlnametomib -atan2.o:_atan2 -shm_open.So:_shm_open -lu_user.o:_copy_user_r -lu_user.o:_free_user -ni_util.o:_ni_namelist_match -ni_prot_xdr.o:_xdr_ni_lookup_stuff -pthread.So:_pthread_attr_setstacksize -scalable_malloc.So:_szone_force_lock -mig_support.So:_mig_fork_child -mach_init.So:_fork_mach_init -pthread.So:_sem_pool_reset -strspn.So:_strspn -lmonetary.So:___get_current_monetary_locale -lnumeric.So:___get_current_numeric_locale -getenv.So:___findenv -taskUser.So:_task_set_special_port -dup2.So:_dup2 -execve.So:_execve -ni_prot_xdr.o:_xdr_ni_entry -xdr_reference.o:_xdr_pointer -xdr.o:_xdr_bool -xdr_reference.o:_xdr_reference -DNSServiceDiscoveryReplyServer.o:___MIG_check__Request__DNSServiceBrowserReply_rpc_t -labs.So:_labs +putchar.So:_putchar +puts.So:_puts +vm_mapUser.So:_vm_deallocate statfs.So:_statfs -mach_init.So:_mach_init -get_cpu_capabilities.So:__get_cpu_capabilities -getopt.So:_getopt findfp.So:__cleanup -arc4random.So:_arc4_stir -getfsstat.So:_getfsstat -streams_doscan.o:_NXVScanf -streams_doscan.o:__innum -memory_funcs.o:_verify_memory_stream -rndint.o:_round -gdtoa-misc.So:___diff_D2A -pselect.So:_pselect -freopen.So:_freopen -utimes.So:_utimes -sendmsg.So:_sendmsg -ni_glue.o:_shuffle -taskUser.So:_thread_create -thread_actUser.So:_thread_set_state -pthread.So:_pthread_getschedparam -thread_actUser.So:_thread_resume +fwalk.So:__fwalk +ni_prot_xdr.o:_xdr_ni_rparent_res +ni_prot_xdr.o:_xdr_ni_binding +ni_prot_xdr.o:_xdr_ni_name +xdr.o:_xdr_string +ni_glue.o:_ni_new +ni_glue.o:_ni_clear +ni_glue.o:_get_daddr +ni_glue.o:_ni_statistics +clnt_udp.o:_clntudp_bufcreate +clnt_udp.o:_clntudp_call +xdr_mem.o:_xdrmem_setpos +xdr_mem.o:_xdrmem_putbytes +pmap_prot.o:_xdr_pmap +recvfrom.So:_recvfrom +xdr_mem.o:_xdrmem_getlong_aligned +xdr.o:_xdr_u_short +clnt_udp.o:_clntudp_destroy +clnt_udp.o:_clntudp_create +nibind_prot_xdr.o:_xdr_nibind_getregister_res +nibind_prot_xdr.o:_xdr_nibind_addrinfo +ni_prot_clnt.o:__ni_statistics_2 +ni_prot_xdr.o:_xdr_ni_proplist +xdr_array.o:_xdr_array +ni_prot_xdr.o:_xdr_ni_property +ni_prot_xdr.o:_xdr_ni_namelist +ni_util.o:_ni_proplist_match +ni_util.o:_ni_name_match +inet_addr.So:_inet_aton +strtoul.So:_strtoul +ni_util.o:_ni_proplist_free +ni_util.o:_ni_prop_free +ni_util.o:_ni_namelist_free +sys_interfaces.o:__libinfo_ni_sys_interfaces +getifaddrs.o:_getifaddrs +getifaddrs.o:_freeifaddrs +ni_glue.o:_ni_swap +sys_interfaces.o:__libinfo_ni_sys_is_my_address +sys_interfaces.o:__libinfo_ni_sys_is_my_network +sys_interfaces.o:__libinfo_ni_sys_interfaces_release +inet_ntoa.So:_inet_ntoa +inet_ntop.o:_inet_ntop +inet_ntop.o:_inet_ntop4 +sprintf.So:_sprintf$LDBL128 +syslog.So:_syslog$LDBL128 +syslog.So:_vsyslog$LDBL128 +snprintf.So:_snprintf$LDBL128 +strftime.So:_strftime +localtime.So:_tzset +strftime.So:__st_fmt +timelocal.So:___get_current_time_locale +crt_externs.So:__NSGetArgv +dyldAPIsInLibSystem.o:__dyld_lookup_and_bind +dyldLock-B32866A3.o:__ZN16LockWriterHelperC1Ev +dyldLock-B32866A3.o:__ZN25RecursiveReaderWriterLock26lockForSingleWritingThreadEv +vsnprintf.So:_vsnprintf$LDBL128 +send.So:_send +multi_call.o:_multi_call +getgroups.So:_getgroups +authunix_prot.o:_xdr_authunix_parms +xdr.o:_xdr_int +rpc_callmsg.o:_xdr_callmsg +xdr_mem.o:_xdrmem_inline_aligned +ni_glue.o:_eachresult +clnt_udp.o:_clntudp_control +ni_glue.o:_ni_switch +ni_glue.o:_reinit +xdr.o:_xdr_free +fflush.So:___fflush +fwrite.So:_fwrite +rename.So:_rename +fflush.So:_fflush +notify_client.o:_notify_cancel +notify_ipcUser.o:__notify_server_cancel +notify_client.o:_token_table_delete +table.o:__nc_table_delete_n +utime.So:_utime +utimes.So:_utimes +ni_glue.o:_ni_lookup +ni_prot_clnt.o:__ni_lookup_2 +ni_prot_xdr.o:_xdr_ni_lookup_args +ni_prot_xdr.o:_xdr_ni_lookup_res +ni_prot_xdr.o:_xdr_ni_lookup_stuff +ni_prot_xdr.o:_xdr_ni_idlist +sscanf-LDBL.So:_eofread +srvbootstrapUser.So:_bootstrap_check_in +localtime.So:_ctime +asctime.So:_asctime +memchr.So:_memchr +syslog-LDBL.So:_vsyslog +syslog.So:__sl_init_notify +snprintf-LDBL.So:_snprintf +vsnprintf-LDBL.So:_vsnprintf +notify_client.o:_notify_monitor_file +notify_ipcUser.o:__notify_server_monitor_file +inet_ntop.o:_inet_ntop6 +notify_client.o:_notify_register_signal +notify_ipcUser.o:__notify_server_register_signal +pthread.So:_pthread_attr_init +pthread.So:_pthread_attr_setdetachstate +pthread.So:_pthread_create +vm_mapUser.So:_vm_map +vm_mapUser.So:_vm_protect +malloc.So:_set_malloc_singlethreaded +thread_setup.So:__pthread_setup +taskUser.So:_thread_create_running +pthread.So:__pthread_body +pthread_set_self.So:___pthread_set_self +mach_traps.So:_mach_reply_port +pthread.So:_new_sem_from_pool +taskUser.So:_semaphore_create +semaphore.So:_semaphore_wait_signal +mach_traps.So:_semaphore_wait_signal_trap +pthread.So:_pthread_attr_destroy +pthread.So:_sched_yield +mach_traps.So:_swtch_pri +semaphore.So:_semaphore_signal +mach_traps.So:_semaphore_signal_trap +semaphore.So:_semaphore_wait +mach_traps.So:_semaphore_wait_trap +pthread.So:_restore_sem_to_pool +lu_utils.o:__lookup_all +lookupUser.o:__lookup_all_secure +common.o:__notify_lib_cancel +common.o:__internal_cancel +table.o:__nc_list_find_release +table.o:__nc_list_release +pthread.So:_pthread_exit +pthread_tsd.So:__pthread_tsd_cleanup +mach_msg.So:_mach_msg_send +mach_init.So:_mach_thread_self +mach_traps.So:_thread_self_trap +thread_actUser.So:_thread_terminate +table.o:__nc_list_data +mach_portUser.So:_mach_port_mod_refs +dyldAPIsInLibSystem.o:_NSCreateObjectFileImageFromFile +dyldAPIsInLibSystem.o:_NSLinkModule +table.o:__nc_list_chop +keymgr.o:_dwarf2_unwind_dyld_add_image_hook +getsecbyname.o:_getsectdatafromheader +getsecbyname.o:_getsectbynamefromheader +keymgr.o:__keymgr_get_and_lock_processwide_ptr_2 +keymgr.o:_get_or_create_key_element +keymgr.o:_find_key_data +keymgr.o:__keymgr_set_and_unlock_processwide_ptr +keymgr.o:_unlock_node +dyldAPIsInLibSystem.o:_NSLookupSymbolInModule +dyldAPIsInLibSystem.o:_NSAddressOfSymbol +_flock_stub.So:_flockfile +_flock_stub.So:_funlockfile +ni_glue.o:_ni_setpassword +auth_unix.o:_authunix_create +auth_unix.o:_marshal_new_auth +auth_unix.o:_authunix_marshal +auth_unix.o:_authunix_validate +auth_unix.o:_authunix_destroy +fgets.So:_fgets +inet_pton.o:_inet_pton +mach_portUser.So:_mach_port_deallocate +inet_pton.o:_inet_pton4 +strcasecmp.So:_strcasecmp +random.So:_random +common.o:__notify_lib_get_state +pselect.So:_pselect +recvmsg.So:_recvmsg +if_nametoindex.o:_if_nametoindex +table.o:__nc_table_delete +getprogname.So:_getprogname +crt_externs.So:__NSGetProgname +dyldAPIsInLibSystem.o:_NSIsSymbolNameDefined +kqueue.So:_kqueue +kevent.So:_kevent +liblaunch.o:_launch_data_new_string +liblaunch.o:_launch_data_alloc +liblaunch.o:_launch_data_set_string +liblaunch.o:_launch_get_fd +liblaunch.o:_launch_client_init +liblaunch.o:__fd +liblaunch.o:_launchd_fdopen +liblaunch.o:_launch_msg +liblaunch.o:_launchd_msg_send +liblaunch.o:_make_msg_and_cmsg +sendmsg.So:_sendmsg +liblaunch.o:_launchd_msg_recv +liblaunch.o:_make_data +liblaunch.o:_launch_msg_getmsgs +liblaunch.o:_launch_data_get_type +liblaunch.o:_launch_data_dict_lookup +liblaunch.o:_launch_data_copy +liblaunch.o:_launch_data_free +mach_portUser.So:_mach_port_destroy +liblaunch.o:_launch_data_dict_iterate +liblaunch.o:_launch_data_get_string +syslog-LDBL.So:_syslog +pthread.So:_pthread_attr_setscope +pipe.So:_pipe +pthread_cond.So:_pthread_cond_wait +semaphore.So:_semaphore_signal_all +mach_traps.So:_semaphore_signal_all_trap +strstr.So:_strstr +dyldAPIsInLibSystem.o:_dlopen +dyldAPIsInLibSystem.o:__Z29getPerThreadBufferFor_dlerrorj +lu_user.o:_extract_user +lu_utils.o:__lu_xdr_attribute +xdr_mem.o:_xdrmem_getbytes +lu_user.o:_copy_user +lu_user.o:_endpwent +lu_user.o:_lu_endpwent +lu_utils.o:__lu_data_free_vm_xdr +table.o:__nc_list_next +table.o:__nc_list_append +getpgrp.So:_getpgrp +dup2.So:_dup2 +mbrlen.So:_mbrlen +none.So:__none_mbrtowc +pthread_cond.So:_pthread_cond_signal +strncat.So:_strncat +umask.So:_umask +vsprintf-LDBL.So:_vsprintf +fputs.So:_fputs +dyldAPIsInLibSystem.o:_NSVersionOfLinkTimeLibrary +crt_externs.So:__NSGetMachExecuteHeader +dyldAPIsInLibSystem.o:__Z11names_matchPcPKc +pthread_mutex.So:_pthread_mutex_destroy +fork.So:_fork +cthreads.So:__cthread_fork_prepare +malloc.So:__malloc_fork_prepare +scalable_malloc.So:_szone_force_lock +cthreads.So:__cthread_fork_parent +malloc.So:__malloc_fork_parent +scalable_malloc.So:_szone_force_unlock +waitpid.So:_waitpid +wait4.So:_wait4 +longjmp.So:.section_all +sigcompat.So:_sigsetmask +_longjmp.So:__longjmp +dyldAPIsInLibSystem.o:_dlsym +malloc.So:_malloc_good_size +scalable_malloc.So:_szone_good_size +NSSystemDirectories.So:_NSStartSearchPathEnumeration +NSSystemDirectories.So:_NSGetNextSearchPathEnumeration +wbuf.So:___swbuf +ferror.So:_ferror +getsecbyname.o:_getsectdata +getsecbyname.o:_getsectbyname +dyldAPIsInLibSystem.o:__dyld_get_image_header +dyldAPIsInLibSystem.o:__dyld_image_count +dyldAPIsInLibSystem.o:__dyld_get_image_vmaddr_slide +dyldAPIsInLibSystem.o:__dyld_get_image_name +malloc.So:_malloc_zone_realloc +mach_portUser.So:_mach_port_allocate +mach_portUser.So:_mach_port_request_notification +pthread.So:_pthread_main_np +mach_portUser.So:_mach_port_insert_right +mach_portUser.So:_mach_port_set_attributes +mach_portUser.So:_mach_port_insert_member +mach_absolute_time.So:_mach_absolute_time +mach_traps.So:_mk_timer_create +mach_traps.So:_mk_timer_arm +daemon.So:_daemon +err-LDBL.So:_warnx +err.So:_err_set_file +fputc.So:_fputc +regcomp.So:_regcomp +regcomp.So:_doemit +mbrtowc.So:_mbrtowc +wcrtomb.So:_wcrtomb +none.So:__none_wcrtomb +getc.So:_getc +rget.So:___srget +ungetc.So:_ungetc +fgetln.So:_fgetln +regexec.So:_regexec +regexec.So:_smatcher +regexec.So:_sstep +cthreads.So:_pthread_atfork +strtoll.So:_strtoll +gdtoa-strtod.So:_strtod +strtoull.So:_strtoull +mach_portUser.So:_mach_port_extract_member +mach_traps.So:_mk_timer_destroy +localtime.So:_localtime_r +atof.So:_atof +gdtoa-dtoa.So:___dtoa +gdtoa-misc.So:___d2b_D2A +gdtoa-dmisc.So:___rv_alloc_D2A +gdtoa-misc.So:___Balloc_D2A +gdtoa-misc.So:___Bfree_D2A +gdtoa-dmisc.So:___freedtoa +getrlimit.So:_getrlimit +setrlimit.So:_setrlimit +basename.So:_basename +strpbrk.So:_strpbrk +readdir.So:_readdir_r +strerror.So:_strerror +setitimer.So:_setitimer +socketpair.So:_socketpair +pthread.So:_pthread_attr_setstacksize +liblaunch.o:_launch_data_get_integer +recv.So:_recv +mach_init.So:_mach_host_self +mach_traps.So:_host_self_trap +mach_hostUser.So:_host_get_io_master +sync.So:_sync +setbuffer.So:_setlinebuf +fdopen.So:_fdopen +rewind.So:_rewind +fseek.So:__fseeko +ftell.So:_ftell +ftruncate.So:_ftruncate +seteuid.So:_seteuid +chdir.So:_chdir +setenv.So:_setenv +getenv.So:___findenv +setuid.So:_setuid +setgid.So:_setgid +strlcpy.So:_strlcpy +link.So:_link +strtofflags.So:_strtofflags +strsep.So:_strsep +fts.So:_fts_open +fts.So:_fts_read +fchdir.So:_fchdir +fts.So:_fts_build +opendir.So:___opendir2 +chflags.So:_chflags +rindex.So:_rindex +get_compat.So:_compat_mode +get_compat.So:_check_env_var +rmdir.So:_rmdir +dyldAPIsInLibSystem.o:__NSGetExecutablePath +ni_useful.o:_ni_open +ni_useful.o:_ni_fancyopen +ni_useful.o:_ni_relopen +ni_useful.o:_escindex +ni_useful.o:_unescape +ni_useful.o:_setstuff +ni_glue.o:_ni_needwrite +ni_glue.o:_ni_setwritetimeout +ni_glue.o:_ni_root +ni_prot_clnt.o:__ni_root_2 +ni_useful.o:_ni_pathsearch +ni_useful.o:_eatslash +ni_useful.o:_ni_relsearch +ni_useful.o:_ni_name_dupn +ni_error.o:_ni_error +getopt_long.So:_getopt_long +getopt_long.So:_getopt_internal +wctype.So:_wctype +btowc.So:_btowc +strerror.So:_strerror_r +putc.So:_putc +sigcompat.So:_sigset +sleep.So:_sleep +nanosleep.So:_nanosleep +mach_traps.So:_mach_timebase_info +_fixunsdfdi.o:___fixunsdfdi +mach_traps.So:_mach_wait_until +msync.So:_msync +sysctlbyname.So:_sysctlbyname +arch.o:_NXGetLocalArchInfo +mach_hostUser.So:_host_info +arch.o:_NXGetArchInfoFromCpuType +arch.o:_NXFindBestFatArch +malloc.So:_malloc_create_zone +scalable_malloc.So:_create_scalable_zone +malloc.So:_malloc_set_zone_name +scalable_malloc.So:_tiny_malloc_from_region_no_lock +fchown.So:_fchown +fchmod.So:_fchmod +setlogin.So:_setlogin +_setlogin.So:__setlogin +vm_mapUser.So:_vm_map_64 +vm_mapUser.So:_mach_make_memory_entry_64 +srvbootstrapUser.So:_bootstrap_subset +srvbootstrapUser.So:_bootstrap_register +dyldAPIsInLibSystem.o:_dlclose +rndint.o:_rint +remmod.o:_fmod +fpmacros.o:___fpclassifyd +bzero.So:_bzero +pthread_mutex.So:_pthread_mutexattr_init +pthread_mutex.So:_pthread_mutexattr_destroy +chown.So:_chown +chmod.So:_chmod +notify_client.o:_notify_post +notify_ipcUser.o:__notify_server_post +mach_portUser.So:_mach_port_move_member +mach_traps.So:_map_fd +ceilfloor.o:_floor +fpmacros.o:___isnand +rndint.o:_roundf +rndint.o:_truncf +crt_externs.So:__NSGetArgc +strcasestr.So:_strcasestr +strcasecmp.So:_strncasecmp +usleep.So:_usleep +pthread.So:_pthread_setcanceltype pthread.So:_pthread_testcancel -pthread.So:_pthread_join +pause.So:_pause +sigcompat.So:_sigblock +sigcompat.So:_sigpause +sigsuspend.So:_sigsuspend +setbuf.So:_setbuf +mach_traps.So:_task_for_pid +fpmacros.o:___isinfd +svc_udp.o:_svcudp_create +svc_udp.o:_svcudp_bufcreate +svc.o:_xprt_register +svc.o:_svc_register +svc.o:_svc_find +res_init.o:_res_init +res_init.o:___res_randomid +popen.So:_popen +vfork.So:_vfork +execve.So:_execve +fscanf-LDBL.So:_fscanf +malloc.So:_malloc_size +pathconf.So:_pathconf +vm_mapUser.So:_vm_inherit +mach_hostUser.So:_host_kernel_version +mach_hostUser.So:_processor_set_default +processor_setUser.So:_processor_set_info +processor_setUser.So:_processor_set_statistics +slot_name.So:_slot_name +popen.So:_pclose +gdtoa-dmisc.So:___nrv_alloc_D2A +notify_client.o:_notify_register_mach_port +notify_ipcUser.o:__notify_server_register_mach_port +notify_client.o:_token_table_add_mach_port +mkdir.So:_mkdir +mount.So:_mount +svc.o:_svc_getreqset +svc_udp.o:_svcudp_recv +svc_auth.o:__authenticate +svc_auth_unix.o:__svcauth_unix +svc_udp.o:_svcudp_getargs +svc.o:_svc_sendreply +svc_udp.o:_svcudp_reply +svc_udp.o:_svcudp_freeargs +svc_udp.o:_svcudp_stat +sysctlnametomib.So:_sysctlnametomib +srvbootstrapUser.So:_bootstrap_parent +kill.So:_kill +symlink.So:_symlink +pthread_mutex.So:_pthread_mutex_trylock +malloc.So:_valloc +scalable_malloc.So:_szone_valloc +getdirentriesattr.So:_getdirentriesattr +vm_mapUser.So:_vm_copy +vm_mapUser.So:_vm_purgable_control +power.o:_pow +power.o:_PowerInner +mach_portUser.So:_mach_port_get_attributes +fabs.o:_fabs +host_privUser.So:_host_processor_set_priv +thread_actUser.So:_thread_set_policy +munmap.So:_munmap +realpath.So:_realpath +strlcat.So:_strlcat +readlink.So:_readlink +taskUser.So:_task_set_special_port +ms_thread_switch.So:_thread_switch +mach_traps.So:_syscall_thread_switch +pthread_mutex.So:_pthread_mutexattr_settype +setegid.So:_setegid +FastSinCos.o:_cos +mach_msg.So:_mach_msg_overwrite +mach_traps.So:_mach_msg_overwrite_trap +lu_fstab.o:_setfsent +lu_fstab.o:_lu_endfsent +lu_fstab.o:_getfsent +lu_fstab.o:_getfs +lu_fstab.o:_lu_getfsent +ni_glue.o:_ni_children +ni_prot_clnt.o:__ni_children_2 +ni_prot_xdr.o:_xdr_ni_children_res +ni_prot_xdr.o:_xdr_ni_children_stuff +ni_glue.o:_ni_read +ni_prot_clnt.o:__ni_read_2 +ni_prot_xdr.o:_xdr_ni_proplist_res +ni_prot_xdr.o:_xdr_ni_proplist_stuff +dyldAPIsInLibSystem.o:_NSAddImage +dyldAPIsInLibSystem.o:_NSIsSymbolNameDefinedInImage +dyldAPIsInLibSystem.o:_NSLookupSymbolInImage +pread.So:_pread +pthread_cond.So:_pthread_cond_destroy +pthread.So:_pthread_mach_thread_np +thread_actUser.So:_thread_info +thread_actUser.So:_thread_policy +mach_portUser.So:_mach_port_rename +thread_actUser.So:_thread_swap_exception_ports +setattrlist.So:_setattrlist +db.So:_dbopen +bt_open.So:___bt_open +mpool.So:_mpool_open +_divdi3.o:___divdi3 +mpool.So:_mpool_filter +mpool.So:_mpool_get +bt_conv.So:___bt_pgin +mpool.So:_mpool_put +bt_get.So:___bt_get +bt_search.So:___bt_search +bt_utils.So:___bt_cmp +bt_utils.So:___bt_defcmp +bt_utils.So:___bt_ret +bt_seq.So:___bt_seq +bt_close.So:___bt_sync +fsync.So:_fsync +_cmpdi2.o:___cmpdi2 +_floatdidf.o:___floatdidf +localtime.So:_mktime +localtime.So:_time2sub +localtime.So:_localsub +localtime.So:_gmtime +issetugid.So:_issetugid +lu_fstab.o:_extract_fstab +lu_fstab.o:_free_fstab_data +logb.o:_logb +scalb.o:_scalbn +malloc.So:_malloc_zone_from_ptr +mach_traps.So:_mk_timer_cancel +dyldAPIsInLibSystem.o:__dyld_present +pthread_tsd.So:_pthread_key_delete +syslog.So:_closelog +getttyent.So:_setttyent +getttyent.So:_getttyent +getttyent.So:_endttyent +taskUser.So:_task_policy_set +_moddi3.o:___moddi3 +pthread.So:_pthread_get_stackaddr_np +pthread.So:_pthread_get_stacksize_np +fpmacros.o:___isnanf +fpmacros.o:___isinff +ptrace.So:_ptrace +srvbootstrapUser.So:_bootstrap_create_server +srvbootstrapUser.So:_bootstrap_create_service +taskUser.So:_task_threads +thread_actUser.So:_thread_get_state +rndint.o:_rintf +mig_support.So:_mig_put_reply_port +lu_user.o:_getpwnam_r +lu_user.o:_getpw_r +lu_user.o:_lu_getpwnam +_lu_types_xdr.o:_xdr__lu_string +lu_user.o:_free_user +lu_user.o:_free_user_data +mach_msg.So:_mach_msg_destroy +system.So:_system +ppc_gettimeofday.So:___ppc_gettimeofday +lu_user.o:_getpwuid_r +fsctl.So:_fsctl +pthread_rwlock.So:_pthread_rwlockattr_init +pthread_rwlock.So:_pthread_rwlock_init +pthread_rwlock.So:_pthread_rwlockattr_destroy +pthread_rwlock.So:_pthread_rwlock_rdlock +pthread_rwlock.So:_pthread_rwlock_unlock +pthread_rwlock.So:_pthread_rwlock_wrlock +setpriority.So:_setpriority +fts.So:_fts_children +fts.So:_fts_close +keymgr.o:__keymgr_get_per_thread_data +keymgr.o:_get_key_element +keymgr.o:__keymgr_set_per_thread_data +keymgr.o:__keymgr_get_and_lock_processwide_ptr +pwrite.So:_pwrite +pthread_cond.So:_pthread_cond_timedwait +semaphore.So:_semaphore_timedwait_signal +mach_traps.So:_semaphore_timedwait_signal_trap +gdtoa-strtof.So:_strtof +gdtoa-strtodg.So:___strtodg +gdtoa-misc.So:___lshift_D2A +gdtoa-smisc.So:___copybits_D2A gdtoa-smisc.So:___any_on_D2A gdtoa-gmisc.So:___rshift_D2A -vprintf.So:_vprintf -sem_trywait.So:_sem_trywait -sem_post.So:_sem_post -thread_actUser.So:_thread_policy_set -regexec.So:_lmatcher +gdtoa-misc.So:___hi0bits_D2A +gdtoa-smisc.So:___s2b_D2A +gdtoa-misc.So:___i2b_D2A +gdtoa-misc.So:___pow5mult_D2A +gdtoa-misc.So:___diff_D2A +gdtoa-misc.So:___cmp_D2A +ceilfloor.o:_ceil +lu_fstab.o:_free_fstab +lu_fstab.o:_endfsent +mach_portUser.So:_mach_port_get_refs +membership.o:_mbr_string_to_uuid +membership.o:_mbr_check_service_membership +membership.o:_mbr_group_name_to_uuid +membership.o:_GetServerPort +memberdUser.o:__mbr_MapName +memberdUser.o:___NDR_convert__mig_reply_error_t +semaphore.So:_semaphore_signal_thread +mach_traps.So:_semaphore_signal_thread_trap +mig_deallocate.So:_mig_deallocate +lu_user.o:_getpwnam +searchfs.So:_searchfs +keymgr.o:__keymgr_unlock_processwide_ptr +atol.So:_atol +auditon.So:_auditon +lu_utils.So:__lookupd_port +lu_utils.o:__lookup_one +lookupUser.o:__lookup_one_secure +lu_group.o:_getgrouplist +lu_group.o:_getgrouplist_internal +memberdUser.o:__mbr_GetGroups +lu_group.o:_initgroups +setgroups.So:_setgroups +bt_close.So:___bt_close +mpool.So:_mpool_close +mach_traps.So:_macx_backing_store_recovery +host_privUser.So:_get_dp_control_port +mach_portUser.So:_mach_port_extract_right +mlock.So:_mlock +host_privUser.So:_vm_wire +setreuid.So:_setreuid +lu_host.o:_gethostbyname +lu_host.o:_gethostbynameerrno +lu_host.o:_cache_gethostbyname +lu_host.o:_lu_gethostbyname +lu_host.o:_extract_host +lu_host.o:_cache_host +lu_host.o:_copy_host +lu_host.o:_recycle_host +clnt_perror.o:_clnt_spcreateerror +clnt_perror.o:__buf +clnt_perror.o:_clnt_sperrno +pmap_getport.o:_pmap_getport +pmap_wakeup.o:_pmap_wakeup +liblaunch.o:_launch_data_get_fd +svc_tcp.o:_svctcp_create +listen.So:_listen +accept.So:_accept +auth_unix.o:_authunix_create_default +clnt_udp.o:_clntudp_freeres +vm_mapUser.So:_mach_make_memory_entry +liblaunch.o:_launch_data_array_get_count +fgetc.So:_fgetc +getvfsbyname.So:_getvfsbyname +shm_unlink.So:_shm_unlink +isctype.So:_isdigit +srvbootstrapUser.So:_bootstrap_unprivileged +ceilfloor.o:_floorf +ceilfloor.o:_ceilf +abs.So:_abs +tableLogD.o:_log +FastSinCos.o:_sin +finite.o:_finite +fpmacros.o:___isfinited +clock_sleep.So:_clock_sleep +mach_traps.So:_clock_sleep_trap +pty.So:_openpty +lu_group.o:_getgrnam +lu_group.o:_getgr +lu_group.o:_getgr_internal lu_group.o:_extract_group lu_group.o:_copy_group -DNSServiceDiscovery.o:_DNSServiceResolverResolve -realpath.So:_realpath -zone.So:_NXZoneRealloc -msync.So:_msync -lu_user.o:_getpw_r -svc_tcp.o:_svctcp_recv -xdr_rec.o:_xdrrec_inline -svc_tcp.o:_readtcp -svc_auth.o:__svcauth_null -svc_tcp.o:_svctcp_getargs -svc_tcp.o:_svctcp_reply -ni_prot_xdr.o:_xdr_ni_namelist_res -ni_prot_xdr.o:_xdr_ni_namelist_stuff -svc_tcp.o:_writetcp -auth_none.o:_authnone_validate -ni_prot_clnt.o:__ni_listprops_2 -ni_glue.o:_ni_listprops -ni_glue.o:_ni_readprop -ni_prot_clnt.o:__ni_readprop_2 -auth_none.o:_authnone_marshal -ni_prot_xdr.o:_xdr_ni_prop_args -svc_tcp.o:_svctcp_freeargs -svc_tcp.o:_svctcp_stat -xdr_rec.o:_xdrrec_eof -ni_util.o:_ni_namelist_dup -_getlogin.So:__getlogin -lu_utils.o:__lookup_link -lookupUser.o:___MIG_check__Reply___lookup_link_secure_t -setlogin.So:_setlogin -_setlogin.So:__setlogin -lu_group.o:_initgroups -lu_group.o:_lu_initgroups -lu_group.o:_lu_getgrouplist -ni_glue.o:_ni_setreadtimeout -ni_glue.o:_ni_setabort -ni_glue.o:_ni_statistics -ni_prot_clnt.o:__ni_statistics_2 -ni_prot_xdr.o:_xdr_ni_proplist -ni_prot_xdr.o:_xdr_ni_idlist -ni_glue.o:_ni_read -ni_prot_clnt.o:__ni_read_2 -ni_prot_xdr.o:_xdr_ni_proplist_res -ni_prot_xdr.o:_xdr_ni_proplist_stuff -getgroups.So:_getgroups -unlink.So:_unlink -fgetc.So:_fgetc -lu_user.o:_getpwuid -lu_user.o:_endpwent -lu_user.o:_lu_endpwent -lu_utils.o:__lu_data_free_vm_xdr -rewind.So:_rewind -keymgr.o:__keymgr_get_per_thread_data -keymgr.o:__keymgr_set_per_thread_data -keymgr.o:__keymgr_unlock_key -mach_traps.So:_pid_for_task -arch.o:_NXGetArchInfoFromCpuType -arch.o:_NXFindBestFatArch -crt_externs.So:__NSGetMachExecuteHeader -mach_traps.So:_task_for_pid -setpgid.So:_setpgid -chdir.So:_chdir -exec.So:_execle -malloc.So:_valloc -malloc.So:_malloc_zone_valloc -scalable_malloc.So:_szone_valloc -rmdir.So:_rmdir -vfprintf.So:___ujtoa -vm_mapUser.So:_mach_make_memory_entry +grantpt.So:_grantpt +grantpt.So:_ptsname +revoke.So:_revoke +vm_mapUser.So:_vm_write +mach_portUser.So:_mach_port_get_set_status +accessx_np.So:_accessx_np +sqrt.o:___sqrt tg.o:_tan tableExpD.o:_exp -runtime_loading.o:_NSUnLinkModule +rndint.o:_trunc +gdtoa-dmisc.So:___quorem_D2A +gdtoa-misc.So:___multadd_D2A +vm_mapUser.So:_vm_msync +dyldAPIsInLibSystem.o:_NSUnLinkModule keymgr.o:_dwarf2_unwind_dyld_remove_image_hook -objectfileimage.o:_NSDestroyObjectFileImage -objectfileimage.o:_ofi_valid -objectfileimage.o:_ofile_unmap -objectfileimage.o:_ofi_free -objectfileimage.o:_NSCreateObjectFileImageFromFile -objectfileimage.o:_get_host_byte_sex -objectfileimage.o:_check_Mach_O -runtime_loading.o:_NSLinkModule -res_init.o:_res_init -res_init.o:___res_randomid -strpbrk.So:_strpbrk -ni_useful.o:_ni_relsearch -ni_useful.o:_ni_pathsearch -ni_util.o:_ni_search -regcomp.So:_p_bre -regcomp.So:_p_simp_re -regcomp.So:_bothcases -regcomp.So:_allocset -regcomp.So:_p_b_symbol -regcomp.So:_nch -regcomp.So:_freezeset -regcomp.So:_freeset -reallocf.So:_reallocf -regcomp.So:_stripsnug -regcomp.So:_findmust -regcomp.So:_pluscount -ni_glue.o:_ni_list -ni_prot_clnt.o:__ni_list_2 -ni_prot_xdr.o:_xdr_ni_name_args -ni_prot_xdr.o:_xdr_ni_list_res -ni_prot_xdr.o:_xdr_ni_list_stuff -ni_prot_xdr.o:_xdr_ni_entrylist -ni_util.o:_ni_entrylist_free -regfree.So:_regfree -ni_useful.o:_eatslash -ni_useful.o:_escindex -ni_useful.o:_ni_name_dupn -ni_useful.o:_unescape -power.o:__NearbyInt -mach_error_string.So:_mach_error_string -mach_error_string.So:_mach_error_string_int -mach_error_string.So:_do_compat -getdtablesize.So:_getdtablesize -sysconf.So:_sysconf -getrlimit.So:_getrlimit -exec.So:_execv -lu_utils.o:__lu_data_init -lu_utils.o:__lu_data_index -dyld.o:__dyld_get_image_header_containing_address +dyldAPIsInLibSystem.o:_NSDestroyObjectFileImage +pthread.So:_pthread_equal +thread_actUser.So:_thread_policy_set +atan2.o:_atan2 +copysign.o:_copysign +remmod.o:_remainder +putenv.So:_putenv +pthread.So:_pthread_join mktemp.So:_mkstemp -arc4random.So:_arc4random_stir -lu_user.o:_getpwuid_r -gdtoa-smisc.So:___match_D2A -rindex.So:_rindex -findfp.So:___sinit -asinacos.o:_acos -inet_pton.o:_inet_pton4 +arc4random.So:_arc4random +lu_utils.o:__lu_data_free +lu_group.o:_free_lu_thread_info_group +lu_group.o:_free_group +lu_group.o:_free_group_data +sysconf.So:_sysconf +lu_user.o:_setpwent +devname.So:_devname_r +reallocf.So:_reallocf +merge.So:_mergesort +scandir.So:_alphasort +vasprintf-LDBL.So:_vasprintf +killpg.So:_killpg +bt_delete.So:___bt_delete +bt_put.So:___bt_put +bt_delete.So:___bt_dleaf +mpool.So:_mpool_sync +bt_conv.So:___bt_pgout +bt_page.So:___bt_free +unmount.So:_unmount +gdtoa-misc.So:___mult_D2A +liblaunch.o:_launch_data_array_get_index +liblaunch.o:_launch_data_get_bool +strspn.So:_strspn +getaddrinfo.o:_getaddrinfo +getaddrinfo.o:_gai_checkhints +getaddrinfo.o:_gai_lookupd +getaddrinfo.o:_gai_make_query +getaddrinfo.o:_encode_kv +getaddrinfo.o:_gai_lookupd_process_dictionary getaddrinfo.o:_new_addrinfo_v4 getaddrinfo.o:_append_addrinfo -getaddrinfo.o:_freeaddrinfo -socketpair.So:_socketpair +getaddrinfo.o:_new_addrinfo_v6 +arc4random.So:_arc4random_stir +alarm.So:_alarm getpeername.So:_getpeername -kill.So:_kill -ppc_gettimeofday.So:___ppc_gettimeofday -scalable_malloc.So:_large_entries_free_no_lock -getegid.So:_getegid -pathconf.So:_pathconf -regcomp.So:_altoffset -regcomp.So:_computejumps -regcomp.So:_computematchjumps -getsecbyname.o:_getsectdata -mig_support.So:_mig_put_reply_port -regcomp.So:_dofwd -ni_prot_xdr.o:_xdr_ni_rparent_res -basename.So:_basename -setattrlist.So:_setattrlist -bind.So:_bind -listen.So:_listen -accept.So:_accept -lu_host.o:_gethostbynameerrno -lu_host.o:_gethostbyname -lu_host.o:_recycle_host -ni_glue.o:_ni_swap -sys_interfaces.o:_sys_is_my_address -sys_interfaces.o:_sys_is_my_network -ni_glue.o:_connectit -clnt_udp.o:_clntudp_bufcreate -clnt_udp.o:_clntudp_call -bindresvport.o:_bindresvport_sa -notify_client.o:_notify_post -notify_ipcUser.o:__notify_server_post -common.o:__notify_lib_check_controlled_access -notify_ipcUser.o:___MIG_check__Reply___notify_server_post_t -pthread.So:_sched_get_priority_min -pthread.So:_sched_get_priority_max -thread_actUser.So:_thread_set_exception_ports -pthread.So:_pthread_create_suspended_np -mach_hostUser.So:_kmod_get_info -lu_utils.o:__lu_data_free -lu_host.o:_free_lu_thread_info_host -table.o:__nc_table_traverse_start -table.o:__nc_table_traverse -table.o:__nc_list_new -table.o:__nc_list_prepend -table.o:__nc_table_traverse_end -common.o:__notify_lib_cancel -table.o:__nc_table_find_n -table.o:_hash_nkey -table.o:__nc_list_find_release -table.o:__nc_list_release -common.o:__notify_lib_client_release -common.o:_free_client_info -table.o:__nc_table_delete_n -table.o:__nc_list_release_list -fts.So:_fts_close -dyld_support.o:_NSIsSymbolNameDefined -dyld_support.o:_NSLookupAndBindSymbol -vm_mapUser.So:_vm_inherit -pipe.So:_pipe -fts.So:_fts_open -fts.So:_fts_maxarglen -fts.So:_fts_palloc -fts.So:_fts_load -DNSServiceDiscovery.o:_DNSServiceBrowserCreate -DNSServiceDiscovery.o:_DNSServiceDiscoveryLookupServer -scalb.o:_scalbnf -fchmod.So:_fchmod -localtime.So:_settzname -syslog.So:_openlog -keymgr.o:__keymgr_unlock_processwide_ptr -notify_client.o:_notify_register_mach_port -notify_client.o:__notify_lib_init -common.o:__notify_lib_register_mach_port -common.o:__notify_lib_lookup_name_info -common.o:__notify_lib_check_access -common.o:__notify_lib_client_new -table.o:__nc_table_insert_n -notify_ipcUser.o:__notify_server_register_mach_port -notify_ipcUser.o:___MIG_check__Reply___notify_server_register_mach_port_t -notify_client.o:_token_table_add -table.o:__nc_table_new -except.o:_addme -minmaxdim.o:_fminf -vfprintf.So:___sbprintf -wbuf.So:___swbuf -syslog.So:_closelog -rand.So:_srand -localtime.So:_gmtime -localtime.So:_gmtsub -div.So:_div -ualarm.So:_ualarm -vm_mapUser.So:_vm_read -dyld_support.o:_NSAddLibrary -fprintf_stderr.So:_fprintf_stderr +getaddrinfo.o:_getnameinfo +getaddrinfo.o:_freeaddrinfo +getaddrinfo.o:_gni_make_query +getaddrinfo.o:_gni_lookupd_process_dictionary +asl.So:_asl_open +asl-LDBL.So:_asl_log +asl.So:_asl_new +asl.So:_asl_set +asl.So:_asl_set_query +asl.So:_asl_send +asl.So:_asl_free +asl.So:_asl_set_filter +membership.o:_mbr_user_name_to_uuid +lu_protocol.o:_getprotobyname +lu_protocol.o:_getproto +lu_protocol.o:_extract_protocol +lookupUser.o:___NDR_convert__mig_reply_error_t +pthread.So:_pthread_cancel +login.So:_login +ttyslot.So:_ttyslot +termios.So:_tcgetpgrp +termios.So:_cfgetospeed +termios.So:_tcsetpgrp +termios.So:_tcsetattr +setpgid.So:_setpgid +strtok.So:_strtok +nl_langinfo.So:_nl_langinfo +inet_addr.So:_inet_addr mach_error.So:_mach_error -ldiv.So:_ldiv -pthread.So:_pthread_detach -srvbootstrapUser.So:_bootstrap_check_in -setsid.So:_setsid -hash.So:_hash_get -hash.So:_hash_access -hash.So:___call_hash -hash_func.So:_hash4 -hash_buf.So:___get_buf -common.o:__notify_lib_post -common.o:__notify_lib_send -localtime.So:_gmtload -issetugid.So:_issetugid -table.o:__nc_list_chop -pthread.So:_pthread_attr_setschedparam -pthread.So:_pthread_attr_setschedpolicy -mach_traps.So:_mach_wait_until -rndint.o:_lround -malloc.So:_malloc_zone_unregister -lu_group.o:_lu_getgrnam -lu_group.o:_getgr_internal -lu_group.o:_cache_group -lu_group.o:_getgr -lu_group.o:_recycle_group -lu_group.o:_getgrgid -lu_group.o:_cache_getgrgid -lu_group.o:_free_group_data -setrlimit.So:_setrlimit -DNSServiceDiscoveryRequestUser.o:_DNSServiceBrowserCreate_rpc -DNSServiceDiscovery.o:_DNSServiceDiscoveryMachPort -mach_msg.So:_mach_msg_destroy -mach_msg.So:_mach_msg_destroy_port -DNSServiceDiscoveryRequestUser.o:_DNSServiceResolverResolve_rpc -DNSServiceDiscovery.o:__increaseQueueLengthOnPort -DNSServiceDiscoveryReplyServer.o:__XDNSServiceResolverReply_rpc -DNSServiceDiscoveryReplyServer.o:___MIG_check__Request__DNSServiceResolverReply_rpc_t -DNSServiceDiscovery.o:_internal_DNSServiceResolverReply_rpc -copysign.o:_copysign -_longjmp.So:__longjmp -dup.So:_dup -lu_group.o:_getgrnam -lu_group.o:_cache_getgrnam -lu_group.o:_free_group +mach_error_string.So:_mach_error_string_int +fprintf_stderr.So:_fprintf_stderr +vprintf.So:_vprintf$LDBL128 +vfprintf.So:_vfprintf$LDBL128 +vm_mapUser.So:_vm_read +listxattr.So:_listxattr +getusershell.So:_getusershell +getusershell.So:_endusershell +pty.So:_forkpty +utmpx.So:_pututxline +vis.So:_strvisx +unvis.So:_strunvis +fseek.So:_fseeko +lockf.So:_lockf +icacheinval.So:_sys_icache_invalidate +wait3.So:_wait3 +getttyent.So:_getttynam lu_group.o:_endgrent -lu_group.o:_lu_endgrent -vfork.So:_vfork -exec.So:_execvp -ttyname.So:_ttyname -ttyname.So:_ttyname_unthreaded -termios.So:_tcgetattr -putchar.So:_putchar -regcomp.So:_p_b_cclass -mlock.So:_mlock -host_privUser.So:_vm_wire -setpriority.So:_setpriority +lu_group.o:_lu_endgrent +exec.So:_execvp +exec.So:_execvP +logout.So:_logout +fts.So:_fts_set +remove.So:_remove +pthread.So:_pthread_setschedparam getaddrinfo.o:_getaddrinfo_async_start -getaddrinfo.o:_gai_checkhints -getaddrinfo.o:_gai_family_type_check -getaddrinfo.o:_gai_socket_type_check -getaddrinfo.o:_gai_protocol_type_check -getaddrinfo.o:_gai_socket_protocol_type_check -lu_utils.So:__lookupd_port -getaddrinfo.o:_gai_make_query -getaddrinfo.o:_encode_kv lu_utils.o:_lu_async_start -lu_utils.o:__lu_create_request lu_utils.o:__lu_async_send -lu_utils.o:__lu_worklist_append getaddrinfo.o:_getaddrinfo_async_handle_reply lu_utils.o:_lu_async_handle_reply lu_utils.o:__lu_worklist_remove lu_utils.o:__lu_free_request getaddrinfo.o:_gai_extract_data -tableLogD.o:_log10 -mktemp.So:_mkstemps -link.So:_link -ftruncate.So:_ftruncate -mach_init.So:_mach_task_self -regcomp.So:_nonnewline -strtoull.So:_strtoull -exchangedata.So:_exchangedata -auth_unix.o:_authunix_destroy -clnt_tcp.o:_clnttcp_destroy -xdr_rec.o:_xdrrec_destroy -sys_interfaces.o:_sys_interfaces -sys_interfaces.o:_sys_interfaces_release -multi_call.o:_get_hostname -authunix_prot.o:_xdr_authunix_parms -multi_call.o:_decodemsg -nibind_prot_xdr.o:_xdr_nibind_getregister_res -nibind_prot_xdr.o:_xdr_nibind_addrinfo -ni_glue.o:_eachresult -ni_glue.o:_ni_switch -ni_glue.o:_reinit -xdr.o:_xdr_free -ni_glue.o:_fixtimeout -ni_glue.o:_socket_open -ni_glue.o:_pmap_getport_to -rpc_prot.o:_xdr_callhdr -auth_none.o:_authnone_create -pmap_prot.o:_xdr_pmap -xdr.o:_xdr_u_short -clnt_udp.o:_clntudp_destroy -bindresvport.o:_bindresvport -clnt_udp.o:_clntudp_create -clnt_tcp.o:_clnttcp_create -xdr_rec.o:_xdrrec_create -xdr_rec.o:_fix_buf_size -ni_glue.o:_createauth -auth_none.o:_authnone_destroy -auth_unix.o:_authunix_create -auth_unix.o:_marshal_new_auth -getsegbyname.o:_getsegbyname -pthread.So:_pthread_attr_getschedparam -mach_portUser.So:_mach_port_extract_right -collate.So:___collate_load_tables -shutdown.So:_shutdown -lu_protocol.o:_free_lu_thread_info_protocol -lu_protocol.o:_free_protocol -lu_protocol.o:_free_protocol_data -thread_actUser.So:_thread_suspend -thread_actUser.So:_thread_abort_safely -gdtoa-smisc.So:___ratio_D2A -gdtoa-misc.So:___b2d_D2A -gdtoa-ulp.So:___ulp_D2A -remove.So:_remove -pthread_sigmask.So:_pthread_sigmask -indir_ops.o:_NXChangeBuffer -memory_funcs.o:_memory_change -memory_funcs.o:_memory_flush -memory_funcs.o:_memory_extend -mach_traps.So:_macx_swapon -mach_traps.So:_macx_triggers -lu_user.o:_free_lu_thread_info_user -gdtoa-strtodg.So:___increment_D2A -rndint.o:_roundf -minmaxdim.o:_fmaxf -notify_client.o:_notify_register_check -notify_ipcUser.o:__notify_server_register_check -common.o:__notify_lib_register_plain -common.o:__notify_lib_new_name -table.o:__nc_table_insert -notify_ipcUser.o:___MIG_check__Reply___notify_server_register_check_t -notify_client.o:_shm_attach -notify_client.o:_notify_check -notify_client.o:_token_table_find -runetype.So:____runetype -lu_service.o:_getservbyname -lu_service.o:_getserv -lu_service.o:_cache_getservbyname -lu_service.o:_lu_getservbyname -lu_service.o:_extract_service -lu_service.o:_cache_service -lu_service.o:_copy_service -lu_service.o:_recycle_service -fchown.So:_fchown -lu_user.o:_setpwent -lu_user.o:_lu_setpwent -arctg.o:_atan -fpmacros.o:___signbitd -rndtol.o:_rinttol -rndint.o:_lrint -excServer.So:_exc_server -excServer.So:__Xexception_raise_state_identity -exc_catcher_state_identity.So:_internal_catch_exception_raise_state_identity -taskUser.So:_task_set_exception_ports -nlist.So:_nlist -taskUser.So:_task_suspend -taskUser.So:_task_resume -vm_mapUser.So:_vm_region -vm_mapUser.So:_vm_region_recurse_64 -shm_unlink.So:_shm_unlink -sem_unlink.So:_sem_unlink -excUser.So:_exception_raise -scalable_malloc.So:_huge_entry_for_pointer_no_lock -vfscanf.So:___sccl -nice.So:_nice +fenv.o:___fegetfltrounds +gen_uuid.So:_uuid_generate_random +unpack.So:_uuid_unpack +pack.So:_uuid_pack +stpcpy.So:_stpcpy getpriority.So:_getpriority -ni_glue.o:_ni_connect -ni_glue.o:_ni_alloc -clnt_tcp.o:_clnttcp_geterr -ni_glue.o:_clnt_kill -ni_glue.o:_ni_free -svc_tcp.o:_svcfd_create -svc_tcp.o:_makefd_xprt -svc.o:_xprt_register -svc_tcp.o:_svctcp_destroy -svc.o:_xprt_unregister -ni_prot_xdr.o:_xdr_ni_binding -ni_glue.o:_ni_setpassword -setbuf.So:_setbuf -ldpart.So:___part_load_locale -ldpart.So:_split_lines -ATsocket.So:_ATsocket -ATPsndreq.So:_ATPsndreq -ATPgetreq.So:_ATPgetreq -ATPgetrsp.So:_ATPgetrsp -ATPsndrsp.So:_ATPsndrsp -table.o:__nc_table_delete -table.o:__nc_list_append -searchfs.So:_searchfs -mig_reply_setup.So:_mig_reply_setup -regcomp.So:_p_count -regcomp.So:_repeat -regcomp.So:_dupl -regcomp.So:_enlarge -regcomp.So:_firstch -mach_portUser.So:_mach_port_get_refs -strtok.So:_strtok -strtok.So:_strtok_r -ferror.So:_ferror -vm_mapUser.So:_vm_machine_attribute -vm_mapUser.So:_vm_write -host_privUser.So:_kmod_create -host_privUser.So:_kmod_control -mount.So:_mount -sysctlbyname.So:_sysctlbyname -localtime.So:_ctime -asctime.So:_asctime -asctime.So:_asctime_r +remmod.o:_fmodf +fpmacros.o:___fpclassifyf +logb.o:_logbf +scalb.o:_scalbnf +rand.So:_rand +getxattr.So:_getxattr +sha1.o:_CC_SHA1_Init +sha1.o:_CC_SHA1_Update +sha1.o:_sha1_block_data_order +sha1.o:_CC_SHA1_Final +sha1.o:_sha1_block_host_order +fpmacros.o:___signbitd +dyldAPIsInLibSystem.o:_NSAddLibrary +rand.So:_srand scandir.So:_scandir -_divdi3.o:___divdi3 -semaphore.So:_semaphore_timedwait -mach_traps.So:_semaphore_timedwait_trap -dirname.So:_dirname -getaddrinfo.o:_gai_lookupd -getaddrinfo.o:_getaddrinfo -exec.So:_execlp -fchflags.So:_fchflags -system.So:_system -getppid.So:_getppid -getpgrp.So:_getpgrp -err.So:_warnx -err.So:_vwarnx -err.So:_err_set_file -getprogname.So:_getprogname -crt_externs.So:__NSGetProgname -unmount.So:_unmount -srvbootstrapUser.So:_bootstrap_subset -hash_buf.So:_newbuf -hash_page.So:___get_page -_ashldi3.o:___ashldi3 -hash_log2.So:___log2 -DNSServiceDiscovery.o:_DNSServiceRegistrationCreate -DNSServiceDiscoveryRequestUser.o:_DNSServiceRegistrationCreate_rpc -DNSServiceDiscovery.o:_DNSServiceRegistrationAddRecord -DNSServiceDiscoveryRequestUser.o:_DNSServiceRegistrationAddRecord_rpc -DNSServiceDiscoveryRequestUser.o:___MIG_check__Reply__DNSServiceRegistrationAddRecord_rpc_t -DNSServiceDiscovery.o:_DNSServiceRegistrationUpdateRecord -DNSServiceDiscoveryRequestUser.o:_DNSServiceRegistrationUpdateRecord_rpc -DNSServiceDiscoveryReplyServer.o:__XDNSServiceRegistrationReply_rpc -DNSServiceDiscovery.o:_internal_DNSServiceRegistrationReply_rpc -DNSServiceDiscovery.o:_DNSServiceRegistrationRemoveRecord -DNSServiceDiscoveryRequestUser.o:_DNSServiceRegistrationRemoveRecord_rpc -scalable_malloc.So:_huge_entry_append -setenv.So:_unsetenv -exec.So:_execl -crypt.So:_crypt -crypt.So:_des_setkey -crypt.So:_permute -crypt.So:_des_cipher -ni_glue.o:_ni_root -ni_prot_clnt.o:__ni_root_2 -ni_util.o:_ni_lookupprop -lu_group.o:_lu_getgrgid -arch.o:_NXGetArchInfoFromName -mach_portUser.So:_mach_port_rename -thread_actUser.So:_thread_swap_exception_ports -zone.So:_NXCreateZone -zone.So:_NXNameZone -longjmp.So:.section_all -zone.So:_NXDestroyZone -malloc.So:_malloc_destroy_zone -scalable_malloc.So:_szone_destroy -fnmatch.So:_fnmatch -fnmatch.So:_rangematch -sbrk.So:_sbrk -wait.So:_wait -setbuffer.So:_setbuffer -sigaltstack.So:_sigaltstack -mach_hostUser.So:_host_kernel_version -atol.So:_atol -fgetln.So:_fgetln -fchdir.So:_fchdir -dylib1.o:___initialize_Cplusplus -dylib1.o:dyld_stub_binding_helper -dylib1.o:cfm_stub_binding_helper -wmemset.So:_wmemset -wmemmove.So:_wmemmove -wmemcpy.So:_wmemcpy -wmemcmp.So:_wmemcmp -wcsxfrm.So:_wcsxfrm -wcsxfrm.So:___mbsdup -wcswidth.So:_wcswidth -wcstok.So:_wcstok -wcsstr.So:_wcsstr -wcsspn.So:_wcsspn -wcsrchr.So:_wcsrchr -wcspbrk.So:_wcspbrk -wcsncpy.So:_wcsncpy -wcsncmp.So:_wcsncmp -wcsncat.So:_wcsncat -wcslcpy.So:_wcslcpy -wcslcat.So:_wcslcat -wcscspn.So:_wcscspn -wcscpy.So:_wcscpy -wcscoll.So:_wcscoll -wcscoll.So:___mbsdup -wcscmp.So:_wcscmp -wcschr.So:_wcschr -wcscat.So:_wcscat -swab.So:_swab -strxfrm.So:_strxfrm -strsignal.So:_strsignal +dyldAPIsInLibSystem.o:_NSIsSymbolNameDefinedWithHint +dyldAPIsInLibSystem.o:_NSLookupAndBindSymbolWithHint strnstr.So:_strnstr -strmode.So:_strmode -memccpy.So:_memccpy -twalk.So:_trecurse -twalk.So:_twalk -tsearch.So:_tsearch -tdelete.So:_tdelete -strtouq.So:_strtouq -strtoq.So:_strtoq -strhash.So:__hash -strhash.So:_list_find -strhash.So:_assign_key -strhash.So:_hash_traverse -strhash.So:_hash_purge -strhash.So:_hash_create -strhash.So:_hash_search -strhash.So:_hash_destroy -strhash.So:_hash_stats -strfmon.So:_get_groups -strfmon.So:___calc_left_pad -strfmon.So:___setup_vars -strfmon.So:_strfmon -strfmon.So:___format_grouped_double -remque.So:_remque -random.So:_setstate -random.So:_initstate -random.So:_srandomdev -rand.So:_rand_r -rand.So:_sranddev -radixsort.So:_radixsort -radixsort.So:_sradixsort -radixsort.So:_r_sort_a -radixsort.So:_r_sort_b -radixsort.So:_simplesort -qsort_r.So:_qsort_r -lsearch.So:_lsearch -lsearch.So:_lfind -lsearch.So:_lwork -lldiv.So:_lldiv -llabs.So:_llabs -insque.So:_insque -imaxdiv.So:_imaxdiv -imaxabs.So:_imaxabs -heapsort.So:_heapsort -hcreate.So:_hdestroy -hcreate.So:_hcreate -hcreate.So:_hsearch -getsubopt.So:_getsubopt -getopt_long.So:_gcd -getopt_long.So:_permute_args -getopt_long.So:_getopt_internal -getopt_long.So:_getopt_long -atoll.So:_atoll -_Exit_.So:__Exit -l64a.So:_l64a -a64l.So:_a64l -setjmperr.So:_longjmperror -mcount.So:mcount -isinf.So:_isinf -ffs.So:_ffs -ecvt.So:_ecvt -ecvt.So:_ecvt_copysign -ecvt.So:_ecvt_rint -ecvt.So:_cvt -ecvt.So:_fcvt -opendev.So:_opendev -fparseln.So:_isescaped -fparseln.So:_fparseln -pty.So:_forkpty -pty.So:_openpty -logwtmp.So:_logwtmp -logout.So:_logout -login_tty.So:_login_tty -login.So:_login -undelete.So:_undelete -truncate.So:_truncate -systable.So:_table -symlink.So:_symlink -swapon.So:_swapon -statv.So:_statv -sigwait.So:_sigwait -sigreturn.So:_sigreturn -sigpending.So:_sigpending -shmsys.So:_shmsys -shmget.So:_shmget -shmdt.So:_shmdt -shmctl.So:_shmctl -shmat.So:_shmat -settimeofday.So:_settimeofday -setquota.So:_setquota -setprivexec.So:_setprivexec -setauid.So:_setauid -setaudit_addr.So:_setaudit_addr -setaudit.So:_setaudit -semsys.So:_semsys -semop.So:_semop -semget.So:_semget -semctl.So:_semctl -semconfig.So:_semconfig -sem_wait.So:_sem_wait -sem_init.So:_sem_init -sem_getvalue.So:_sem_getvalue -sem_destroy.So:_sem_destroy -revoke.So:_revoke -reset_shared_file.So:_reset_shared_file -reboot.So:_reboot -readv.So:_readv -quotactl.So:_quotactl -quota.So:_quota -processor_facilities.So:_processor_facilities_used -posix_madvise.So:_posix_madvise -nfssvc.So:_nfssvc -nfsclnt.So:_nfsclnt -new_system_shared_regions.So:_new_system_shared_regions -munlockall.So:_munlockall -munlock.So:_munlock -msgsys.So:_msgsys -msgsnd.So:_msgsnd -msgrcv.So:_msgrcv -msgget.So:_msgget -msgctl.So:_msgctl -mprotect.So:_mprotect -mlockall.So:_mlockall -mknod.So:_mknod -mkfifo.So:_mkfifo -mkcomplex.So:_mkcomplex -minherit.So:_minherit -mincore.So:_mincore -madvise.So:_madvise -lstatv.So:_lstatv -load_shared_file.So:_load_shared_file -lio_listio.So:_lio_listio -ktrace.So:_ktrace -kqueue_portset_np.So:_kqueue_portset_np -kqueue_from_portset_np.So:_kqueue_from_portset_np -kqueue.So:_kqueue -getsid.So:_getsid -getpgid.So:_getpgid -getitimer.So:_getitimer -getfh.So:_getfh -getauid.So:_getauid -getaudit_addr.So:_getaudit_addr -getaudit.So:_getaudit -futimes.So:_futimes -fstatv.So:_fstatv -fsctl.So:_fsctl -fpathconf.So:_fpathconf -fhopen.So:_fhopen -chroot.So:_chroot -chflags.So:_chflags -checkuseraccess.So:_checkuseraccess -auditsvc.So:_auditsvc -auditon.So:_auditon -auditctl.So:_auditctl -audit.So:_audit -aio_write.So:_aio_write -aio_suspend.So:_aio_suspend -aio_return.So:_aio_return -aio_read.So:_aio_read -aio_fsync.So:_aio_fsync -aio_error.So:_aio_error -aio_cancel.So:_aio_cancel -adjtime.So:_adjtime -acct.So:_acct -ATputmsg.So:_ATputmsg -ATgetmsg.So:_ATgetmsg -time32.So:__time32_to_time -time32.So:__time_to_time32 -time32.So:__time_to_long -time32.So:__long_to_time -time32.So:__time_to_int -time32.So:__time64_to_time -time32.So:__time_to_time64 -time32.So:__int_to_time -strptime.So:__strptime -strptime.So:_strptime difftime.So:_difftime -wscanf.So:_wscanf -wprintf.So:_wprintf -vwscanf.So:_vwscanf -vwprintf.So:_vwprintf -vsscanf.So:_eofread -vsscanf.So:_vsscanf -vscanf.So:_vscanf -vasprintf.So:_vasprintf -unlocked.So:_feof_unlocked -unlocked.So:_ferror_unlocked -unlocked.So:_clearerr_unlocked -unlocked.So:_getc_unlocked -unlocked.So:_getchar_unlocked -unlocked.So:_putc_unlocked -unlocked.So:_putchar_unlocked -unlocked.So:_fileno_unlocked -tmpnam.So:_tmpnam -tmpfile.So:_tmpfile -tempnam.So:_tempnam -swscanf.So:_swscanf -swprintf.So:_swprintf -setbuffer.So:_setlinebuf -scanf.So:_scanf -putwchar.So:_putwchar -putwc.So:_putwc -putw.So:_putw -puts.So:_puts -getwchar.So:_getwchar -getwc.So:_getwc -getw.So:_getw -gets.So:_gets -fwscanf.So:_fwscanf -fwprintf.So:_fwprintf -fwide.So:_fwide -funopen.So:_funopen -fsetpos.So:_fsetpos -fscanf.So:_fscanf -fputws.So:_fputws -fpurge.So:_fpurge -fgetws.So:_fgetws -fgetpos.So:_fgetpos -feof.So:_feof -clrerr.So:_clearerr -regexec.So:_lbackref -regexec.So:_sbackref -regerror.So:_regerror -regerror.So:_regatoi -regcomp.So:_mccase -regcomp.So:_mcinvert -regcomp.So:_p_b_eclass -regcomp.So:_p_str -regcomp.So:_mcadd -regcomp.So:_p_b_coll_elem -regcomp.So:_seterr -pthread_rwlock.So:_pthread_rwlockattr_getpshared -pthread_rwlock.So:_pthread_rwlock_tryrdlock -pthread_rwlock.So:_pthread_rwlockattr_setpshared -stack.So:__sp -stack.So:__adjust_sp -pthread_cond.So:_pthread_condattr_init -pthread_cond.So:_pthread_condattr_destroy -pthread_cond.So:_pthread_condattr_getpshared -pthread_cond.So:_pthread_condattr_setpshared -msgcat.So:_catgets -msgcat.So:_catclose -msgcat.So:___nls_free_resources -msgcat.So:_MCGetMsg -msgcat.So:_MCGetSet -msgcat.So:_loadCat -msgcat.So:_catopen -msgcat.So:_loadSet -nsap_addr.So:_inet_nsap_addr -nsap_addr.So:_inet_nsap_ntoa -nsap_addr.So:_xtob -inet_network.So:_inet_network -inet_netof.So:_inet_netof -inet_neta.So:_inet_neta -inet_net_pton.So:_inet_net_pton -inet_net_pton.So:_inet_net_pton_ipv4 -inet_net_ntop.So:_inet_net_ntop -inet_net_ntop.So:_inet_net_ntop_ipv4 -inet_makeaddr.So:_inet_makeaddr -inet_lnaof.So:_inet_lnaof -ascii2addr.So:_ascii2addr -addr2ascii.So:_addr2ascii -slot_name.So:_host_self -slot_name.So:_msg_receive -slot_name.So:_msg_rpc -slot_name.So:_task_self_ -slot_name.So:_slot_name -slot_name.So:_msg_send -sbrk.So:_brk -port_obj.So:_port_obj_init -panic.So:_panic_init -panic.So:_panic -notifyUser.So:_mach_notify_send_once -notifyUser.So:_mach_notify_port_destroyed -notifyUser.So:_mach_notify_port_deleted -notifyUser.So:_mach_notify_no_senders -notifyUser.So:_mach_notify_dead_name -mig_allocate.So:_mig_allocate -excUser.So:_exception_raise_state -excUser.So:_exception_raise_state_identity -excServer.So:_exc_server_routine -excServer.So:__Xexception_raise -excServer.So:__Xexception_raise_state -clock_sleep.So:_clock_sleep -bootstrap_ports.So:_bootstrap_ports -processor_setUser.So:_processor_set_max_priority -processor_setUser.So:_processor_set_destroy -processor_setUser.So:_processor_set_policy_disable -processor_setUser.So:_processor_set_policy_enable -processor_setUser.So:_processor_set_tasks -processor_setUser.So:_processor_set_policy_control -processor_setUser.So:_processor_set_stack_usage -processor_setUser.So:_processor_set_info -processor_setUser.So:_processor_set_statistics -processor_setUser.So:_processor_set_threads -processorUser.So:_processor_start -processorUser.So:_processor_exit -processorUser.So:_processor_assign -processorUser.So:_processor_control -processorUser.So:_processor_info -processorUser.So:_processor_get_assignment -lock_setUser.So:_lock_acquire -lock_setUser.So:_lock_release -lock_setUser.So:_lock_try -lock_setUser.So:_lock_make_stable -lock_setUser.So:_lock_handoff -lock_setUser.So:_lock_handoff_accept -ledgerUser.So:_ledger_terminate -ledgerUser.So:_ledger_transfer -ledgerUser.So:_ledger_create -ledgerUser.So:_ledger_read -host_securityUser.So:_host_security_create_task_token -host_securityUser.So:_host_security_set_task_token -host_privUser.So:_host_reboot -host_privUser.So:_set_dp_control_port -host_privUser.So:_thread_wire -host_privUser.So:_task_swappable -host_privUser.So:_get_dp_control_port -host_privUser.So:_host_set_special_port -host_privUser.So:_host_get_UNDServer -host_privUser.So:_host_get_clock_control -host_privUser.So:_host_get_special_port -host_privUser.So:_host_set_exception_ports -host_privUser.So:_host_default_memory_manager -host_privUser.So:_host_processor_sets -host_privUser.So:_host_processors -host_privUser.So:_host_get_boot_info -host_privUser.So:_host_load_symbol_table -host_privUser.So:_vm_allocate_cpm -host_privUser.So:_host_priv_statistics -host_privUser.So:_host_get_exception_ports -host_privUser.So:_host_swap_exception_ports -host_privUser.So:_host_processor_set_priv -host_privUser.So:_kmod_destroy -host_privUser.So:_host_set_UNDServer -clock_privUser.So:_clock_set_time -clock_privUser.So:_clock_set_attributes -netnameUser.So:_netname_check_out -netnameUser.So:_netname_check_in -netnameUser.So:_netname_look_up -netnameUser.So:_netname_version -wcwidth.So:_wcwidth -wctype.So:_iswctype -wctype.So:_wctype -wctrans.So:_towctrans -wctrans.So:_wctrans -wctomb.So:_wctomb -wcstoull.So:_wcstoull -wcstoul.So:_wcstoul -wcstombs.So:_wcstombs -wcstoll.So:_wcstoll -wcstol.So:_wcstol -wcsftime.So:_wcsftime -setinvalidrune.So:_setinvalidrune -nomacros.So:___istype -nomacros.So:___toupper -nomacros.So:___isctype -nomacros.So:___maskrune -nomacros.So:___tolower -nl_langinfo.So:_nl_langinfo -mbstowcs.So:_mbstowcs -mbtowc.So:_mbtowc -mbsinit.So:_mbsinit -mbrune.So:_mbrune -mbrune.So:_mbrrune -mbrune.So:_mbmb -mblen.So:_mblen -iswctype.So:_iswascii -iswctype.So:_iswdigit -iswctype.So:_iswxdigit -iswctype.So:_towlower -iswctype.So:_iswgraph -iswctype.So:_iswhexnumber -iswctype.So:_iswideogram -iswctype.So:_iswlower -iswctype.So:_iswnumber -iswctype.So:_iswphonogram -iswctype.So:_iswprint -iswctype.So:_iswpunct -iswctype.So:_iswrune -iswctype.So:_iswspace -iswctype.So:_iswspecial -iswctype.So:_iswupper -iswctype.So:_iswalnum -iswctype.So:_iswalpha -iswctype.So:_iswblank -iswctype.So:_iswcntrl -iswctype.So:_towupper -isctype.So:_isascii -isctype.So:_toascii -isctype.So:_digittoint -isctype.So:_isxdigit -isctype.So:_isalpha -isctype.So:_isblank -isctype.So:_iscntrl -isctype.So:_isgraph -isctype.So:_ishexnumber -isctype.So:_isideogram -isctype.So:_islower -isctype.So:_isnumber -isctype.So:_isphonogram -isctype.So:_isprint -isctype.So:_ispunct -isctype.So:_isrune -isctype.So:_isspecial -isctype.So:_isupper -isctype.So:_isdigit -frune.So:_fungetrune -frune.So:_fgetrune -frune.So:_fputrune -NXToUpper.So:_NXToUpper -NXIsAscii.So:_NXIsAscii -NXToLower.So:_NXToLower -NXIsSpace.So:_NXIsSpace -NXIsGraph.So:_NXIsGraph -NXIsAlpha.So:_NXIsAlpha -_NXToUpper.So:__NXToUpper -NXToAscii.So:_NXToAscii -NXIsPunct.So:_NXIsPunct -NXIsDigit.So:_NXIsDigit -NXIsAlNum.So:_NXIsAlNum -_NXToLower.So:__NXToLower -NXIsXDigit.So:_NXIsXDigit -NXIsPrint.So:_NXIsPrint -NXIsCntrl.So:_NXIsCntrl -gmon.So:_monstartup -gmon.So:_moncontrol -gmon.So:_monaddition -gmon.So:_monreset -gmon.So:_monitor -gmon.So:_moninit -gmon.So:_moncount -gmon.So:_monsetup -gmon.So:_monoutput -gmon.So:_getprofhz -wait3.So:_wait3 -vis.So:_strvis -vis.So:_vis -vis.So:_strvisx -utime.So:_utime -unvis.So:_strunvis -unvis.So:_unvis -unvis.So:_strunvisx -ulimit.So:_ulimit -ttyslot.So:_ttyslot -ttyname.So:_ttyname_threaded -ttyname.So:_ttyname_r -ttyname.So:_oldttyname -timezone.So:_timezone -timezone.So:__tztab -times.So:_times -stringlist.So:_sl_init -stringlist.So:_sl_add -stringlist.So:_sl_free -stringlist.So:_sl_find -srand48.So:_srand48 -signal.So:__signal_nobind -siginterrupt.So:_siginterrupt -setprogname.So:_setprogname -setmode.So:_addcmd -setmode.So:_getmode -setmode.So:_setmode -setmode.So:_compress_mode -sethostname.So:_sethostname -seekdir.So:_seekdir -seed48.So:_seed48 -rewinddir.So:_rewinddir -readpassphrase.So:_handler -readpassphrase.So:_getpass -readpassphrase.So:_readpassphrase -raise.So:_raise -psignal.So:_psignal -popen.So:_popen -popen.So:_pclose -pause.So:_pause -nrand48.So:_nrand48 -mrand48.So:_mrand48 -lrand48.So:_lrand48 -lockf.So:_lockf -lcong48.So:_lcong48 -jrand48.So:_jrand48 -getlogin.So:_getlogin_r -getbsize.So:_getbsize -ftok.So:_ftok -fmtcheck.So:_get_next_format_from_width -fmtcheck.So:_get_next_format -fmtcheck.So:_get_next_format_from_precision -fmtcheck.So:_fmtcheck -err.So:_errc -err.So:_errx -err.So:_err_set_exit -err.So:_warnc -err.So:_err -err.So:_warn -err.So:_verrx -err.So:_vwarnc -err.So:_verrc -err.So:_vwarn -err.So:_verr -drand48.So:_drand48 -daemon.So:_daemon -ctermid.So:_ctermid -ctermid.So:_ctermid_r -zone.So:_NXZonePtrInfo -zone.So:_NXMallocCheck -zone.So:_NXRemoveRegion -zone.So:__NXMallocDumpFrees -zone.So:_NXAddRegion -zone.So:_NXProtectZone -zone.So:_NXCreateChildZone -zone.So:_NXZoneFromPtr -zone.So:_NXMergeZone -zone.So:_NXZoneFree -zone.So:_NXZoneCalloc -zone.So:__NXMallocDumpZones -uname.So:_uname -syslog.So:_setlogmask -strtofflags.So:_fflagstostr -strtofflags.So:_strtofflags -sigsetops.So:_sigemptyset -sigsetops.So:_sigfillset -sigsetops.So:_sigaddset -sigsetops.So:_sigdelset -sigsetops.So:_sigismember -isnan.So:_isnan -getusershell.So:_setusershell -getusershell.So:_getusershell -getusershell.So:_endusershell -getusershell.So:_initshells -getttyent.So:_value -getttyent.So:_setttyent -getttyent.So:_skip -getttyent.So:_endttyent -getttyent.So:_getttyent -getttyent.So:_getttynam -getloadavg.So:_getloadavg -fts.So:_fts_children -fts.So:_fts_sort -fts.So:_fts_lfree -fts.So:_fts_set -fts.So:_fts_padjust -disklabel.So:_getdiskbyname -disklabel.So:_gettype -devname.So:_devname -crypt.So:_init_perm -crypt.So:_encrypt -crypt.So:_init_des -crypt.So:_setkey -confstr.So:_confstr -cache.So:_sys_cache_control -OSSystemInfo.So:_OSSystemInfo -gdtoa-strtoIg.So:___strtoIg_D2A -_ldtoa.So:___ldtoa -setruid.So:_setruid -setrgid.So:_setrgid -setpgrp.So:_setpgrp -sethostid.So:_sethostid -killpg.So:_killpg -getwd.So:_getwd -gethostid.So:_gethostid -creat.So:_creat -sigcompat.So:_sigvec -sigcompat.So:__sigvec_nobind -sigcompat.So:_sighold -sigcompat.So:_sigvec__ -sigcompat.So:_sigrelse -setreuid.So:_setreuid -setregid.So:_setregid -ndbm.So:_dbm_close -ndbm.So:_dbm_error -ndbm.So:_dbm_clearerr -ndbm.So:_dbm_delete -ndbm.So:_dbm_store -ndbm.So:_dbm_firstkey -ndbm.So:_dbm_nextkey -ndbm.So:_dbm_fetch -ndbm.So:_dbm_open -ndbm.So:_dbm_dirfno -strtoll.So:_strtoll -profil.So:_profil -add_profil.So:_add_profil -vswscanf.So:_eofread -vswscanf.So:_vswscanf -vswprintf.So:_vswprintf -vfwscanf.So:_vfwscanf -vfwscanf.So:___vfwscanf -vfwscanf.So:_parsefloat -vfwprintf.So:_vfwprintf -vfwprintf.So:___grow_type_table -vfwprintf.So:___sbprintf -vfwprintf.So:___mbsconv -vfwprintf.So:___ultoa -vfwprintf.So:___ujtoa -vfwprintf.So:___find_arguments -vfwprintf.So:___vfwprintf -vfwprintf.So:_exponent -vfscanf.So:_vfscanf -ungetwc.So:___ungetwc -ungetwc.So:_ungetwc -perror.So:_perror -fputwc.So:___fputwc -fputwc.So:_fputwc -fgetwc.So:___fgetwc -fgetwc.So:_fgetwc -fgetwc.So:___fgetwc_nbf -linkaddr.So:_link_addr -linkaddr.So:_link_ntoa -exc_catcher_state.So:_internal_catch_exception_raise_state -exc_catcher.So:_internal_catch_exception_raise -wctob.So:_wctob -wcstoumax.So:_wcstoumax -wcstold.So:_wcstold -wcstoimax.So:_wcstoimax -wcstod.So:_wcstod -wcstof.So:_wcstof -toupper.So:____toupper -tolower.So:____tolower -setlocale.So:_wrap_setrunelocale -mbsrtowcs.So:_mbsrtowcs -lmessages.So:___messages_load_locale -lmessages.So:___get_current_messages_locale -collcmp.So:___collate_range_cmp -btowc.So:_btowc -NXIsUpper.So:_NXIsUpper -NXIsLower.So:_NXIsLower -getcap.So:_cgetent -getcap.So:_cgetfirst -getcap.So:_cgetclose -getcap.So:_cgetmatch -getcap.So:_cgetcap -getcap.So:_cgetnum -getcap.So:_cgetustr -getcap.So:_cgetnext -getcap.So:_cdbget -getcap.So:_getent -getcap.So:_cgetstr -getcap.So:_cgetset -getcap.So:_nfcmp -erand48.So:_erand48 -_rand48.So:__dorand48 -machdep_ldisd.So:_strtold -gdtoa-gdtoa.So:_bitstob -gdtoa-gdtoa.So:___gdtoa -wmemchr.So:_wmemchr -wcslen.So:_wcslen -strcoll.So:_strcoll -timelocal.So:___time_load_locale -ungetc.So:___submore -fgetln.So:_slbexpand -setrunelocale.So:_setrunelocale -rune.So:__Read_RuneMagi -mskanji.So:__MSKanji_init -mskanji.So:__MSKanji_sgetrune -mskanji.So:__MSKanji_sputrune -euc.So:__EUC_sgetrune -euc.So:__EUC_init -euc.So:__EUC_sputrune -collate.So:___collate_strdup -collate.So:___collate_lookup -collate.So:___collate_substitute -collate.So:___collate_err -big5.So:__BIG5_init -big5.So:__BIG5_sgetrune -big5.So:__BIG5_sputrune -gdtoa-strtord.So:___ULtod_D2A -gdtoa-strtord.So:___strtord -strerror.So:_strerror_r -lu_utils.So:__lu_setport -fseek.So:_fseeko -srvbootstrapUser.So:_bootstrap_parent -srvbootstrapUser.So:_bootstrap_create_service -srvbootstrapUser.So:_bootstrap_create_server -srvbootstrapUser.So:_bootstrap_look_up_array -srvbootstrapUser.So:_bootstrap_info -srvbootstrapUser.So:_bootstrap_status -srvbootstrapUser.So:_bootstrap_unprivileged -utf8.So:__UTF8_init -utf8.So:__UTF8_sgetrune -utf8.So:__UTF8_sputrune -utf2.So:__UTF2_init -utf2.So:__UTF2_sgetrune -utf2.So:__UTF2_sputrune -mig_support.So:_mig_dealloc_reply_port -vfprintf.So:___wcsconv -vfprintf.So:___grow_type_table -vfprintf.So:___find_arguments -vfprintf.So:_exponent -vfprintf.So:_getvec -wcsrtombs.So:_wcsrtombs -wcrtomb.So:_wcrtomb -findfp.So:_f_prealloc -findfp.So:_moreglue -fflush.So:_sflush_locked -pthread.So:_pthread_setconcurrency -pthread.So:__pthread_is_threaded -pthread.So:_pthread_is_threaded_np -pthread.So:_pthread_getconcurrency -pthread.So:_pthread_attr_getstack -pthread.So:_pthread_attr_getscope -pthread.So:_pthread_attr_getschedpolicy -pthread.So:_pthread_attr_getinheritsched -pthread.So:_pthread_attr_getdetachstate -pthread.So:_pthread_cancel -pthread.So:_pthread_attr_setinheritsched -pthread.So:_pthread_attr_getstacksize -pthread.So:_pthread_attr_getstackaddr -pthread.So:_pthread_attr_setstackaddr -pthread.So:_pthread_kill -pthread.So:_pthread_attr_setstack -pthread.So:__spin_lock_retry -pthread.So:__pthread_self -pthread.So:__pthread_reply_port -pthread.So:_pthread_setcancelstate -icacheinval.So:_sys_icache_invalidate -_pthread_kill.So:___pthread_kill -thread_actUser.So:_thread_assign_default -thread_actUser.So:_etap_trace_thread -thread_actUser.So:_thread_depress_abort -thread_actUser.So:_thread_abort -thread_actUser.So:_thread_get_assignment -thread_actUser.So:_thread_get_special_port -thread_actUser.So:_thread_sample -thread_actUser.So:_thread_assign -thread_actUser.So:_act_set_state -thread_actUser.So:_act_get_state -thread_actUser.So:_thread_policy_get -thread_actUser.So:_thread_get_exception_ports -thread_actUser.So:_thread_set_policy -thread_actUser.So:_thread_set_special_port -mach_msg.So:_mach_msg_destroy_memory -mach_msg.So:_mach_msg_server_once -mach_msg.So:_mach_msg_receive -taskUser.So:_task_assign_default -taskUser.So:_task_set_ras_pc -taskUser.So:_task_set_emulation -taskUser.So:_kernel_task_create -taskUser.So:_lock_set_create -taskUser.So:_lock_set_destroy -taskUser.So:_task_assign -taskUser.So:_task_get_assignment -taskUser.So:_task_sample -taskUser.So:_task_set_emulation_vector -taskUser.So:_task_set_info -taskUser.So:_mach_ports_register -taskUser.So:_task_policy -taskUser.So:_task_create -taskUser.So:_task_get_emulation_vector -taskUser.So:_task_set_policy -taskUser.So:_task_swap_exception_ports -taskUser.So:_task_get_exception_ports -taskUser.So:_task_info -taskUser.So:_task_policy_get -taskUser.So:_task_terminate -mach_init.So:_mach_atfork_child_routine -mach_hostUser.So:_disable_bluebox -mach_hostUser.So:_host_request_notification -mach_hostUser.So:_mach_memory_object_memory_entry_64 -mach_hostUser.So:_mach_memory_object_memory_entry -mach_hostUser.So:_host_virtual_physical_table_info -mach_hostUser.So:_host_ipc_hash_info -mach_hostUser.So:_host_processor_info -mach_hostUser.So:_host_zone_info -mach_hostUser.So:_host_statistics -mach_hostUser.So:_processor_set_default -mach_hostUser.So:_enable_bluebox -mach_hostUser.So:_processor_set_create -mach_portUser.So:_mach_port_allocate_name -mach_portUser.So:_mach_port_set_mscount -mach_portUser.So:_mach_port_set_seqno -mach_portUser.So:_mach_port_get_srights -mach_portUser.So:_mach_port_dnrequest_info -mach_portUser.So:_mach_port_kernel_object -mach_portUser.So:_mach_port_allocate_qos -mach_portUser.So:_mach_port_allocate_full -mach_portUser.So:_mach_port_names -mach_portUser.So:_mach_port_space_info -mach_portUser.So:_task_set_port_space -none.So:__none_init -none.So:__none_sputrune -lnumeric.So:___numeric_load_locale -lmonetary.So:_cnv -lmonetary.So:___monetary_load_locale -fix_grouping.So:___fix_locale_grouping_str -scandir.So:_alphasort -merge.So:_setup -merge.So:_mergesort -merge.So:_insertionsort -stack_logging.So:_first_frame_address -stack_logging.So:_next_frame_address -stack_logging.So:_default_reader -stack_logging.So:_thread_stack_pcs -stack_logging.So:_get_remote_records -stack_logging.So:_stack_logging_enumerate_records -stack_logging.So:_enter_pair_in_table -stack_logging.So:_GrowLogRecords -stack_logging.So:_prepare_to_log_stack -stack_logging.So:_stack_logging_get_frames -stack_logging.So:_stack_logging_get_unique_stack -stack_logging.So:_stack_logging_log_stack -stack_logging.So:_stack_logging_frames_for_uniqued_stack -scalable_malloc.So:_frozen_malloc -scalable_malloc.So:_frozen_destroy -scalable_malloc.So:_frozen_valloc -scalable_malloc.So:_szone_log -scalable_malloc.So:_frozen_calloc -scalable_malloc.So:_frozen_free -scalable_malloc.So:__szone_default_reader -scalable_malloc.So:_free_list_count -scalable_malloc.So:_huge_in_use_enumerator -scalable_malloc.So:_frozen_realloc -scalable_malloc.So:_szone_statistics -scalable_malloc.So:_szone_error -scalable_malloc.So:_szone_check -scalable_malloc.So:_print_small_free_list -scalable_malloc.So:_print_tiny_free_list -scalable_malloc.So:_scalable_zone_statistics -scalable_malloc.So:_scalable_zone_info -scalable_malloc.So:_malloc_freezedry -scalable_malloc.So:_protect -scalable_malloc.So:_malloc_jumpstart -scalable_malloc.So:_print_small_region -scalable_malloc.So:_large_in_use_enumerator -scalable_malloc.So:_small_free_list_check -scalable_malloc.So:_tiny_free_list_check -scalable_malloc.So:_szone_print -scalable_malloc.So:_print_tiny_region -scalable_malloc.So:_small_in_use_enumerator -scalable_malloc.So:_szone_check_small_region -scalable_malloc.So:_tiny_in_use_enumerator -scalable_malloc.So:_szone_check_all -scalable_malloc.So:_szone_batch_malloc -scalable_malloc.So:_szone_check_tiny_region -scalable_malloc.So:_szone_batch_free -scalable_malloc.So:_small_malloc_from_region_no_lock -scalable_malloc.So:_szone_ptr_in_use_enumerator -gdtoa-strtodg.So:___decrement_D2A -gdtoa-strtodg.So:_mantbits -gdtoa-strtodg.So:_all_on -gdtoa-strtodg.So:___set_ones_D2A -gdtoa-sum.So:___sum_D2A -gdtoa-hexnan.So:_L_shift -gdtoa-hexnan.So:___hexnan_D2A -gdtoa-gethex.So:___gethex_D2A -gdtoa-hd_init.So:_htinit -gdtoa-hd_init.So:___hexdig_init_D2A -gdtoa-gmisc.So:___trailz_D2A -gdtoa-misc.So:___strcp_D2A -rec_put.So:___rec_put -rec_put.So:___rec_iput -rec_open.So:___rec_open -rec_open.So:___rec_fd -rec_seq.So:___rec_seq -rec_get.So:___rec_get -rec_get.So:___rec_fmap -rec_get.So:___rec_fpipe -rec_get.So:___rec_vpipe -rec_get.So:___rec_vmap -rec_delete.So:_rec_rdelete -rec_delete.So:___rec_delete -rec_delete.So:___rec_dleaf -rec_close.So:___rec_close -rec_close.So:___rec_sync -rec_utils.So:___rec_ret -rec_search.So:___rec_search -refill.So:_lflush -termios.So:_tcdrain -termios.So:_cfsetospeed -termios.So:_cfsetispeed -termios.So:_tcgetpgrp -termios.So:_cfmakeraw -termios.So:_tcflush -termios.So:_tcflow -termios.So:_tcsetattr -termios.So:_cfsetspeed -termios.So:_tcsetpgrp -termios.So:_cfgetospeed -termios.So:_cfgetispeed -termios.So:_tcsendbreak -hash_page.So:_first_free -hash_page.So:_fetch_bitmap -hash_page.So:_open_temp -hash_page.So:___ibitmap -hash_page.So:_squeeze_key -hash_page.So:___free_ovflpage -hash_page.So:___add_ovflpage -hash_page.So:___delpair -hash_page.So:___put_page -hash_page.So:___split_page -hash_page.So:___addel -hash_page.So:_overflow_page -hash_page.So:_putpair -hash_page.So:_ugly_split -hash_bigkey.So:___big_keydata -hash_bigkey.So:___find_last_page -hash_bigkey.So:___find_bigpair -hash_bigkey.So:_collect_key -hash_bigkey.So:_collect_data -hash_bigkey.So:___big_delete -hash_bigkey.So:___big_return -hash_bigkey.So:___big_insert -hash_bigkey.So:___big_split -db.So:___dberr -db.So:___dbpanic -db.So:_dbopen -hash.So:_hash_close -hash.So:_hash_fd -hash.So:_hash_realloc -hash.So:_hash_delete -hash.So:_hash_sync -hash.So:_hash_put -hash.So:___expand_table -hash.So:_init_hash -hash.So:_hdestroy -hash.So:_hash_seq -hash.So:_alloc_segs -hash.So:___hash_open -hash.So:_flush_meta -hash.So:_init_htab -bt_open.So:_byteorder -bt_open.So:_tmp -bt_open.So:_nroot -bt_open.So:___bt_open -bt_open.So:___bt_fd -bt_get.So:___bt_get -bt_conv.So:___bt_pgin -bt_conv.So:___bt_pgout -bt_conv.So:_mswap -bt_close.So:___bt_sync -bt_close.So:___bt_close -bt_close.So:_bt_meta -mktemp.So:_mktemp -mktemp.So:__mktemp -mktemp.So:_mkdtemp -arc4random.So:_arc4random_addrandom -hash_func.So:_hash1 -hash_func.So:_hash2 -hash_func.So:_hash3 -hash_buf.So:___buf_init -hash_buf.So:___buf_free -hash_buf.So:___reclaim_buf -bt_put.So:___bt_put -bt_put.So:_bt_fast -bt_delete.So:___bt_delete -bt_delete.So:___bt_dleaf -bt_delete.So:___bt_bdelete -bt_delete.So:___bt_pdelete -bt_delete.So:___bt_curdel -bt_delete.So:___bt_stkacq -bt_delete.So:___bt_relink -localtime.So:_timelocal -localtime.So:_timeoff -localtime.So:_timegm -localtime.So:_ctime_r -localtime.So:_time2posix -localtime.So:_gmtime_r -localtime.So:_offtime -localtime.So:_leapcorr -localtime.So:_getnum -localtime.So:_getzname -localtime.So:_tzsetwall -localtime.So:_getoffset -localtime.So:_getsecs -localtime.So:_posix2time -localtime.So:_getrule -localtime.So:_transtime -localtime.So:_tzparse -pthread_tsd.So:_pthread_key_delete -bt_split.So:_bt_preserve -bt_split.So:_bt_root -bt_split.So:_bt_rroot -bt_split.So:_bt_broot -bt_split.So:_bt_page -bt_split.So:_bt_psplit +strcspn.So:_strcspn +clock.So:_clock +getrusage.So:_getrusage +dyldAPIsInLibSystem.o:_dladdr +pthread_cond.So:_pthread_cond_timedwait_relative_np +pthread.So:_pthread_getschedparam +md5_dgst.o:_CC_MD5_Init +md5_dgst.o:_CC_MD5_Update +md5_dgst.o:_md5_block_data_order +md5_dgst.o:_md5_block_host_order +isctype.So:_isspace +isctype.So:_toupper +md2_dgst.o:_CC_MD2_Init +md2_dgst.o:_CC_MD2_Update +md2_dgst.o:_md2_block +md2_dgst.o:_CC_MD2_Final +isctype.So:_tolower +md5_dgst.o:_CC_MD5_Final +gdtoa-smisc.So:___ratio_D2A +gdtoa-misc.So:___b2d_D2A +gdtoa-ulp.So:___ulp_D2A +getsegbyname.o:_getsegbyname +pthread.So:_pthread_attr_getschedparam +pthread.So:_sched_get_priority_min +pthread.So:_sched_get_priority_max +thread_actUser.So:_thread_set_exception_ports +pthread_sigmask.So:_pthread_sigmask +pthread.So:_pthread_create_suspended_np +taskUser.So:_thread_create +thread_actUser.So:_thread_set_state +thread_actUser.So:_thread_resume +collate.So:___collate_load_tables +thread_actUser.So:_thread_suspend +thread_actUser.So:_thread_abort_safely +lu_user.o:_free_lu_thread_info_user +kvm.o:_kvm_open +kvm.o:__kvm_open +hash.So:___hash_open +kvm_proc.o:_kvm_getprocs +kvm.o:__kvm_malloc +kvm.o:_kvm_close bt_split.So:___bt_split -bt_split.So:_rec_total -bt_seq.So:___bt_seq -bt_seq.So:___bt_seqadv -bt_seq.So:___bt_seqset -bt_seq.So:___bt_first -bt_seq.So:___bt_setcur -bt_search.So:___bt_snext -bt_search.So:___bt_search -bt_search.So:___bt_sprev -bt_utils.So:___bt_defcmp -bt_utils.So:___bt_cmp -bt_utils.So:___bt_ret -bt_utils.So:___bt_defpfx -bt_overflow.So:___ovfl_put -bt_overflow.So:___ovfl_get -bt_overflow.So:___ovfl_delete -bt_page.So:___bt_free bt_page.So:___bt_new -mpool.So:_mpool_filter -mpool.So:_mpool_put -mpool.So:_mpool_close -mpool.So:_mpool_sync -mpool.So:_mpool_write -mpool.So:_mpool_open mpool.So:_mpool_new -mpool.So:_mpool_bkt -mpool.So:_mpool_get -mpool.So:_mpool_look -_flock_stub.So:__flockfile_debug_stub -_flock_stub.So:_ftrylockfile -pthread_mutex.So:_mutex_try_lock -pthread_mutex.So:_cthread_yield -pthread_mutex.So:_pthread_mutexattr_setprotocol -pthread_mutex.So:_pthread_mutexattr_gettype -pthread_mutex.So:_pthread_mutexattr_setpshared -pthread_mutex.So:_pthread_mutexattr_getprioceiling -pthread_mutex.So:_pthread_mutexattr_getprotocol -pthread_mutex.So:_pthread_mutexattr_getpshared -pthread_mutex.So:_pthread_mutexattr_setprioceiling -pthread_mutex.So:_mutex_wait_lock -pthread_mutex.So:_pthread_mutex_getprioceiling -pthread_mutex.So:_pthread_mutex_setprioceiling -pthread_mutex.So:_pthread_yield_np -malloc.So:_malloc_get_zone_name -malloc.So:__malloc_default_reader -malloc.So:_mstats -malloc.So:_DefaultMallocError -malloc.So:_malloc_singlethreaded -malloc.So:_malloc_debug -malloc.So:__malloc_append_unsigned -malloc.So:_malloc_zone_print -malloc.So:_malloc_zone_check -malloc.So:_malloc_zone_log -malloc.So:_malloc_zone_statistics -malloc.So:_malloc_zone_print_ptr_info -malloc.So:_malloc_zone_batch_malloc -malloc.So:_malloc_zone_batch_free -malloc.So:_malloc_get_all_zones -malloc.So:_malloc_printf -malloc.So:_internal_check -malloc.So:_set_flags_from_environment -malloc.So:_malloc_error -malloc.So:_vfree -abort.So:_abort -sigaction.So:__sigaction_nobind -vm_mapUser.So:_task_wire -vm_mapUser.So:_vm_region_object_create -vm_mapUser.So:_vm_read_overwrite -vm_mapUser.So:_vm_upl_map -vm_mapUser.So:_vm_map_page_query -vm_mapUser.So:_vm_mapped_pages_info -vm_mapUser.So:_vm_read_list -vm_mapUser.So:_mach_vm_region_info_64 -vm_mapUser.So:_vm_remap -vm_mapUser.So:_mach_vm_region_info -vm_mapUser.So:_vm_region_recurse -vm_mapUser.So:_vm_map_get_upl -vm_mapUser.So:_vm_region_64 -vm_mapUser.So:_vm_behavior_set -vm_mapUser.So:_vm_upl_unmap -runetype.So:___compRuneEntry -sigtramp.So:_restore64_state -errno.So:_cthread_errno -mach_traps.So:_bb_disable_bluebox -mach_traps.So:_ppcNullinst -mach_traps.So:_ppcNull -mach_traps.So:_perfmon_control -mach_traps.So:_macx_swapoff -mach_traps.So:_macx_backing_store_suspend -mach_traps.So:_macx_backing_store_recovery -mach_traps.So:_bb_settaskenv -mach_traps.So:_CHUDCall -mach_traps.So:_bb_enable_bluebox -mach_traps.So:_vmm_init_context -mach_traps.So:_vmm_get_version -mach_traps.So:_vmm_get_features -mach_traps.So:_vmm_dispatch -mach_traps.So:_swtch -mach_traps.So:_diagCall -mach_traps.So:_mk_wait_until -mach_traps.So:_MKGetTimeBaseInfo -mach_traps.So:_init_process -mach_traps.So:_vmm_stop_vm -mach_error_string.So:_mach_error_type -clockUser.So:_clock_alarm -clockUser.So:_clock_get_attributes -gethnamaddr.o:__res_gethostbyname -gethnamaddr.o:__old_endhostent -gethnamaddr.o:_dprintf -gethnamaddr.o:__old_sethostent -gethnamaddr.o:__old_gethostbyaddr -gethnamaddr.o:__old_gethostbyname -gethnamaddr.o:__res_gethostbyaddr -gethnamaddr.o:_gethostbyname_ipv4 -gethnamaddr.o:__old_gethostent -gethnamaddr.o:_getanswer -gethnamaddr.o:_addrsort -getnetbyaddr.o:__old_getnetbyaddr -getnetbyname.o:__old_getnetbyname -getnetent.o:__old_endnetent -getnetent.o:__old_setnetent -getnetent.o:__endnetent -getnetent.o:__setnetent -getnetent.o:__old_getnetent -getnetnamadr.o:__res_getnetbyaddr -getnetnamadr.o:_getnetanswer -getnetnamadr.o:__res_getnetbyname -herror.o:_herror -herror.o:_hstrerror -res_comp.o:___putshort -res_comp.o:__getshort -res_comp.o:_res_getshort -res_comp.o:__getlong -res_comp.o:___dn_skipname -res_comp.o:_mklower -res_comp.o:_dn_find -res_comp.o:_dn_expand -res_comp.o:_dn_comp -res_comp.o:___putlong -res_debug.o:___fp_query -res_debug.o:___p_cdname -res_debug.o:___p_query -res_debug.o:___p_cdnname -res_debug.o:___p_fqname -res_debug.o:___p_class -res_debug.o:___fp_resstat -res_debug.o:_do_rrset -res_debug.o:_deproto -res_debug.o:___p_option -res_debug.o:___fp_nquery -res_debug.o:_dewks -res_debug.o:___p_type -res_debug.o:___p_rr -res_debug.o:___p_time -res_init.o:_net_mask -res_init.o:_res_setoptions -res_mkquery.o:_res_mkquery -res_query.o:_res_querydomain -res_query.o:_res_query -res_query.o:_res_search -res_query.o:___hostalias -res_send.o:_res_send_setqhook -res_send.o:_res_send_setrhook -res_send.o:_Perror -res_send.o:_Aerror -res_send.o:___res_isourserver -res_send.o:___res_nameinquery -res_send.o:___res_queriesmatch -res_send.o:_dns_is_local_name -res_send.o:_res_send -res_send.o:__res_close -sethostent.o:__res_sethostent -sethostent.o:__res_endhostent -aliasdb.o:__old_alias_setent -aliasdb.o:__old_alias_endent -aliasdb.o:__old_alias_getent -aliasdb.o:__old_alias_getbyname -ether_addr.o:_ether_line -ether_addr.o:_ether_ntoa -ether_addr.o:_ether_hostton -ether_addr.o:_ether_aton -ether_addr.o:_ether_ntohost -fstab.o:__old_endfsent -fstab.o:__old_getfsent -fstab.o:__old_setfsent -fstab.o:__old_getfsspec -fstab.o:__old_getfsfile -fstab.o:_getDevPath -fstab.o:_initrootentry -fstab.o:_fstabscan -fstab.o:_error -getgrent.o:__old_setgrent -getgrent.o:_setgroupent -getgrent.o:__old_endgrent -getgrent.o:__old_getgrgid -getgrent.o:__old_getgrent -getgrent.o:__old_getgrnam -getgrent.o:_grscan -getgrent.o:_start_gr -getproto.o:__old_getprotobynumber -getprotoent.o:__old_endprotoent -getprotoent.o:__old_setprotoent -getprotoent.o:__old_getprotoent -getprotoname.o:__old_getprotobyname -getpwent.o:__old_getpwent -getpwent.o:_appendString -getpwent.o:__old_getpwuid -getpwent.o:__old_getpwnam -getpwent.o:_listLength -getpwent.o:_copyString -getpwent.o:_getpw -getpwent.o:_parseUser -getpwent.o:_tokenize -getpwent.o:_free_pw -getpwent.o:__old_setpwent -getpwent.o:_getLine -getpwent.o:_insertString -getpwent.o:__old_endpwent -getpwent.o:_freeList -getpwent.o:_setpassent -getservbyname.o:__old_getservbyname -getservbyport.o:__old_getservbyport -getservent.o:__old_setservent -getservent.o:__old_getservent -getservent.o:__old_endservent -if_indextoname.o:_if_indextoname -if_nameindex.o:_if_nameindex -if_nameindex.o:_if_freenameindex -inet_ntop.o:___res_close -initgroups.o:__old_initgroups -printerdb.o:__old_prdb_end -printerdb.o:__old_prdb_set -printerdb.o:_peprop_insert -printerdb.o:__old_prdb_getbyname -printerdb.o:_prmatch -printerdb.o:_pename_insert -printerdb.o:__prdb_free_ent -printerdb.o:_getline -printerdb.o:__old_prdb_get -printerdb.o:_emptyfield -map_v4v6.o:__map_v4v6_address -map_v4v6.o:__map_v4v6_hostent -ip6opt.o:_inet6_option_space -ip6opt.o:_inet6_option_init -ip6opt.o:_ip6optlen -ip6opt.o:_inet6_option_next -ip6opt.o:_inet6_option_alloc -ip6opt.o:_inet6_option_find -ip6opt.o:_inet6_option_append -ip6opt.o:_inet6_insert_padopt -rthdr.o:_inet6_rthdr_space -rthdr.o:_inet6_rthdr_segments -rthdr.o:_inet6_rthdr_getaddr -rthdr.o:_inet6_rthdr_lasthop -rthdr.o:_inet6_rthdr_init -rthdr.o:_inet6_rthdr_add -rthdr.o:_inet6_rthdr_getflags -getaddrinfo.o:_getaddrinfo_async_send -getaddrinfo.o:_getnameinfo_async_send -getaddrinfo.o:_is_a_number -getaddrinfo.o:_getnameinfo_async_receive -getaddrinfo.o:_getaddrinfo_async_receive -getaddrinfo.o:_getnameinfo_async_start -getaddrinfo.o:_gni_extract_data +bt_utils.So:___bt_defpfx +lu_host.o:_getipnodebyname +lu_host.o:_freehostent +lu_host.o:_free_host_data +shutdown.So:_shutdown +clnt_tcp.o:_clnttcp_geterr +rndint.o:_nearbyint getaddrinfo.o:_gai_strerror -getaddrinfo.o:_getnameinfo_async_handle_reply -getaddrinfo.o:_gni_lookupd_process_dictionary -getaddrinfo.o:_gai_files -getaddrinfo.o:_gni_make_query -getaddrinfo.o:_getnameinfo -getaddrinfo.o:_new_addrinfo_v6 -lu_alias.o:_lu_alias_setent -lu_alias.o:_lu_alias_endent -lu_alias.o:_alias_setent -lu_alias.o:_free_alias -lu_alias.o:_free_lu_thread_info_alias -lu_alias.o:_free_alias_data -lu_alias.o:_recycle_alias -lu_alias.o:_alias_getent -lu_alias.o:_alias_getbyname -lu_alias.o:_copy_alias -lu_alias.o:_lu_alias_getent -lu_alias.o:_extract_alias -lu_alias.o:_lu_alias_getbyname -lu_alias.o:_alias_endent -lu_bootp.o:_free_bootp -lu_bootp.o:_bootp_getbyether -lu_bootp.o:_lu_bootp_getbyether -lu_bootp.o:_lu_bootp_getbyip -lu_bootp.o:_extract_bootp -lu_bootp.o:_bootp_getbyip -lu_bootparam.o:_lu_bootparams_setent -lu_bootparam.o:_lu_bootparams_endent -lu_bootparam.o:_bootparams_setent -lu_bootparam.o:_free_bootparams -lu_bootparam.o:_free_lu_thread_info_bootparams -lu_bootparam.o:_free_bootparams_data -lu_bootparam.o:_bootparams_getent -lu_bootparam.o:_recycle_bootparams -lu_bootparam.o:_bootparams_getbyname -lu_bootparam.o:_lu_bootparams_getent -lu_bootparam.o:_extract_bootparams -lu_bootparam.o:_lu_bootparams_getbyname -lu_bootparam.o:_bootparams_endent -lu_fstab.o:_getfsfile -lu_fstab.o:_getfsent -lu_fstab.o:_getfsbyname -lu_fstab.o:_getfsspec -lu_fstab.o:_lu_setfsent -lu_fstab.o:_lu_endfsent -lu_fstab.o:_setfsent -lu_fstab.o:_free_fstab -lu_fstab.o:_free_lu_thread_info_fstab -lu_fstab.o:_lu_getfsfile -lu_fstab.o:_free_fstab_data -lu_fstab.o:_copy_fstab -lu_fstab.o:_getfs -lu_fstab.o:_lu_getfsspec -lu_fstab.o:_extract_fstab -lu_fstab.o:_lu_getfsent -lu_fstab.o:_recycle_fstab -lu_fstab.o:_endfsent -lu_group.o:_get_group_cache_ttl -lu_group.o:_getgrnam_r -lu_group.o:_getgrent -lu_group.o:_getgrgid_r -lu_group.o:_lu_setgrent -lu_group.o:_free_lu_thread_info_group -lu_group.o:_getgrouplist -lu_group.o:_set_group_cache_ttl -lu_group.o:_getgr_r -lu_group.o:__old_getgrouplist -lu_group.o:_lu_getgrent -lu_group.o:_copy_group_r -lu_group.o:_setgrent -lu_host.o:_get_host_cache_ttl -lu_host.o:_lu_sethostent -lu_host.o:_lu_endhostent -lu_host.o:_endhostent -lu_host.o:_is_a4_mapped -lu_host.o:_getipnodebyaddr -lu_host.o:_gethostbyaddr -lu_host.o:_is_a4_compat -lu_host.o:_fake_hostent6 -lu_host.o:_gethostbyname2 -lu_host.o:_set_host_cache_ttl -lu_host.o:_gethostent -lu_host.o:_fake_hostent -lu_host.o:_gethostbyaddrerrno -lu_host.o:_cache_gethostbyaddr -lu_host.o:_lu_gethostent -lu_host.o:_sethostent -lu_host.o:_lu_gethostbyaddr -lu_host_async.o:_getipnodebyname_async_cancel -lu_host_async.o:_gethostbyname_async_cancel -lu_host_async.o:_getipnodebyaddr_async_cancel -lu_host_async.o:_gethostbyaddr_async_cancel -lu_host_async.o:_request_queue -lu_host_async.o:__async_cancel -lu_host_async.o:_getipnodebyaddr_async_start -lu_host_async.o:_gethostbyname_async_start -lu_host_async.o:_gethostbyaddr_async_start -lu_host_async.o:_request_extract -lu_host_async.o:_getipnodebyaddr_async_handleReply -lu_host_async.o:_gethostbyname_async_handleReply -lu_host_async.o:_gethostbyaddr_async_handleReply -lu_host_async.o:__lookup_all_rx -lu_host_async.o:_sendCannedReply -lu_host_async.o:__lookup_all_tx -lu_host_async.o:_getipnodebyname_async_start -lu_host_async.o:__gethostbyaddr_async_start -lu_host_async.o:__gethostbyaddr_async_handleReply -lu_host_async.o:__gethostbyname_async_handleReply -lu_host_async.o:__gethostbyname_async_start -lu_host_async.o:_getipnodebyname_async_handleReply -lu_netgroup.o:_lu_endnetgrent -lu_netgroup.o:_free_netgroup -lu_netgroup.o:_setnetgrent -lu_netgroup.o:_free_lu_thread_info_netgroup -lu_netgroup.o:_innetgr -lu_netgroup.o:_free_netgroup_data -lu_netgroup.o:_lu_getnetgrent -lu_netgroup.o:_getnetgrent -lu_netgroup.o:_recycle_netgroup -lu_netgroup.o:_extract_netgroup -lu_netgroup.o:_lu_setnetgrent -lu_netgroup.o:_lu_innetgr -lu_netgroup.o:_endnetgrent -lu_network.o:_lu_setnetent -lu_network.o:_getnetbyname -lu_network.o:_getnetent -lu_network.o:_getnetbyaddr -lu_network.o:_lu_endnetent -lu_network.o:_free_network -lu_network.o:_setnetent -lu_network.o:_free_lu_thread_info_network -lu_network.o:_free_network_data -lu_network.o:_recycle_network -lu_network.o:_copy_network -lu_network.o:_getnet -lu_network.o:_lu_getnetent -lu_network.o:_lu_getnetbyaddr -lu_network.o:_lu_getnetbyname -lu_network.o:_extract_network -lu_network.o:_endnetent -lu_printer.o:_lu_prdb_set -lu_printer.o:_prdb_getbyname -lu_printer.o:_prdb_get -lu_printer.o:_lu_prdb_end -lu_printer.o:_prdb_set -lu_printer.o:_free_printer -lu_printer.o:_free_lu_thread_info_printer -lu_printer.o:_recycle_printer -lu_printer.o:_free_printer_data -lu_printer.o:_getprinter -lu_printer.o:_copy_printer -lu_printer.o:_lu_prdb_get -lu_printer.o:_lu_prdb_getbyname -lu_printer.o:_extract_printer -lu_printer.o:_prdb_end -lu_protocol.o:_getprotobyname -lu_protocol.o:_getprotobynumber -lu_protocol.o:_getprotoent -lu_protocol.o:_lu_setprotoent -lu_protocol.o:_setprotoent -lu_protocol.o:_copy_protocol -lu_protocol.o:_lu_endprotoent -lu_protocol.o:_getproto -lu_protocol.o:_lu_getprotobynumber -lu_protocol.o:_extract_protocol -lu_protocol.o:_lu_getprotoent -lu_protocol.o:_endprotoent -lu_protocol.o:_recycle_protocol -lu_protocol.o:_lu_getprotobyname -lu_rpc.o:_lu_setrpcent -lu_rpc.o:_getrpcbyname -lu_rpc.o:_getrpcent -lu_rpc.o:_getrpcbynumber -lu_rpc.o:_lu_endrpcent -lu_rpc.o:_free_rpc -lu_rpc.o:_setrpcent -lu_rpc.o:_free_lu_thread_info_rpc -lu_rpc.o:_free_rpc_data -lu_rpc.o:_recycle_rpc -lu_rpc.o:_copy_rpc -lu_rpc.o:_getrpc -lu_rpc.o:_lu_getrpcent -lu_rpc.o:_lu_getrpcbynumber -lu_rpc.o:_lu_getrpcbyname -lu_rpc.o:_extract_rpc -lu_rpc.o:_endrpcent -lu_service.o:_get_service_cache_ttl -lu_service.o:_lu_setservent -lu_service.o:_getservent -lu_service.o:_getservbyport -lu_service.o:_free_service -lu_service.o:_endservent -lu_service.o:_setservent -lu_service.o:_free_lu_thread_info_service -lu_service.o:_free_service_data -lu_service.o:_cache_getservbyport -lu_service.o:_lu_getservent -lu_service.o:_lu_getservbyport -lu_service.o:_set_service_cache_ttl -lu_service.o:_lu_endservent -lu_user.o:_getpwent -lu_user.o:_get_user_cache_ttl -lu_user.o:_getpwnam_r -lu_user.o:_set_user_cache_ttl -lu_user.o:_lu_getpwent -lu_utils.o:_lu_async_send -lu_utils.o:__lu_data_get_key -lu_utils.o:_lu_async_call_cancel -lu_utils.o:__lookup_ooall -lu_utils.o:__lu_worklist_find -lu_utils.o:_lu_async_receive -lu_utils.o:_ni_property_merge -lu_utils.o:__lookupd_xdr_dictionary -lu_utils.o:_lookupd_make_query -lu_utils.o:_lookupd_query -lu_utils.o:__lookup_one -lu_utils.o:_ni_proplist_merge -lookupUser.o:___MIG_check__Reply___lookup_one_secure_t -lookupUser.o:__lookup_ooall_secure -lookupUser.o:__lookup_one_secure -lookupUser.o:___MIG_check__Reply___lookup_ooall_secure_t -_lu_types_xdr.o:_xdr__lu_passwd_ptr -_lu_types_xdr.o:_xdr__lu_fsent_ptr -_lu_types_xdr.o:_xdr__lu_bootparams_ent_ptr -_lu_types_xdr.o:_xdr__lu_aliasent_ptr -_lu_types_xdr.o:_xdr__lu_bootp_ent_ptr -_lu_types_xdr.o:_xdr__lu_prdb_property -_lu_types_xdr.o:_xdr__lu_servent_ptr -_lu_types_xdr.o:_xdr__lu_prdb_ent_ptr -_lu_types_xdr.o:_xdr__lu_hostent_ptr -_lu_types_xdr.o:_xdr__lu_netent_ptr -_lu_types_xdr.o:_xdr__lu_group_ptr -_lu_types_xdr.o:_xdr__lu_bootparams_ent -_lu_types_xdr.o:_xdr__lu_netgrent -_lu_types_xdr.o:_xdr__lu_rpcent -_lu_types_xdr.o:_xdr__lu_netent -_lu_types_xdr.o:_xdr__lu_bootp_ent -_lu_types_xdr.o:_xdr__lu_aliasent -_lu_types_xdr.o:_xdr__lu_prdb_ent -_lu_types_xdr.o:_xdr__lu_innetgr_args -_lu_types_xdr.o:_xdr__lu_hostent -_lu_types_xdr.o:_xdr__lu_passwd -_lu_types_xdr.o:_xdr__lu_group -_lu_types_xdr.o:_xdr__lu_servent -_lu_types_xdr.o:_xdr__lu_fsent -_lu_types_xdr.o:_xdr__lu_protoent -_lu_types_xdr.o:_xdr__lu_rpcent_ptr -_lu_types_xdr.o:_xdr__lu_protoent_ptr -ni_error.o:_ni_error -ni_glue.o:_ni_needwrite -ni_glue.o:_ni_clear -ni_glue.o:_ni_resync -ni_glue.o:_ni_parent -ni_glue.o:_ni_destroyprop -ni_glue.o:_ni_children -ni_glue.o:_ni_addrtag -ni_glue.o:_ni_lookupread -ni_glue.o:_ni_writeprop -ni_glue.o:_ni_destroyname -ni_glue.o:_ni_destroy -ni_glue.o:_ni_write -ni_glue.o:_ni_createprop -ni_glue.o:_ni_writename -ni_glue.o:_match -ni_glue.o:_ni_renameprop -ni_glue.o:_ni_readname -ni_glue.o:_ni_createname -ni_glue.o:_ni_create -ni_glue.o:__ni_dup -ni_glue.o:_connectlocal -ni_glue.o:_add_addr_tag -ni_glue.o:_ni_setuser -ni_glue.o:_addaddr -ni_glue.o:_ni_new -ni_glue.o:_setmaster -ni_glue.o:_get_daddr -ni_glue.o:_ni_listall -ni_glue.o:_getparent -ni_glue.o:_ni_setwritetimeout -ni_pwdomain.o:_escape_domain -ni_pwdomain.o:__ni_pwdomain -ni_pwdomain.o:_ni_domainof -ni_pwdomain.o:_finddomain -ni_pwdomain.o:_ni_pwdomain -ni_useful.o:_ni_open -ni_useful.o:__ni_free_list -ni_useful.o:_ni_rootopen -ni_useful.o:__ni_append_string -ni_useful.o:_ni_fancyopen -ni_useful.o:_setstuff -ni_useful.o:__ni_explode_string -ni_useful.o:__ni_parse_url_hostspec -ni_useful.o:_ni_relopen -ni_useful.o:_ni_parse_url -ni_useful.o:_ni_host_domain -ni_useful.o:_ni_url -ni_util.o:_ni_prop_dup -ni_util.o:_ni_idlist_dup -ni_util.o:_ni_namelist_delete -ni_util.o:_ni_entrylist_delete -ni_util.o:_ni_proplist_delete -ni_util.o:_ni_idlist_insert -ni_util.o:_ni_proplist_insert -ni_util.o:_ni_entrylist_insert -ni_util.o:_ni_idlist_delete -ni_util.o:_ni_find -ni_util.o:_ni_proplist_list_free -ni_util.o:_ni_proplist_dup -nibind_prot_clnt.o:_nibind_ping_1 -nibind_prot_clnt.o:_nibind_createclone_1 -nibind_prot_clnt.o:_nibind_destroydomain_1 -nibind_prot_clnt.o:_nibind_unregister_1 -nibind_prot_clnt.o:_nibind_register_1 -nibind_prot_clnt.o:_nibind_createmaster_1 -nibind_prot_clnt.o:_nibind_listreg_1 -nibind_prot_clnt.o:_nibind_getregister_1 -nibind_prot_clnt.o:_nibind_bind_1 -ni_prot_clnt.o:__ni_resync_2 -ni_prot_clnt.o:__ni_destroyprop_2 -ni_prot_clnt.o:__ni_lookupread_2 -ni_prot_clnt.o:__ni_parent_2 -ni_prot_clnt.o:__ni_ping_2 -ni_prot_clnt.o:__ni_readall_2 -ni_prot_clnt.o:__ni_readname_2 -ni_prot_clnt.o:__ni_renameprop_2 -ni_prot_clnt.o:__ni_write_2 -ni_prot_clnt.o:__ni_writename_2 -ni_prot_clnt.o:__ni_bind_2 -ni_prot_clnt.o:__ni_children_2 -ni_prot_clnt.o:__ni_crashed_2 -ni_prot_clnt.o:__ni_create_2 -ni_prot_clnt.o:__ni_createname_2 -ni_prot_clnt.o:__ni_createprop_2 -ni_prot_clnt.o:__ni_destroy_2 -ni_prot_clnt.o:__ni_destroyname_2 -ni_prot_clnt.o:__ni_rparent_2 -ni_prot_clnt.o:__ni_writeprop_2 -ni_prot_clnt.o:__ni_listall_2 -nibind_prot_xdr.o:_xdr_nibind_clone_args -nibind_prot_xdr.o:_xdr_nibind_bind_args -nibind_prot_xdr.o:_xdr_nibind_listreg_res -nibind_prot_xdr.o:_xdr_nibind_registration -ni_prot_xdr.o:_xdr_ni_create_stuff -ni_prot_xdr.o:_xdr_ni_parent_stuff -ni_prot_xdr.o:_xdr_ni_object_node -ni_prot_xdr.o:_xdr_ni_object_list -ni_prot_xdr.o:_xdr_ni_listall_stuff -ni_prot_xdr.o:_xdr_ni_children_stuff -ni_prot_xdr.o:_xdr_ni_destroy_args -ni_prot_xdr.o:_xdr_ni_readname_stuff -ni_prot_xdr.o:_xdr_ni_nameindex_args -ni_prot_xdr.o:_xdr_ni_children_res -ni_prot_xdr.o:_xdr_ni_parent_res -ni_prot_xdr.o:_xdr_ni_createprop_args -ni_prot_xdr.o:_xdr_ni_readname_res -ni_prot_xdr.o:_xdr_ni_readall_stuff -ni_prot_xdr.o:_xdr_ni_listall_res -ni_prot_xdr.o:_xdr_ni_readall_res -ni_prot_xdr.o:_xdr_ni_create_res -ni_prot_xdr.o:_xdr_ni_propname_args -ni_prot_xdr.o:_xdr_ni_create_args -ni_prot_xdr.o:_xdr_ni_createname_args -ni_prot_xdr.o:_xdr_ni_object -ni_prot_xdr.o:_xdr_ni_writename_args -ni_prot_xdr.o:_xdr_ni_writeprop_args -ni_prot_xdr.o:_xdr_ni_proplist_list -getdomainname.o:_getdomainname -getnetgrent.o:__old_getnetgrent -getnetgrent.o:__old_endnetgrent -getnetgrent.o:__old_setnetgrent -getnetgrent.o:_doit -getnetgrent.o:_fill -getnetgrent.o:_match -innetgr.o:_inlist -innetgr.o:__old_innetgr -innetgr.o:_lookup -innetgr.o:_doit -innetgr.o:_makekey -setdomainname.o:_setdomainname -xdr_domainname.o:_xdr_domainname -xdr_keydat.o:_xdr_keydat -xdr_mapname.o:_xdr_mapname -xdr_peername.o:_xdr_peername -xdr_valdat.o:_xdr_valdat -xdr_ypbind_binding.o:_xdr_ypbind_binding -xdr_ypbind_resp.o:_xdr_ypbind_resp -xdr_ypbind_resptype.o:_xdr_ypbind_resptype -xdr_ypbind_setdom.o:_xdr_ypbind_setdom -xdr_ypmaplist.o:_xdr_ypmaplist -xdr_ypreq_key.o:_xdr_ypreq_key -xdr_ypreq_nokey.o:_xdr_ypreq_nokey -xdr_ypresp_all.o:_xdr_ypresp_all -xdr_ypresp_key_val.o:_xdr_ypresp_key_val -xdr_ypresp_maplist.o:_xdr_ypresp_maplist -xdr_ypresp_master.o:_xdr_ypresp_master -xdr_ypresp_order.o:_xdr_ypresp_order -xdr_ypresp_val.o:_xdr_ypresp_val -xdr_ypstat.o:_xdr_ypstat -yperr_string.o:_yperr_string -ypmatch_cache.o:_yp_match -ypmatch_cache.o:_yp_next -yppasswdd_xdr.o:_xdr_x_passwd -yppasswdd_xdr.o:_xdr_yppasswd -ypprot_err.o:_ypprot_err -yp_all.o:_xdr_ypresp_all_seq -yp_all.o:_yp_all -yp_bind.o:_yp_bind -yp_bind.o:__yp_unbind -yp_bind.o:__yp_dobind -yp_bind.o:_yp_unbind -yp_first.o:_yp_first -yp_get_default_domain.o:_yp_get_default_domain -yp_maplist.o:_yp_maplist -yp_master.o:_yp_master -yp_order.o:_yp_order -auth_none.o:_authnone_refresh -auth_none.o:_authnone_verf -auth_unix.o:_authunix_nextverf -auth_unix.o:_authunix_refresh -auth_unix.o:_set_rpc_maxgrouplist -auth_unix.o:_authunix_create_default -clnt_generic.o:_clnt_create -clnt_perror.o:_clnt_pcreateerror -clnt_perror.o:_clnt_perrno -clnt_perror.o:_clnt_perror -clnt_perror.o:__buf -clnt_perror.o:_clnt_sperrno -clnt_perror.o:_clnt_spcreateerror -clnt_perror.o:_clnt_sperror -clnt_perror.o:_auth_errmsg -clnt_raw.o:_clntraw_abort -clnt_raw.o:_clntraw_geterr -clnt_raw.o:_clntraw_control -clnt_raw.o:_clntraw_freeres -clnt_raw.o:_clntraw_create -clnt_raw.o:_clntraw_call -clnt_raw.o:_clntraw_destroy -clnt_simple.o:_callrpc -clnt_tcp.o:_clnttcp_abort -clnt_tcp.o:_clnttcp_freeres -clnt_udp.o:_clntudp_freeres -clnt_udp.o:_clntudp_abort -clnt_udp.o:_clntudp_control -clnt_udp.o:_clntudp_geterr -get_myaddress.o:_get_myaddress -pmap_clnt.o:_pmap_unset -pmap_clnt.o:_pmap_set -pmap_getmaps.o:_pmap_getmaps -pmap_getport.o:_pmap_getport -pmap_prot2.o:_xdr_pmaplist -pmap_rmt.o:_xdr_rmtcallres -pmap_rmt.o:_pmap_rmtcall -pmap_rmt.o:_xdr_rmtcall_args -pmap_rmt.o:_getbroadcastnets -pmap_rmt.o:_clnt_broadcast -rpc_dtablesize.o:__rpc_dtablesize -rpc_prot.o:_xdr_des_block -rpc_prot.o:_rejected -rpc_prot.o:_accepted -rpc_prot.o:_xdr_rejected_reply -svc.o:_svcerr_auth -svc.o:_svcerr_systemerr -svc.o:_svcerr_decode -svc.o:_svc_getreq -svc.o:_svcerr_noprog -svc.o:_svcerr_noproc -svc.o:_svcerr_progvers -svc.o:_svc_unregister -svc.o:_svc_register -svc.o:_svc_find -svc.o:_svcerr_weakauth -svc_auth_unix.o:__svcauth_short -svc_raw.o:_svcraw_stat -svc_raw.o:_svcraw_getargs -svc_raw.o:_svcraw_freeargs -svc_raw.o:_svcraw_recv -svc_raw.o:_svcraw_create -svc_raw.o:_svcraw_reply -svc_raw.o:_svcraw_destroy -svc_simple.o:_registerrpc -svc_simple.o:_universal -svc_tcp.o:_rendezvous_abort -svc_tcp.o:_rendezvous_stat -svc_tcp.o:_rendezvous_request -svc_tcp.o:_svctcp_create -getrpcent.o:__rpcdata -getrpcent.o:__old_endrpcent -getrpcent.o:__old_getrpcbynumber -getrpcent.o:__old_setrpcent -getrpcent.o:__old_getrpcbyname -getrpcent.o:__old_getrpcent -getrpcent.o:_interpret -svc_udp.o:_svcudp_create -svc_udp.o:_svcudp_destroy -svc_udp.o:_cache_get -svc_udp.o:_cache_set -svc_udp.o:_svcudp_bufcreate -svc_udp.o:_svcudp_enablecache -xdr.o:_xdr_netobj -xdr.o:_xdr_u_char -xdr.o:_xdr_char -xdr.o:_xdr_short -xdr.o:_xdr_wrapstring -xdr_array.o:_xdr_vector -xdr_float.o:_xdr_float -xdr_float.o:_xdr_double -xdr_rec.o:_skip_input_bytes -xdr_rec.o:_xdrrec_getpos -xdr_rec.o:_xdrrec_setpos -xdr_stdio.o:_xdrstdio_getpos -xdr_stdio.o:_xdrstdio_destroy -xdr_stdio.o:_xdrstdio_setpos -xdr_stdio.o:_xdrstdio_create -xdr_stdio.o:_xdrstdio_getlong -xdr_stdio.o:_xdrstdio_putlong -xdr_stdio.o:_xdrstdio_getbytes -xdr_stdio.o:_xdrstdio_putbytes -xdr_stdio.o:_xdrstdio_inline -getrpcport.o:_getrpcport -glob.o:_compare -glob.o:_g_strchr -glob.o:_glob1 -glob.o:_g_opendir -glob.o:_globfree -glob.o:_g_lstat -glob.o:_g_stat -glob.o:_globexp1 -glob.o:_glob -glob.o:_globextend -glob.o:_globtilde -glob.o:_match -glob.o:_glob2 -glob.o:_glob3 -glob.o:_globexp2 -glob.o:_glob0 -glob.o:_g_Ctoc -hton.o:_ntohl -hton.o:_ntohs -hton.o:_htonl -hton.o:_htons -putpwpasswd.o:_changeit -putpwpasswd.o:_putpwpasswd -pwcache.o:_user_from_uid -pwcache.o:_group_from_gid -rcmd.o:_rcmd -rcmd.o:_rresvport -rcmd.o:_iruserok -rcmd.o:___ivaliduser_af -rcmd.o:_rresvport_af -rcmd.o:___icheckhost -rcmd.o:_iruserok_sa -rcmd.o:___ivaliduser_sa -rcmd.o:_rcmd_af -rcmd.o:_ruserok -rcmd.o:___ivaliduser -rcmdsh.o:_rcmdsh -DNSServiceDiscovery.o:_internal_DNSServiceDomainEnumerationReply_rpc -DNSServiceDiscovery.o:_DNSServiceDomainEnumerationCreate -dnssd_clientstub.o:_DNSServiceDiscoverySockFD -dnssd_clientstub.o:_my_read -dnssd_clientstub.o:_DNSServiceDiscoveryRefDeallocate -dnssd_clientstub.o:_my_write -dnssd_clientstub.o:_DNSServiceConnect -dnssd_clientstub.o:_handle_enumeration_response -dnssd_clientstub.o:_handle_regrecord_response -dnssd_clientstub.o:_DNSServiceRemoveRecord -dnssd_clientstub.o:_handle_browse_response -dnssd_clientstub.o:_handle_regservice_response -dnssd_clientstub.o:_connect_to_server -dnssd_clientstub.o:_DNSServiceUpdateRecord -dnssd_clientstub.o:_DNSServiceDiscoveryProcessResult -dnssd_clientstub.o:_DNSServiceReconfirmRecord -dnssd_clientstub.o:_handle_question_response -dnssd_clientstub.o:_DNSServiceEnumerateDomains -dnssd_clientstub.o:_DNSServiceAddRecord +memory_funcs.o:_NXOpenMemory +streams_internal.o:_NXStreamCreate +streams_internal.o:_NXStreamCreateFromZone +streams_doscan.o:_NXVScanf +streams_internal.o:__NXVerifyStream +streams_doscan.o:__innum +streams.o:_NXUngetc +streams.o:_NXTell +streams_internal.o:__NXStreamFillBuffer +indir_ops.o:_NXFill +darwin-fpsave.o:saveFP +except.o:__NXAddHandler +except.o:_addme +memory_funcs.o:_memory_fill +except.o:__NXRemoveHandler +darwin-fpsave.o:restFP +memory_funcs.o:_NXCloseMemory +memory_funcs.o:_verify_memory_stream +streams_internal.o:_NXStreamDestroy +rndint.o:_round +minmaxdim.o:_fmaxf +lu_service.o:_getservbyname +lu_service.o:_getserv +lu_service.o:_extract_service +lu_service.o:_copy_service +sigcompat.So:_sighold +sigcompat.So:_sigrelse +rewinddir.So:_rewinddir +exchangedata.So:_exchangedata +arctg.o:_atan +asinacos.o:_acos dnssd_clientstub.o:_DNSServiceBrowse -dnssd_clientstub.o:_DNSServiceQuery -dnssd_clientstub.o:_DNSServiceRegisterRecord -dnssd_clientstub.o:_DNSServiceResolve -dnssd_clientstub.o:_DNSServiceRegister -dnssd_clientstub.o:_deliver_request dnssd_clientstub.o:_create_hdr -dnssd_ipc.o:_put_string -dnssd_ipc.o:_get_error_code -dnssd_ipc.o:_get_long -dnssd_ipc.o:_get_short -dnssd_ipc.o:_get_flags -dnssd_ipc.o:_put_flags dnssd_ipc.o:_put_long -dnssd_ipc.o:_put_error_code +dnssd_ipc.o:_put_string +dnssd_clientstub.o:_connect_to_server +dnssd_clientstub.o:_deliver_request +dnssd_ipc.o:_ConvertHeaderBytes +dnssd_clientstub.o:_my_write +dnssd_clientstub.o:_my_read +dnssd_clientstub.o:_DNSServiceRefSockFD +localtime.So:_gmtime_r +dnssd_clientstub.o:_DNSServiceRefDeallocate +ATsocket.So:_ATsocket +ATPsndreq.So:_ATPsndreq +ATPgetreq.So:_ATPgetreq +ATPsndrsp.So:_ATPsndrsp +sem_open.So:_sem_open +fix-3375657.So:__sem_match +sem_trywait.So:_sem_trywait +sem_close.So:_sem_close +sem_post.So:_sem_post +taskUser.So:_task_get_exception_ports +taskUser.So:_task_set_exception_ports +pthread.So:_pthread_setcancelstate +pthread.So:_pthread_detach +regcomp.So:_p_ere +regcomp.So:_p_bracket +regcomp.So:_CHadd +sem_unlink.So:_sem_unlink +regfree.So:_regfree +ldiv.So:_ldiv +tableLogD.o:_log10 +mach_error_string.So:_mach_error_string +rndtol.o:_rinttol +rndint.o:_lrint +wcwidth.So:_wcwidth +nomacros.So:___wcwidth +vprintf-LDBL.So:_vprintf +mach_hostUser.So:_kmod_get_info +vm_mapUser.So:_vm_machine_attribute +host_privUser.So:_kmod_create +host_privUser.So:_kmod_control +DNSServiceDiscovery.o:_DNSServiceRegistrationCreate +DNSServiceDiscovery.o:_DNSServiceDiscoveryLookupServer +DNSServiceDiscovery.o:__increaseQueueLengthOnPort +DNSServiceDiscoveryRequestUser.o:_DNSServiceRegistrationCreate_rpc +DNSServiceDiscovery.o:_DNSServiceDiscoveryMachPort +DNSServiceDiscovery.o:_DNSServiceBrowserCreate +DNSServiceDiscoveryRequestUser.o:_DNSServiceBrowserCreate_rpc +random.So:_srandomdev +DNSServiceDiscovery.o:_DNSServiceDiscovery_handleReply +DNSServiceDiscoveryReplyServer.o:_DNSServiceDiscoveryReply_server +DNSServiceDiscoveryReplyServer.o:__XDNSServiceRegistrationReply_rpc +DNSServiceDiscovery.o:_internal_DNSServiceRegistrationReply_rpc +DNSServiceDiscoveryReplyServer.o:__XDNSServiceBrowserReply_rpc +DNSServiceDiscovery.o:_internal_DNSServiceBrowserReply_rpc +DNSServiceDiscovery.o:_DNSServiceResolverResolve +DNSServiceDiscoveryRequestUser.o:_DNSServiceResolverResolve_rpc +hypot.o:_hypot +DNSServiceDiscoveryReplyServer.o:__XDNSServiceResolverReply_rpc +DNSServiceDiscovery.o:_internal_DNSServiceResolverReply_rpc +DNSServiceDiscovery.o:_DNSServiceDiscoveryDeallocate +regcomp.So:_repeat +regexec.So:_lmatcher +regexec.So:_lstep +regexec.So:_lslow +regexec.So:_ldissect +regexec.So:_sslow +regexec.So:_sdissect +mach_traps.So:_task_self_trap +exec.So:_execlp +fchflags.So:_fchflags +floating.o:_sqrtf +setxattr.So:_setxattr +getloadavg.So:_getloadavg +lu_group.o:_getgrgid +pwcache.o:_user_from_uid +getpwent.o:_setpassent +pthread_rwlock.So:_pthread_rwlock_destroy +mig_support.So:_mig_dealloc_reply_port +exec.So:_execl +labs.So:_labs +lu_service.o:_free_lu_thread_info_service +lu_service.o:_free_service +lu_service.o:_free_service_data +pthread.So:_pthread_attr_setschedparam +lu_host.o:_free_lu_thread_info_host +dnssd_clientstub.o:_DNSServiceRegister dnssd_ipc.o:_put_short -dnssd_ipc.o:_get_string dnssd_ipc.o:_put_rdata +dnssd_clientstub.o:_DNSServiceProcessResult +dnssd_clientstub.o:_handle_browse_response +dnssd_ipc.o:_get_long +dnssd_ipc.o:_get_string +dnssd_clientstub.o:_DNSServiceAddRecord +dnssd_clientstub.o:_DNSServiceUpdateRecord +dnssd_clientlib.o:_DNSServiceConstructFullName +dnssd_clientlib.o:_DomainEndsInDot +dnssd_clientstub.o:_DNSServiceQueryRecord +dnssd_clientstub.o:_handle_query_response +dnssd_ipc.o:_get_short dnssd_ipc.o:_get_rdata -DNSServiceDiscoveryRequestUser.o:_DNSServiceDomainEnumerationCreate_rpc -DNSServiceDiscoveryReplyServer.o:_DNSServiceDiscoveryReply_server_routine -DNSServiceDiscoveryReplyServer.o:__XDNSServiceDomainEnumerationReply_rpc -DNSServiceDiscoveryReplyServer.o:___MIG_check__Request__DNSServiceDomainEnumerationReply_rpc_t -kvm.o:_kvm_geterr -kvm.o:_kvm_openfiles -kvm.o:__kvm_err -kvm.o:_kvm_open -kvm.o:_kvm_close -kvm.o:__kvm_syserr -kvm.o:_kvm_dbopen -kvm.o:__kvm_open -kvm.o:_kvm_nlist -kvm.o:_kvm_read -kvm.o:_kvm_write -kvm.o:__kvm_malloc -kvm_file.o:_kvm_deadfiles -kvm_file.o:_kvm_getfiles -kvm_getloadavg.o:_kvm_getloadavg -kvm_next.o:__kvm_initvtop -kvm_next.o:__kvm_uvatop -kvm_next.o:__kvm_freevtop -kvm_next.o:__kvm_kvatop -kvm_proc.o:_kvm_getargv -kvm_proc.o:_kvm_getenvv -kvm_proc.o:_kvm_readswap -kvm_proc.o:_ps_str_a -kvm_proc.o:__kvm_freeprocs -kvm_proc.o:__kvm_realloc -kvm_proc.o:_proc_verify -kvm_proc.o:_kvm_doargv -kvm_proc.o:_kvm_deadprocs -kvm_proc.o:_fill_externproc -kvm_proc.o:_kvm_uread -kvm_proc.o:_kvm_argv -kvm_proc.o:_kvm_proclist -kvm_proc.o:_ps_str_e -kvm_proc.o:_kvm_getprocs +dnssd_clientlib.o:_TXTRecordGetCount +dnssd_clientlib.o:_TXTRecordGetItemAtIndex +dnssd_clientstub.o:_handle_regservice_response +dnssd_clientstub.o:_DNSServiceResolve +dnssd_clientstub.o:_handle_resolve_response +msgcat.So:_catopen +msgcat.So:_catgets +sbrk.So:_sbrk +sigcompat.So:_sigvec +exec.So:_execv +strcoll.So:_strcoll +addr2ascii.So:_addr2ascii +err-LDBL.So:_warn +ualarm.So:_ualarm +tempnam.So:_tempnam +mktemp.So:__mktemp +madvise.So:_madvise arctg.o:_atanCore +refill.So:_lflush arctg.o:_atanCoreInv -ashachath.o:_atanh -ashachath.o:_asinh -ashachath.o:_acosh -copysign.o:_copysignf -erfcerf.o:_erf -erfcerf.o:_erfc -erfcerf.o:_ErrFunApprox -fabs.o:_fabsf -fenv.o:_fegetexceptflag -fenv.o:_fesetexceptflag -fpmacros.o:___math_errhandling -fpmacros.o:___signbitf -fpmacros.o:___isfinitef -fpmacros.o:___nan -fpmacros.o:___isnormalf -fpmacros.o:___isnormald -fpmacros.o:___inff -frexpldexp.o:_frexpf -frexpldexp.o:_ldexpf -gamma.o:_tgamma -hypot.o:_hypot -lgamma.o:_lgamma -lgamma.o:_lgammaApprox -lgamma.o:_lgamma_r -logb.o:_ilogb -logb.o:_ilogbf -minmaxdim.o:_fma -minmaxdim.o:_fdimf -minmaxdim.o:_fmaf -nextafter.o:_nextafter -nextafter.o:___nextafter -remmod.o:_remainderf -remmod.o:_remquof -rndint.o:_lrintf -rndint.o:_llrint -rndint.o:_llrintf -rndint.o:_llround -rndint.o:_llroundf -rndint.o:_nearbyint -rndint.o:_nearbyintf -rndint.o:_modf -rndint.o:_trunc -rndint.o:_lroundf -rndint.o:_truncf -s_cbrt.o:_cbrt -scalb.o:_scalbln -scalb.o:_scalblnf -shchth.o:_cosh -shchth.o:_sinh -shchth.o:_tanh -tableExpD.o:_expm1 -tableLogD.o:_log1p -gamma9.o:_gamma -gamma9.o:_gamma_r -matherr.o:_matherr -rndtol.o:_roundtol -significand.o:_significand -w_cabs.o:_cabs -w_drem.o:_drem -w_scalb.o:_scalb -e_j0.o:_pzero -e_j0.o:_y0 -e_j0.o:_j0 -e_j0.o:_qzero -e_j1.o:_pone -e_j1.o:_j1 -e_j1.o:_y1 -e_j1.o:_qone -e_jn.o:_jn -e_jn.o:_yn -sqrt970.o:_hw_sqrt -dyld.o:__dyld_launched_prebound -dyld.o:__dyld_moninit -dyld.o:__dyld_lookup_and_bind_with_hint -dyld.o:__dyld_register_func_for_link_module -dyld.o:__dyld_get_objc_module_sect_for_module -dyld.o:__dyld_register_func_for_unlink_module -dyld.o:__dyld_register_func_for_replace_module -dyld.o:__dyld_lookup_and_bind_objc -dyld_debug.o:__dyld_debug_set_error_func -dyld_debug.o:_set_dyld_data -dyld_debug.o:_get_dyld_data -dyld_debug.o:__dyld_event_server_routine -dyld_debug.o:_init_routine -dyld_debug.o:__X_dyld_event_server_callback -dyld_debug.o:_set_dyld_debug_error_data -dyld_debug.o:_server_loop -dyld_debug.o:__dyld_event_server_callback -dyld_debug.o:___MIG_check__Reply___dyld_debug_defining_module_t -dyld_debug.o:___MIG_check__Reply___dyld_debug_monoutput_t -dyld_debug.o:___MIG_check__Reply___dyld_debug_bind_module_t -dyld_debug.o:___MIG_check__Reply___dyld_debug_add_event_subscriber_t -dyld_debug.o:___MIG_check__Reply___dyld_debug_module_name_t -dyld_debug.o:___MIG_check__Reply___dyld_debug_is_module_bound_t -dyld_debug.o:__dyld_event_server -dyld_debug.o:_task_suspend_threads -dyld_debug.o:__dyld_debug_bind_module -dyld_debug.o:_task_resume_threads -dyld_debug.o:__dyld_debug_defining_module -dyld_debug.o:_thread_setup -dyld_debug.o:__dyld_debug_monoutput -dyld_debug.o:_translate_port -dyld_debug.o:__dyld_debug_add_event_subscriber -dyld_debug.o:_remove_core_tasks_memory -dyld_debug.o:__dyld_debug_is_module_bound -dyld_debug.o:_user_dyld_debug_monoutput -dyld_debug.o:__dyld_debug_task_from_core -dyld_debug.o:__dyld_debug_module_name -dyld_debug.o:_user_dyld_debug_bind_module -dyld_debug.o:_user_dyld_debug_add_event_subscriber -dyld_debug.o:_user_dyld_debug_is_module_bound -dyld_debug.o:_user_dyld_debug_defining_module -dyld_debug.o:_user_dyld_debug_module_name -dyld_debug.o:__dyld_debug_restore_runnable -dyld_debug.o:_create_core_task -dyld_debug.o:_thread_start -dyld_debug.o:__dyld_debug_make_runnable -dyld_debug.o:__dyld_debug_subscribe_to_events -dyld_debug.o:_get_or_start_debug_thread -dyld_debug.o:_make_dyld_image_data_writable -dyld_debug.o:_get_set_dyld_data -dyld_debug.o:_load_task_from_core_ofile -objectfileimage.o:_get_stack_size_from_flag -objectfileimage.o:_get_arch_flags -objectfileimage.o:_round -objectfileimage.o:_swap_m68k_thread_state_user_reg -objectfileimage.o:_NSCreateCoreFileImageFromFile -objectfileimage.o:_swap_m88k_thread_state_user_t -objectfileimage.o:_SWAP_FLOAT -objectfileimage.o:_swap_i386_thread_cthreadstate -objectfileimage.o:_size_ar_name -objectfileimage.o:_print -objectfileimage.o:_get_segalign_from_flag -objectfileimage.o:_NSCreateObjectFileImageFromMemory -objectfileimage.o:_get_stack_direction_from_flag -objectfileimage.o:_swap_indirect_symbols -objectfileimage.o:_NSSymbolDefinitionCountInObjectFileImage -objectfileimage.o:_swap_thread_command -objectfileimage.o:_NSSymbolReferenceCountInObjectFileImage -objectfileimage.o:_swap_ident_command -objectfileimage.o:_SWAP_DOUBLE -objectfileimage.o:_get_byte_sex_from_flag -objectfileimage.o:_swap_fat_header -objectfileimage.o:_swap_load_command -objectfileimage.o:_ofile_first_arch -objectfileimage.o:_NSHasModInitObjectFileImage -objectfileimage.o:_NSSymbolDefinitionNameInObjectFileImage -objectfileimage.o:_swap_dylinker_command -objectfileimage.o:_swap_dylib_table_of_contents -objectfileimage.o:_swap_sub_library_command -objectfileimage.o:_get_stack_addr_from_flag -objectfileimage.o:_get_arch_family_from_cputype -objectfileimage.o:_swap_sub_framework_command -objectfileimage.o:_swap_sub_client_command -objectfileimage.o:_swap_ranlib -objectfileimage.o:_swap_prebind_cksum_command -objectfileimage.o:_swap_nlist -objectfileimage.o:_swap_sub_umbrella_command -objectfileimage.o:_my_mach_error -objectfileimage.o:_error -objectfileimage.o:_ofile_next_arch -objectfileimage.o:_swap_fvmfile_command -objectfileimage.o:_swap_ppc_float_state_t -objectfileimage.o:_swap_symseg_command -objectfileimage.o:_swap_twolevel_hints_command -objectfileimage.o:_system_error -objectfileimage.o:_swap_prebound_dylib_command -objectfileimage.o:_swap_fvmlib_command -objectfileimage.o:_NSSymbolReferenceNameInObjectFileImage -objectfileimage.o:_get_arch_name_from_types -objectfileimage.o:_GetObjectFileImageSymbols -objectfileimage.o:_set_arch_flag_name -objectfileimage.o:_archive_error -objectfileimage.o:_swap_ppc_exception_state_t -objectfileimage.o:_NSFindSectionAndOffsetInObjectFileImage -objectfileimage.o:_swap_fat_arch -objectfileimage.o:_archive_member_error -objectfileimage.o:_swap_m68k_thread_state_regs -objectfileimage.o:_swap_symtab_command -objectfileimage.o:_get_arch_from_flag -objectfileimage.o:_swap_dylib_command -objectfileimage.o:_swap_dylib_reference -objectfileimage.o:_swap_twolevel_hint -objectfileimage.o:_NSIsSymbolDefinedInObjectFileImage -objectfileimage.o:_swap_mach_header -objectfileimage.o:_swap_m68k_thread_state_68882 -objectfileimage.o:_NSGetSectionDataInObjectFileImage -objectfileimage.o:_Mach_O_error -objectfileimage.o:_swap_hppa_frame_thread_state -objectfileimage.o:_swap_i386_thread_exceptstate -objectfileimage.o:_check_extend_format_1 -objectfileimage.o:_swap_segment_command -objectfileimage.o:_swap_section -objectfileimage.o:_swap_routines_command -objectfileimage.o:_swap_hppa_fp_thread_state -objectfileimage.o:_ofile_first_module -objectfileimage.o:_check_fat -objectfileimage.o:_swap_relocation_info -objectfileimage.o:_ofile_next_module -objectfileimage.o:_swap_sparc_thread_state_fpu -objectfileimage.o:_swap_dylib_module -objectfileimage.o:_check_dylib_module -objectfileimage.o:_swap_i386_thread_state -objectfileimage.o:_ofile_specific_module -objectfileimage.o:_swap_i860_thread_state_regs -objectfileimage.o:_check_fat_object_in_archive -objectfileimage.o:_swap_dysymtab_command -objectfileimage.o:_ofile_specific_arch -objectfileimage.o:_check_archive -objectfileimage.o:_ofile_next_member -objectfileimage.o:_ofile_first_member -objectfileimage.o:_ofile_specific_member -objectfileimage.o:_swap_m88110_thread_state_impl_t -objectfileimage.o:_swap_sparc_thread_state_regs -objectfileimage.o:_swap_m88k_thread_state_grf_t -objectfileimage.o:_swap_hppa_integer_thread_state -objectfileimage.o:_swap_ppc_thread_state_t -objectfileimage.o:_swap_i386_thread_fpstate -objectfileimage.o:_swap_m88k_thread_state_xrf_t -objectfileimage.o:_vprint -runtime_loading.o:_NSReplaceModule -runtime_loading.o:_NSLinkEditError -dyld_support.o:_NSAddLibraryWithSearching -dyld_support.o:_NSInstallLinkEditErrorHandlers -dyld_support.o:_NSLibraryNameForModule -dyld_support.o:_NSModuleForSymbol -dyld_support.o:_NSNameOfModule -dyld_support.o:_NSNameOfSymbol -dyld_support.o:_NSVersionOfLinkTimeLibrary -dyld_support.o:_NSVersionOfRunTimeLibrary -dyld_support.o:_names_match -dyld_event_server.o:__dyld_event_server_routine -dyld_event_server.o:__X_dyld_event_server_callback -dyld_event_server.o:__dyld_event_server -dyld_event_server.o:__dyld_event_server_callback -arch.o:_NXGetAllArchInfos -arch.o:_NXCombineCpuSubtypes -getsecbyname.o:_getsectbynamefromheaderwithswap -get_end.o:_get_etext -get_end.o:_get_end -get_end.o:_get_edata -swap.o:_swap_fat_header -swap.o:_swap_ident_command -swap.o:_swap_load_command -swap.o:_swap_thread_command -swap.o:_swap_indirect_symbols -swap.o:_swap_sub_client_command -swap.o:_swap_sub_framework_command -swap.o:_swap_sub_umbrella_command -swap.o:_swap_sub_library_command -swap.o:_swap_dylinker_command -swap.o:_swap_prebind_cksum_command -swap.o:_swap_ranlib -swap.o:_swap_symseg_command -swap.o:_swap_fvmfile_command -swap.o:_swap_nlist -swap.o:_swap_fvmlib_command -swap.o:_swap_prebound_dylib_command -swap.o:_swap_dylib_reference -swap.o:_swap_dylib_command -swap.o:_swap_symtab_command -swap.o:_swap_fat_arch -swap.o:_swap_mach_header -swap.o:_swap_routines_command -swap.o:_swap_segment_command -swap.o:_swap_section -swap.o:_swap_dylib_module -swap.o:_swap_relocation_info -swap.o:_swap_dysymtab_command -swap.o:_swap_dylib_table_of_contents -hppa_swap.o:_swap_hppa_frame_thread_state -hppa_swap.o:_swap_hppa_integer_thread_state -hppa_swap.o:_swap_hppa_fp_thread_state -i386_swap.o:_swap_i386_thread_exceptstate -i386_swap.o:_swap_i386_thread_state -i386_swap.o:_swap_i386_thread_fpstate -i386_swap.o:_swap_i386_thread_cthreadstate -m68k_swap.o:_swap_m68k_thread_state_regs -m68k_swap.o:_swap_m68k_thread_state_68882 -m68k_swap.o:_swap_m68k_thread_state_user_reg -sparc_swap.o:_swap_sparc_thread_state_regs -sparc_swap.o:_swap_sparc_thread_state_fpu -ppc_swap.o:_swap_ppc_float_state_t -ppc_swap.o:_swap_ppc_thread_state_t -ppc_swap.o:_swap_ppc_exception_state_t -i860_swap.o:_swap_i860_thread_state_regs -m88k_swap.o:_swap_m88k_thread_state_user_t -m88k_swap.o:_swap_m88k_thread_state_grf_t -m88k_swap.o:_swap_m88k_thread_state_xrf_t -m88k_swap.o:_swap_m88110_thread_state_impl_t -common.o:__notify_lib_peek -common.o:__notify_lib_get_state -common.o:__notify_lib_notify_state_new -common.o:__notify_lib_set_access -common.o:__notify_lib_check -common.o:__notify_lib_set_state -common.o:__notify_lib_set_owner -common.o:__notify_lib_notify_state_free -common.o:__notify_lib_get_access -common.o:__notify_lib_get_owner -common.o:_insert_controlled_name -common.o:__notify_lib_register_file_descriptor -common.o:__notify_lib_register_signal -common.o:__notify_lib_release_name -notify_client.o:_token_table_delete -notify_client.o:_notify_peek -notify_client.o:_notify_get_event -notify_client.o:_notify_get_state -notify_client.o:_notify_monitor_file -notify_client.o:_notify_set_state -notify_client.o:_notify_release_name -notify_client.o:_notify_set_access -notify_client.o:_notify_get_access -notify_client.o:_notify_set_owner -notify_client.o:_notify_get_owner -notify_client.o:_notify_register_plain -notify_client.o:_notify_register_signal -notify_client.o:_notify_register_file_descriptor -notify_client.o:_notify_cancel -table.o:__nc_list_set_next -table.o:__nc_list_set_data -table.o:__nc_list_set_prev -table.o:__nc_list_prev -table.o:__nc_list_retain -table.o:__nc_list_count -table.o:__nc_list_retain_list -table.o:__nc_list_tail -table.o:__nc_list_head -table.o:__nc_list_find -table.o:__nc_list_extract -table.o:__nc_list_reverse -table.o:__nc_list_concat -table.o:__nc_table_free -notify_ipcUser.o:___MIG_check__Reply___notify_server_monitor_file_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_set_access_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_set_state_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_set_owner_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_cancel_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_release_name_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_register_signal_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_register_file_descriptor_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_get_state_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_check_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_get_access_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_register_plain_t -notify_ipcUser.o:___MIG_check__Reply___notify_server_get_owner_t -notify_ipcUser.o:__notify_server_cancel -notify_ipcUser.o:__notify_server_set_state -notify_ipcUser.o:__notify_server_check -notify_ipcUser.o:__notify_server_get_state -notify_ipcUser.o:__notify_server_release_name -notify_ipcUser.o:__notify_server_set_access -notify_ipcUser.o:__notify_server_monitor_file -notify_ipcUser.o:__notify_server_set_owner -notify_ipcUser.o:__notify_server_get_access -notify_ipcUser.o:__notify_server_get_owner -notify_ipcUser.o:__notify_server_register_plain -notify_ipcUser.o:__notify_server_register_signal -notify_ipcUser.o:__notify_server_register_file_descriptor -notify_ipcUser.o:__notify_server_get_event -notify_ipcUser.o:___MIG_check__Reply___notify_server_get_event_t -except.o:_NXGetExceptionRaiser -except.o:_NXSetExceptionRaiser -except.o:__NXRaiseError -except.o:_NXAllocErrorData -except.o:_NXResetErrorData -except.o:__NXRemoveAltHandler -except.o:__NXAddAltHandler -except.o:_NXDefaultExceptionRaiser -except.o:_trickyRemoveHandler -file_funcs.o:_file_close -file_funcs.o:_file_fill -file_funcs.o:_file_flush -file_funcs.o:_file_change -file_funcs.o:_file_seek -file_funcs.o:_NXOpenFile -indir_ops.o:_NXFlush -indir_ops.o:_NXFill -ipc_funcs.o:_ipc_change -ipc_funcs.o:_ipc_seek -ipc_funcs.o:_ipc_close -ipc_funcs.o:_ipc_fill -ipc_funcs.o:_ipc_flush -ipc_funcs.o:_NXOpenPort -memory_funcs.o:_memory_fill -memory_funcs.o:_cheap_close -memory_funcs.o:_cheap_flush -memory_funcs.o:_NXOpenSmallMemory -memory_funcs.o:_betterCopy -memory_funcs.o:_cheap_seek -memory_funcs.o:_NXSaveToFile -memory_funcs.o:_NXMapFile -memory_funcs.o:_cheap_extend -memory_funcs.o:_NXGetStreamOnSection -memory_funcs.o:_NXGetStreamOnSectionForBestArchitecture -memory_funcs.o:_check_wellformed_header -NXLogError.o:_hasTerminal -NXLogError.o:__NXLogError -streams.o:_NXPrintf -streams.o:_NXScanf -streams_doprnt.o:_btod -streams_doprnt.o:__p_dconv -streams_doprnt.o:_isRegisteredPrintfChar -streams_doprnt.o:_NXRegisterPrintfProc -streams_doprnt.o:__ffmt -streams_doprnt.o:__efmt -streams_doprnt.o:__gfmt_common -streams_doprnt.o:_NXVPrintf -streams_doprnt.o:__gfmt -streams_doscan.o:__getccl -streams_doscan.o:__instr -streams_internal.o:__NXStreamFillBuffer -streams_internal.o:__NXStreamChangeBuffer -streams_internal.o:__NXStreamFlushBuffer -UNCUserNotification.o:_UNCUserNotificationGetResponseContents -UNCUserNotification.o:_UNCUserNotificationUpdate -UNCUserNotification.o:_UNCUserNotificationCancel -UNCUserNotification.o:_UNCUserNotificationFree -UNCUserNotification.o:_UNCUserNotificationGetResponseValue -UNCUserNotification.o:_convertEscapes -UNCUserNotification.o:_UNCUserNotificationCreate -UNCUserNotification.o:_UNCDisplayNotice -UNCUserNotification.o:_UNCUserNotificationReceiveResponse -UNCUserNotification.o:_UNCUnpackContents -UNCUserNotification.o:_UNCSendRequest -UNCUserNotification.o:_UNCPackContents -UNCUserNotification.o:_UNCDisplayAlert -keymgr.o:__keymgr_get_lock_count_processwide_ptr -keymgr.o:__keymgr_get_lockmode_processwide_ptr -keymgr.o:__keymgr_set_lockmode_processwide_ptr -_muldi3.o:___muldi3 -_negdi2.o:___negdi2 -_lshrdi3.o:___lshrdi3 -_ashrdi3.o:___ashrdi3 -_ffsdi2.o:___ffsdi2 -_cmpdi2.o:___cmpdi2 -_ucmpdi2.o:___ucmpdi2 -_floatdidf.o:___floatdidf -_floatdisf.o:___floatdisf -_fixunsdfsi.o:___fixunsdfsi -_fixunssfsi.o:___fixunssfsi -_fixunsdfdi.o:___fixunsdfdi -_fixdfdi.o:___fixdfdi -_fixunssfdi.o:___fixunssfdi -_fixsfdi.o:___fixsfdi -_clear_cache.o:___clear_cache -__main.o:___do_global_dtors -_absvsi2.o:___absvsi2 -_absvdi2.o:___absvdi2 -_addvsi3.o:___addvsi3 -_addvdi3.o:___addvdi3 -_subvsi3.o:___subvsi3 -_subvdi3.o:___subvdi3 -_mulvsi3.o:___mulvsi3 -_mulvdi3.o:___mulvdi3 -_negvsi2.o:___negvsi2 -_negvdi2.o:___negvdi2 -_moddi3.o:___moddi3 -_udiv_w_sdiv.o:___udiv_w_sdiv -_udivmoddi4.o:___udivmoddi4 -_pack_sf.o:___pack_f -_unpack_sf.o:___unpack_f -_addsub_sf.o:___addsf3 -_addsub_sf.o:__fpadd_parts -_addsub_sf.o:___subsf3 -_mul_sf.o:___mulsf3 -_div_sf.o:___divsf3 -_fpcmp_parts_sf.o:___fpcmp_parts_f -_compare_sf.o:___cmpsf2 -_eq_sf.o:___eqsf2 -_ne_sf.o:___nesf2 -_gt_sf.o:___gtsf2 -_ge_sf.o:___gesf2 -_lt_sf.o:___ltsf2 -_le_sf.o:___lesf2 -_unord_sf.o:___unordsf2 -_si_to_sf.o:___floatsisf -_sf_to_si.o:___fixsfsi -_negate_sf.o:___negsf2 -_make_sf.o:___make_fp -_sf_to_df.o:___extendsfdf2 -_usi_to_sf.o:___floatunsisf -_pack_df.o:___pack_d -_unpack_df.o:___unpack_d -_addsub_df.o:___adddf3 -_addsub_df.o:__fpadd_parts -_addsub_df.o:___subdf3 -_mul_df.o:___muldf3 -_div_df.o:___divdf3 -_fpcmp_parts_df.o:___fpcmp_parts_d -_compare_df.o:___cmpdf2 -_eq_df.o:___eqdf2 -_ne_df.o:___nedf2 -_gt_df.o:___gtdf2 -_ge_df.o:___gedf2 -_lt_df.o:___ltdf2 -_le_df.o:___ledf2 -_unord_df.o:___unorddf2 -_si_to_df.o:___floatsidf -_df_to_si.o:___fixdfsi -_negate_df.o:___negdf2 -_make_df.o:___make_dp -_df_to_sf.o:___truncdfsf2 -_usi_to_df.o:___floatunsidf -darwin-tramp.o:___trampoline_setup -darwin-vecsave.o:saveVEC -darwin-vecsave.o:restVEC -darwin-vecsave.o:saveVEC_vr11 -darwin-vecsave.o:restVEC_vr10 -darwin-worldsave.o:rest_world -darwin-worldsave.o:eh_rest_world_r10 -darwin-worldsave.o:save_world -darwin-worldsave.o:rest_world_eh_r7r8 -unwind-dw2.o:__Unwind_GetIP -unwind-dw2.o:__Unwind_SetIP -unwind-dw2.o:__Unwind_GetLanguageSpecificData -unwind-dw2.o:__Unwind_GetRegionStart -unwind-dw2.o:__Unwind_GetDataRelBase -unwind-dw2.o:__Unwind_GetTextRelBase -unwind-dw2.o:__Unwind_GetGR -unwind-dw2.o:__Unwind_SetGR -unwind-dw2.o:__Unwind_DeleteException -unwind-dw2.o:_read_uleb128 -unwind-dw2.o:__Unwind_FindEnclosingFunction -unwind-dw2.o:_uw_update_context -unwind-dw2.o:_read_sleb128 -unwind-dw2.o:_size_of_encoded_value -unwind-dw2.o:_uw_init_context_1 -unwind-dw2.o:__Unwind_ForcedUnwind -unwind-dw2.o:__Unwind_Resume -unwind-dw2.o:_base_of_encoded_value -unwind-dw2.o:__Unwind_RaiseException_Phase2 -unwind-dw2.o:___frame_state_for -unwind-dw2.o:__Unwind_ForcedUnwind_Phase2 -unwind-dw2.o:__Unwind_RaiseException -unwind-dw2.o:_uw_update_context_1 -unwind-dw2.o:_uw_frame_state_for -unwind-dw2.o:_extract_cie_info -unwind-dw2.o:_read_encoded_value_with_base -unwind-dw2.o:_uw_install_context_1 -unwind-dw2.o:_execute_cfa_program -unwind-dw2.o:_execute_stack_op -unwind-dw2.o:_init_dwarf_reg_size_table -unwind-dw2-fde-darwin.o:___deregister_frame_info -unwind-dw2-fde-darwin.o:___register_frame_info -unwind-dw2-fde-darwin.o:___register_frame_info_table -unwind-dw2-fde-darwin.o:_fde_unencoded_compare -unwind-dw2-fde-darwin.o:_read_uleb128 -unwind-dw2-fde-darwin.o:___register_frame_table -unwind-dw2-fde-darwin.o:___register_frame_info_table_bases -unwind-dw2-fde-darwin.o:___deregister_frame -unwind-dw2-fde-darwin.o:_read_sleb128 -unwind-dw2-fde-darwin.o:___register_frame -unwind-dw2-fde-darwin.o:___register_frame_info_bases -unwind-dw2-fde-darwin.o:_base_from_object -unwind-dw2-fde-darwin.o:_size_of_encoded_value -unwind-dw2-fde-darwin.o:_fde_single_encoding_compare -unwind-dw2-fde-darwin.o:_fde_mixed_encoding_compare -unwind-dw2-fde-darwin.o:_live_image_destructor -unwind-dw2-fde-darwin.o:_get_cie_encoding -unwind-dw2-fde-darwin.o:__Unwind_Find_FDE -unwind-dw2-fde-darwin.o:___deregister_frame_info_bases -unwind-dw2-fde-darwin.o:_classify_object_over_fdes -unwind-dw2-fde-darwin.o:_add_fdes -unwind-dw2-fde-darwin.o:_linear_search_fdes -unwind-dw2-fde-darwin.o:__Unwind_Find_registered_FDE -unwind-dw2-fde-darwin.o:_read_encoded_value_with_base -unwind-dw2-fde-darwin.o:_examine_objects -unwind-dw2-fde-darwin.o:_frame_heapsort -unwind-dw2-fde-darwin.o:_search_object -unwind-dw2-fde-darwin.o:_init_object -unwind-dw2-fde-darwin.o:_fde_split -_eprintf.o:___eprintf -_bb.o:___read_long -_bb.o:___read_gcov_type -_bb.o:___bb_init_func -_bb.o:___write_gcov_type -_bb.o:___write_long -_bb.o:___fetch_long -_bb.o:___bb_fork_func -_bb.o:___write_gcov_string -_bb.o:___store_gcov_type -_bb.o:___fetch_gcov_type -_bb.o:___read_gcov_string -_bb.o:___bb_exit_func -__gcc_bcmp.o:___gcc_bcmp -link editor:__mh_dylib_header +localeconv.So:___setonlyClocaleconv diff --git a/SystemMath.s b/SystemMath.s index 28b9319..80ca605 100644 --- a/SystemMath.s +++ b/SystemMath.s @@ -25,7 +25,7 @@ #if defined (__ppc__) || defined(ppc) - .section __TEXT, __VLib_Container, regular + .section __TEXT, __VLib_Container, regular, no_dead_strip .align 2 @@ -388,7 +388,7 @@ VLib_ExportNames: .long 0x72696E74 .long 0x66000000 - .section __TEXT, __VLib_Exports, symbol_stubs, none, 8 + .section __TEXT, __VLib_Exports, symbol_stubs, no_dead_strip, 8 .align 2 @@ -1217,7 +1217,7 @@ VLib_ExportSymbols: .globl cfm_stub_binding_helper - .section __DATA, __VLib_Func_BPs, lazy_symbol_pointers + .section __DATA, __VLib_Func_BPs, lazy_symbol_pointers, no_dead_strip .align 2 @@ -2041,7 +2041,7 @@ sprintf_bp: .indirect_symbol _sprintf .long cfm_stub_binding_helper - .section __DATA, __VLib_Data_BPs, non_lazy_symbol_pointers + .section __DATA, __VLib_Data_BPs, non_lazy_symbol_pointers, no_dead_strip .align 2 diff --git a/spinlock_stub.s b/spinlock_stub.s index 2d9a6e1..cb364b8 100644 --- a/spinlock_stub.s +++ b/spinlock_stub.s @@ -25,7 +25,8 @@ #define __APPLE_API_PRIVATE #include -#if defined(__ppc__) +#if defined(__ppc__) || defined(__ppc64__) +#include .data .section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32 .align 2 @@ -43,7 +44,7 @@ L__spin_lock$stub: .lazy_symbol_pointer L__spin_lock$lazy_ptr: .indirect_symbol __spin_lock - .long dyld_stub_binding_helper + .g_long dyld_stub_binding_helper #elif defined(__i386__) .data .picsymbol_stub diff --git a/spinlocktry_stub.s b/spinlocktry_stub.s index a4d8955..5e1e88a 100644 --- a/spinlocktry_stub.s +++ b/spinlocktry_stub.s @@ -25,7 +25,8 @@ #define __APPLE_API_PRIVATE #include -#if defined(__ppc__) +#if defined(__ppc__) || defined(__ppc64__) +#include .data .section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32 .align 2 @@ -43,7 +44,7 @@ L__spin_lock_try$stub: .lazy_symbol_pointer L__spin_lock_try$lazy_ptr: .indirect_symbol __spin_lock_try - .long dyld_stub_binding_helper + .g_long dyld_stub_binding_helper #elif defined(__i386__) .data .picsymbol_stub diff --git a/spinunlock_stub.s b/spinunlock_stub.s index 4518d3d..d83cd05 100644 --- a/spinunlock_stub.s +++ b/spinunlock_stub.s @@ -25,7 +25,8 @@ #define __APPLE_API_PRIVATE #include -#if defined(__ppc__) +#if defined(__ppc__) || defined(__ppc64__) +#include .data .section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32 .align 2 @@ -43,7 +44,7 @@ L__spin_unlock$stub: .lazy_symbol_pointer L__spin_unlock$lazy_ptr: .indirect_symbol __spin_unlock - .long dyld_stub_binding_helper + .g_long dyld_stub_binding_helper #elif defined(__i386__) .data .picsymbol_stub -- 2.47.2