From e29534dc559187342608876434f4d78a0bf84439 Mon Sep 17 00:00:00 2001 From: Apple Date: Fri, 24 Oct 2003 22:37:25 +0000 Subject: [PATCH] Libsystem-71.tar.gz --- CommPageSymbols.st | 34 + GNUmakefile | 44 + Info.plist | 2 +- Makefile | 10 +- Makefile.postamble | 21 + Makefile.preamble | 11 +- PB.project | 4 +- System.order | 4797 ++++++++++++++++++++++++++++++++++---------- SystemMath.s | 25 + spinlock_stub.s | 66 + spinlocktry_stub.s | 66 + spinunlock_stub.s | 66 + 12 files changed, 4057 insertions(+), 1089 deletions(-) create mode 100644 CommPageSymbols.st create mode 100644 GNUmakefile create mode 100644 spinlock_stub.s create mode 100644 spinlocktry_stub.s create mode 100644 spinunlock_stub.s diff --git a/CommPageSymbols.st b/CommPageSymbols.st new file mode 100644 index 0000000..c89359b --- /dev/null +++ b/CommPageSymbols.st @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2003 Apple Computer, Inc. All rights reserved. + * + * @APPLE_LICENSE_HEADER_START@ + * + * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. + * + * This file contains Original Code and/or Modifications of Original Code + * as defined in and that are subject to the Apple Public Source License + * Version 2.0 (the 'License'). You may not use this file except in + * compliance with the License. Please obtain a copy of the License at + * http://www.opensource.apple.com/apsl/ and read it before using this + * file. + * + * The Original Code and all software distributed under the License are + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. + * Please see the License for the specific language governing rights and + * limitations under the License. + * + * @APPLE_LICENSE_HEADER_END@ + */ + +/* + * This file creates a .o file containing the comm page symbols that gdb + * can use. It is placed in a special segment within libSystem. + */ + +#define __APPLE_API_PRIVATE +#define __COMM_PAGE_SYMBOLS + +#include "cpu_capabilities.h" diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 0000000..b232b02 --- /dev/null +++ b/GNUmakefile @@ -0,0 +1,44 @@ +##--------------------------------------------------------------------- +# Makefile for Libsystem +# Call Makefile to do the work, but for the install case, we need to +# call Makefile for each arch separately, and create fat dylibs at the +# end. This is because the comm page symbols are added as a special segment, +# which the linker will not thin, so we have to build thin and combine. +##--------------------------------------------------------------------- +PROJECT = Libsystem + +no_target: + @$(MAKE) -f Makefile + +##--------------------------------------------------------------------- +# 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 +# time (for the non-dylib files), and then call lipo to create fat files +# for the three dylibs. +##--------------------------------------------------------------------- +ALLARCHS = hppa i386 m68k ppc sparc +NARCHS = $(words $(RC_ARCHS)) +USRLIB = /usr/lib + +install: $(RC_ARCHS) + ditto $(OBJROOT)/$(word 1,$(RC_ARCHS))/dstroot $(DSTROOT) +ifneq "$(NARCHS)" "1" + @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); \ + done +endif + +$(ALLARCHS): + mkdir -p $(OBJROOT)/$@/objroot $(OBJROOT)/$@/dstroot + $(MAKE) -f Makefile install \ + OBJROOT='$(OBJROOT)/$@/objroot' \ + DSTROOT='$(OBJROOT)/$@/dstroot' \ + RC_CFLAGS='-arch $@ $(RC_NONARCH_CFLAGS)' \ + RC_ARCHS='$@' \ + RC_$@=YES $(foreach ARCH,$(filter-out $@,$(ALLARCHS)),RC_$(ARCH)=) + +.DEFAULT: + @$(MAKE) -f Makefile $@ diff --git a/Info.plist b/Info.plist index 1852053..10c6382 100644 --- a/Info.plist +++ b/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 5.6 + 7.0 CFBundleSignature ???? CarbonLazyValues diff --git a/Makefile b/Makefile index 64a5664..8169b75 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,10 @@ NAME = System PROJECTVERSION = 2.8 PROJECT_TYPE = Library -OTHERLINKED = SystemMath.s +OTHERLINKED = SystemMath.s spinlock_stub.s spinlocktry_stub.s spinunlock_stub.s -OTHERSRCS = Makefile.preamble Makefile Makefile.postamble System.order\ - Info.plist +OTHERSRCS = GNUmakefile Makefile.preamble Makefile Makefile.postamble \ + System.order Info.plist CommPageSymbols.st OTHERLINKEDOFILES = SystemMath.o @@ -28,13 +28,13 @@ NEXTSTEP_INSTALLDIR = $(USRLIBDIR) WINDOWS_INSTALLDIR = /Library/Frameworks PDO_UNIX_INSTALLDIR = /Library/Frameworks LIBS = -lc -ldyld -linfo -lkvm -lm -lmacho\ - -lstreams -lunc -lkeymgr + -lnotify -lstreams -lunc -lkeymgr -lpoll -ldl DEBUG_LIBS = $(LIBS) PROF_LIBS = $(LIBS) LIBRARY_PATHS = -L$(NEXT_ROOT)/usr/local/lib/system -NEXTSTEP_PB_CFLAGS = -Wall -Werror +NEXTSTEP_PB_CFLAGS = -Wall -Werror -I$(NEXT_ROOT)/System/Library/Frameworks/System.framework/PrivateHeaders NEXTSTEP_PB_LDFLAGS = -nostdlib -all_load diff --git a/Makefile.postamble b/Makefile.postamble index 905a74b..cb51c87 100644 --- a/Makefile.postamble +++ b/Makefile.postamble @@ -49,3 +49,24 @@ copy_plist: $(RM) -f $(DSTROOT)$(SystemFramework)/$(VersionDir)/Resources/Info.plist $(CP) $(SRCROOT)/Info.plist $(DSTROOT)$(SystemFramework)/$(VersionDir)/Resources $(CHMOD) 444 $(DSTROOT)$(SystemFramework)/$(VersionDir)/Resources/Info.plist + +.PHONY: comm-page-symbols +comm-page-symbols: spinlock_stub.o spinlocktry_stub.o spinunlock_stub.o CommPageSymbols.o + +.SUFFIXES: .st + +SLFS_F_PH = /System/Library/Frameworks/System.framework/PrivateHeaders + +$(OFILE_DIR)/%.ppc.o %.ppc.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 \ + $(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 $@) diff --git a/Makefile.preamble b/Makefile.preamble index ada67a1..98ad143 100644 --- a/Makefile.preamble +++ b/Makefile.preamble @@ -1,11 +1,18 @@ +BEFORE_BUILD += comm-page-symbols BEFORE_INSTALL += profile debug AFTER_INSTALL += compat-next compat-bsd copy_plist PROFILE_BUILD_LIBS := $(foreach LIBS, $(LIBS), $(LIBS)_profile) -lcc_noc++ DEBUG_BUILD_LIBS := $(foreach LIBS, $(LIBS), $(LIBS)_debug ) -lcc_noc++ -OTHER_LIBTOOL_FLAGS = -L/usr/lib/system -sub_library libmathCommon -lmathCommon -sectorder __TEXT __text System.order +# the _stub.o files need to come first to ensure that they override the default stubs +OTHER_LIBTOOL_FLAGS = $(OFILE_DIR)/spinlock_stub.o \ + $(OFILE_DIR)/spinlocktry_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 -BSD_LIBS = c info kvm m pthread +BSD_LIBS = c info kvm m pthread dbm poll dl rpcsvc include $(MAKEFILEPATH)/CoreOS/ProjectBuilder/Makefile.Preamble.Common diff --git a/PB.project b/PB.project index 8ad04bb..3fe639f 100644 --- a/PB.project +++ b/PB.project @@ -6,9 +6,9 @@ FRAMEWORKS = (); FRAMEWORKSEARCH = (); LIBRARYSEARCH = ("$(NEXT_ROOT)/usr/local/lib/system"); - OTHER_LIBS = (c, dyld, info, kvm, m, macho, streams, unc, keymgr); + OTHER_LIBS = (c, dyld, info, kvm, m, macho, notify, streams, unc, keymgr, poll, dl); OTHER_LINKED = (SystemMath.s); - OTHER_SOURCES = (Makefile.preamble, Makefile, Makefile.postamble, System.order, Info.plist); + OTHER_SOURCES = (GNUmakefile, Makefile.preamble, Makefile, Makefile.postamble, System.order, Info.plist, CommPageSymbols.st); }; LANGUAGE = English; MAKEFILEDIR = "$(MAKEFILEPATH)/pb_makefiles"; diff --git a/System.order b/System.order index 1c709d1..b730f53 100644 --- a/System.order +++ b/System.order @@ -1,1135 +1,3774 @@ -mig_allocate.o:.section_start -mach_traps.o:_mach_msg_overwrite_trap -read.o:_read -errno.o:___error -pthread.o:_pthread_self -pthread.o:_stackAddress -strlen.o:_strlen -fflush.o:_fflush -fflush.o:___sflush -fprintf.o:_fprintf -vfprintf.o:_vfprintf -stdio.o:___swrite -write.o:_write -alarm.o:_alarm -setitimer.o:_setitimer -malloc.o:_free -scalable_malloc.o:_szone_size -malloc.o:_malloc_zone_free -scalable_malloc.o:_szone_free -scalable_malloc.o:_free_list_remove_ptr -scalable_malloc.o:_free_list_add_ptr -termios.o:_tcsetattr -ioctl.o:_ioctl -fputs.o:_fputs -fvwrite.o:___sfvwrite -/usr/local/lib/system/libc.a:blockmoof.o:.section_all -malloc.o:_malloc -malloc.o:_malloc_zone_malloc -scalable_malloc.o:_szone_malloc -fstat.o:_fstat -fcntl.o:_fcntl -strcmp.o:_strcmp -time.o:_time -gettimeofday.o:_gettimeofday -syscall.o:_syscall -difftime.o:_difftime -termios.o:_tcsetpgrp -sigaction.o:_sigaction -sigaction.o:_sigaction__ -dyld.o:__dyld_bind_fully_image_containing_address -bzero.o:.section_all -geteuid.o:_geteuid -strcpy.o:_strcpy -fwrite.o:_fwrite -strncpy.o:_strncpy -sprintf.o:_sprintf -vfprintf.o:___sprint -open.o:_open -cerror.o:cerror -cprocs.o:_cthread_set_errno_self -getpid.o:_getpid -exit.o:_exit -findfp.o:__cleanup -fwalk.o:__fwalk -_exit.o:__exit -wait4.o:_wait4 -fork.o:_fork -cthreads.o:__cthread_fork_prepare -/usr/local/lib/system/libc.a:lock.o:.section_all -malloc.o:__malloc_fork_prepare -scalable_malloc.o:_szone_force_lock -dylib1.o:__dyld_func_lookup -cthreads.o:__cthread_fork_parent -malloc.o:__malloc_fork_parent -scalable_malloc.o:_szone_force_unlock -mach_msg.o:_mach_msg -waitpid.o:_waitpid -mach_msg.o:_mach_msg_overwrite -bootstrapUser.o:_bootstrap_look_up -lu_utils.o:__lu_fork_child -cthreads.o:__cthread_fork_child -pthread.o:__pthread_fork_child -pthread.o:_sem_pool_reset -mig_support.o:_mig_init -revoke.o:_revoke -sleep.o:_sleep -nanosleep.o:_nanosleep -clockUser.o:_clock_get_time -mig_support.o:_mig_get_reply_port -mach_traps.o:_clock_sleep_trap -login_tty.o:_login_tty -setsid.o:_setsid -dup2.o:_dup2 -sigprocmask.o:_sigprocmask -exec.o:_execv -crt_externs.o:__NSGetEnviron -execve.o:_execve -mach_init.o:_mach_init -mach_init.o:_mach_init_doit -mach_traps.o:_task_self_trap -mach_traps.o:_host_self_trap -cthread.o:__pthread_set_self -pthread.o:_cthread_set_self -ur_cthread.o:__pthread_self -mach_traps.o:_mach_reply_port -mach_hostUser.o:_host_info -pthread.o:_ur_cthread_self -mach_hostUser.o:_host_page_size -mach_init_ports.o:_mach_init_ports -taskUser.o:_task_get_special_port -taskUser.o:_mach_ports_lookup -vm_mapUser.o:_vm_deallocate -mach_init.o:_mach_host_self -mach_hostUser.o:_host_get_clock_service -mach_portUser.o:_mach_port_allocate -mach_portUser.o:_mach_port_insert_right -vm_mapUser.o:_vm_map -pthread.o:_pthread_init -pthread.o:_pthread_attr_init -pthread.o:__clear_thread_cache -mach_init.o:_mach_thread_self -mach_traps.o:_thread_self_trap -pthread.o:__pthread_create -pthread.o:_pthread_setschedparam -thread_actUser.o:_thread_policy -taskUser.o:_semaphore_create -malloc.o:__malloc_initialize -malloc.o:_malloc_create_zone -dyld.o:__dyld_lookup_and_bind -scalable_malloc.o:_create_scalable_zone -scalable_malloc.o:_allocate_pages -vm_mapUser.o:_vm_allocate -malloc.o:_malloc_zone_register -malloc.o:_malloc_set_zone_name -scalable_malloc.o:_small_malloc_from_region_no_lock -sysctl.o:_sysctl -_sysctl.o:___sysctl -keymgr.o:___keymgr_dwarf2_register_sections -dyld.o:__dyld_register_func_for_add_image -keymgr.o:_dwarf2_unwind_dyld_add_image_hook -getsecbyname.o:_getsectdatafromheader +strcmp.So:_strcmp +bsearch.So:_bsearch +malloc.So:_free +malloc.So:_malloc_zone_malloc +lock.So:.section_all +scalable_malloc.So:_szone_free +scalable_malloc.So:_szone_size +malloc.So:_malloc_zone_free +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 +mig_support.So:_mig_get_reply_port +pthread_cond.So:_pthread_cond_signal_thread_np +pthread_cond.So:_pthread_cond_signal +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 +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 -strncmp.o:_strncmp -malloc.o:_calloc -malloc.o:_malloc_zone_calloc -scalable_malloc.o:_szone_calloc -keymgr.o:__keymgr_get_and_lock_processwide_ptr -keymgr.o:__init_keymgr -dyld.o:__dyld_lookup_and_bind_fully -pthread_mutex.o:_pthread_mutex_lock -pthread_mutex.o:_pthread_mutex_init -pthread_mutex.o:_pthread_mutex_unlock -keymgr.o:__keymgr_get_and_lock_key +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 +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 +write.So:_write +pthread_rwlock.So:_pthread_rwlock_unlock keymgr.o:__keymgr_get_or_create_key_element -keymgr.o:__keymgr_get_key_element -keymgr.o:__keymgr_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 -keymgr.o:__keymgr_set_and_unlock_processwide_ptr -keymgr.o:__keymgr_set_and_unlock_key -keymgr.o:__keymgr_set_key_element +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 +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 -dyld.o:__dyld_register_func_for_remove_image -atexit.o:_atexit -setlocale.o:_setlocale -getenv.o:_getenv -getenv.o:___findenv -setlocale.o:_loadlocale -setlocale.o:_currentlocale -rindex.o:_strrchr -getuid.o:_getuid -getgid.o:_getgid -getegid.o:_getegid -isatty.o:_isatty -termios.o:_tcgetattr -close.o:_close -setvbuf.o:_setvbuf -makebuf.o:___swhatbuf -db.o:_dbopen -hash.o:___hash_open -stat.o:_stat -opendir.o:_opendir -opendir.o:___opendir2 -fstatfs.o:_fstatfs -telldir.o:_telldir -readdir.o:_readdir -getdirentries.o:_getdirentries -closedir.o:_closedir -seekdir.o:_seekdir -telldir.o:__seekdir -lseek.o:_lseek -ctime.o:_localtime -ctime.o:_localsub -ctime.o:_tzset -ctime.o:_tzsetwall -ctime.o:_tzload -ctime.o:_detzcode -ctime.o:_settzname -ctime.o:_timesub -rand.o:_srand -gethostname.o:_gethostname -getppid.o:_getppid -lu_user.o:_getpwuid -lu_utils.o:__lu_running -mig_strncpy.o:_mig_strncpy -getpwent.o:__old_getpwuid -getpwent.o:_getpw -getpwent.o:__old_setpwent -fopen.o:_fopen -flags.o:___sflags -findfp.o:___sfp -findfp.o:___sinit -getpwent.o:_getLine -fgets.o:_fgets -refill.o:___srefill -makebuf.o:___smakebuf -stdio.o:___sread -memchr.o:_memchr -getpwent.o:_copyString -getpwent.o:_parseUser -getpwent.o:_tokenize -getpwent.o:_appendString -getpwent.o:_insertString -malloc.o:_realloc -malloc.o:_malloc_zone_realloc -scalable_malloc.o:_szone_realloc -getpwent.o:_listLength -getpwent.o:_free_pw -atoi.o:_atoi -strtol.o:_strtol -getpwent.o:__old_endpwent -fclose.o:_fclose -stdio.o:___sclose -chdir.o:_chdir -termios.o:_cfgetospeed -strchr.o:_strchr -getlogin.o:_getlogin -_getlogin.o:__getlogin -vfprintf.o:___ultoa -getrlimit.o:_getrlimit -fdopen.o:_fdopen -getdtablesize.o:_getdtablesize -sysconf.o:_sysconf -times.o:_times -getrusage.o:_getrusage -signal.o:_signal -signal.o:_signal__ -fgetc.o:_fgetc -rget.o:___srget -access.o:_access -pipe.o:_pipe -mach_init.o:_fork_mach_init -mig_support.o:_mig_dealloc_reply_port -mach_portUser.o:_mach_port_destroy -mig_support.o:_mig_fork_child -malloc.o:__malloc_fork_child -cprocs.o:__cproc_fork_child -strcat.o:_strcat -sigsuspend.o:_sigsuspend -strspn.o:_strspn -bsearch.o:_bsearch -sigtramp.o:__sigtramp -sigreturn.o:_sigreturn -getopt.o:_getopt -crt_externs.o:__NSGetArgv -mount.o:_mount -lstat.o:_lstat -unlink.o:_unlink -snprintf.o:_snprintf -strsep.o:_strsep -wsetup.o:___swsetup -scalable_malloc.o:_large_and_huge_malloc -scalable_malloc.o:_first_range_greater_or_equal -scalable_malloc.o:_large_entries_grow_no_lock -scalable_malloc.o:_large_entry_insert_no_lock -symlink.o:_symlink -sync.o:_sync -fputc.o:_fputc -ptrace.o:_ptrace -pthread_tsd.o:_pthread_key_create -pthread_tsd.o:_pthread_getspecific -pthread_tsd.o:_pthread_setspecific -dyld.o:__dyld_image_containing_address -mach_traps.o:_mach_timebase_info -putenv.o:_putenv -strdup.o:_strdup -index.o:_index -setenv.o:_setenv -pthread_cond.o:_pthread_cond_init -bootstrapUser.o:_bootstrap_register -mach_portUser.o:_mach_port_request_notification -mach_hostUser.o:_host_get_io_master -semaphore.o:_semaphore_timedwait -mach_traps.o:_semaphore_timedwait_trap -syslog.o:_openlog -socket.o:_socket -connect.o:_connect -mach_portUser.o:_mach_port_set_attributes -mach_portUser.o:_mach_port_insert_member -pthread.o:_pthread_create -pthread.o:__pthread_create_suspended -pthread.o:__pthread_allocate_stack -vm_mapUser.o:_vm_protect -taskUser.o:_thread_create -thread_setup.o:__pthread_setup -thread_actUser.o:_thread_get_state -thread_actUser.o:_thread_set_state -malloc.o:_set_malloc_singlethreaded -thread_actUser.o:_thread_resume -pthread.o:_pthread_detach -taskUser.o:_semaphore_destroy -syslog.o:_syslog -syslog.o:_vsyslog -strftime.o:_strftime -strftime.o:__fmt -strftime.o:__add -strftime.o:__conv -vsnprintf.o:_vsnprintf -send.o:_send -sendto.o:_sendto -scalable_malloc.o:_large_entry_for_pointer_no_lock -scalable_malloc.o:_large_free_no_lock -scalable_malloc.o:_coalesce_range -mach_traps.o:_map_fd -mig_support.o:_mig_put_reply_port -mach_portUser.o:_mach_port_deallocate -printf.o:_printf -scalable_malloc.o:_large_entries_free_no_lock -vm_mapUser.o:_vm_copy -vm_mapUser.o:_vm_msync -memcmp.o:.section_all -host_privUser.o:_kmod_control -pthread_cond.o:_pthread_cond_signal -pthread_cond.o:_pthread_cond_signal_thread_np -mach_absolute_time.o:_mach_absolute_time -mach_traps.o:_mk_timer_create -mach_traps.o:_mk_timer_arm -mach_traps.o:_task_for_pid -mach_hostUser.o:_kmod_get_info -rindix.o:_rindex -nlist.o:_nlist -nlist.o:___fdnlist -/usr/local/lib/system/libc.a:setjmp.o:.section_all -sigcompat.o:_sigblock -_setjmp.o:__setjmp -getpagesize.o:_getpagesize -vm_mapUser.o:_vm_machine_attribute -crt_externs.o:__NSGetArgc -ms_thread_switch.o:_thread_switch -mach_traps.o:_syscall_thread_switch -dyld_support.o:_NSLookupSymbolInImage +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 +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 -vm_mapUser.o:_mach_make_memory_entry_64 -malloc.o:_malloc_size -pthread_mutex.o:_pthread_mutex_trylock -malloc.o:_valloc -malloc.o:_malloc_zone_valloc -scalable_malloc.o:_szone_valloc -getattrlist.o:_getattrlist -statfs.o:_statfs -getmntinfo.o:_getmntinfo -getfsstat.o:_getfsstat -pthread_mutex.o:_pthread_mutexattr_init -pthread_mutex.o:_pthread_mutexattr_destroy -dyld_support.o:_NSAddImage -vfprintf.o:___sbprintf -seteuid.o:_seteuid -setattrlist.o:_setattrlist -munmap.o:_munmap -pthread_mutex.o:_pthread_mutex_destroy -mmap.o:_mmap -strstr.o:_strstr -fseek.o:_fseek -fseek.o:_fseeko -stdio.o:___sseek -ftell.o:_ftell -ftell.o:_ftello +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 +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 +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 -crt_externs.o:__NSGetMachExecuteHeader -mach_portUser.o:_mach_port_type -mach_portUser.o:_mach_port_get_attributes -getdirentriesattr.o:_getdirentriesattr -vm_mapUser.o:_vm_write -host_privUser.o:_kmod_create -strtoul.o:_strtoul -runtime_loading.o:_NSLinkModule -dyld_support.o:_NSLookupSymbolInModule -NSSystemDirectories.o:_NSStartSearchPathEnumeration -NSSystemDirectories.o:_NSGetNextSearchPathEnumeration -vm_mapUser.o:_vm_inherit -e_pow.o:___ieee754_pow -w_pow.o:_pow -vsprintf.o:_vsprintf -isinf.o:_isinf -isnan.o:_isnan -vfprintf.o:_cvt -strtod.o:___dtoa -strtod.o:_d2b -strtod.o:_Balloc -strtod.o:_lo0bits -strtod.o:_Bfree -pthread.o:_pthread_attr_setscope -pthread.o:_pthread_attr_setdetachstate -pthread.o:_pthread_attr_destroy -mach_hostUser.o:_processor_set_default -host_privUser.o:_host_processor_set_priv -thread_actUser.o:_thread_set_policy -mach_portUser.o:_mach_port_move_member -s_floor.o:_floor -setpriority.o:_setpriority -daemon.o:_daemon -vm_mapUser.o:_vm_map_64 -random.o:_srandom -random.o:_random -exec.o:_execl -fsync.o:_fsync -rename.o:_rename -sigcompat.o:_sigpause -pthread_cond.o:_pthread_cond_broadcast -dyld.o:__dyld_image_count +lu_host.o:_extract_host +except.o:__NXAddHandler +xdr.o:_xdr_bytes +vm_mapUser.So:_vm_copy dyld.o:__dyld_present -dyld.o:__dyld_get_image_header -dyld.o:__dyld_get_image_vmaddr_slide -dyld.o:__dyld_get_image_name -strtod.o:_strtod -macosx-fpsave.o:saveFP -localeconv.o:_localeconv -macosx-fpsave.o:restFP -remove.o:_remove -utimes.o:_utimes -taskUser.o:_task_info -strncat.o:_strncat -exec.o:_execle -merge.o:_mergesort -merge.o:_setup -merge.o:_insertionsort -scandir.o:_alphasort -uname.o:_uname -kill.o:_kill -regcomp.o:_regcomp -regcomp.o:_doemit -regcomp.o:_p_bre -regcomp.o:_p_simp_re -regcomp.o:_ordinary -regcomp.o:_categorize -regcomp.o:_isinsets -regcomp.o:_stripsnug -regcomp.o:_findmust -regcomp.o:_pluscount -ungetc.o:_ungetc -fgetln.o:_fgetln -regexec.o:_regexec -regexec.o:_smatcher -regexec.o:_sfast -regexec.o:_sstep -regexec.o:_sslow -strtok.o:_strtok -wbuf.o:___swbuf -regcomp.o:_doinsert -mach_hostUser.o:_host_kernel_version -processor_setUser.o:_processor_set_info -processor_setUser.o:_processor_set_statistics -slot_name.o:_slot_name -arch.o:_NXGetArchInfoFromCpuType -regcomp.o:_p_bracket -regcomp.o:_allocset -regcomp.o:_p_b_term -regcomp.o:_p_b_symbol -regcomp.o:_nch -regcomp.o:_freezeset -regcomp.o:_freeset -regcomp.o:_samesets -fts.o:_fts_open -fts.o:_fts_maxarglen -fts.o:_fts_palloc -fts.o:_fts_alloc -fts.o:_fts_stat -fts.o:_fts_read -fchdir.o:_fchdir -fts.o:_fts_load -fts.o:_fts_children -fts.o:_fts_build -fts.o:_fts_close -fts.o:_fts_lfree -chmod.o:_chmod -scandir.o:_scandir -_divdi3.o:___divdi3 -qsort.o:_qsort -strerror.o:_strerror -sethostname.o:_sethostname -setgid.o:_setgid -setuid.o:_setuid -setegid.o:_setegid -umask.o:_umask -malloc.o:_malloc_zone_from_ptr -dyld.o:__dyld_register_func_for_link_module -dyld.o:__dyld_register_func_for_unlink_module -bootstrapUser.o:_bootstrap_status -pthread.o:__pthread_body -objectfileimage.o:_NSCreateObjectFileImageFromFile -objectfileimage.o:_NSCreateImageFromFile -objectfileimage.o:_get_arch_from_host -objectfileimage.o:_ofi_alloc -objectfileimage.o:_ofile_map -objectfileimage.o:_savestr -objectfileimage.o:_get_host_byte_sex -objectfileimage.o:_check_Mach_O -dyld_support.o:_NSIsSymbolNameDefined -dyld.o:__dyld_lookup_and_bind_objc -malloc.o:_malloc_default_zone -malloc.o:_malloc_error -mach_portUser.o:_mach_port_extract_member -mach_traps.o:_mk_timer_destroy -regcomp.o:_p_ere -regcomp.o:_p_ere_exp -mach_portUser.o:_mach_port_mod_refs -setbuffer.o:_setlinebuf -mkdir.o:_mkdir -host_privUser.o:_host_set_UNDServer -getcwd.o:_getcwd -bind.o:_bind -listen.o:_listen -getsockopt.o:_getsockopt -pthread.o:_pthread_setcanceltype -pthread.o:__pthread_testcancel -pthread.o:_pthread_testcancel -regfree.o:_regfree -regexec.o:_lmatcher -regexec.o:_lfast -regexec.o:_lstep -dup.o:_dup -setsockopt.o:_setsockopt -recv.o:_recv -recvfrom.o:_recvfrom -mach_traps.o:_mk_timer_cancel -select.o:_select -inet_addr.o:_inet_aton -inet_ntoa.o:_inet_ntoa -semaphore.o:_semaphore_signal_all -mach_traps.o:_semaphore_signal_all_trap -pthread.o:_pthread_attr_setstacksize -vfork.o:_vfork -regexec.o:_lslow -regexec.o:_ldissect -regcomp.o:_firstch -kvm.o:_kvm_openfiles -kvm.o:__kvm_open -kvm.o:_kvm_dbopen -kvm.o:_kvm_nlist -strcasecmp.o:_strcasecmp -pthread.o:_pthread_exit -pthread_tsd.o:__pthread_tsd_cleanup -pthread.o:__pthread_reap_threads -pthread.o:__pthread_check_for_available_threads -pthread.o:__pthread_become_available -thread_actUser.o:_thread_suspend -kvm.o:_kvm_read -strpbrk.o:_strpbrk -regexec.o:_sdissect -mach_portUser.o:_mach_port_get_set_status -thread_actUser.o:_thread_terminate -lu_service.o:_getservbyname -getservbyname.o:__old_getservbyname -getservent.o:__old_setservent -getservent.o:__old_getservent -getservent.o:__old_endservent -ctime.o:_ctime -ctime.o:_asctime -writev.o:_writev -sigcompat.o:_sigsetmask -mktemp.o:_mktemp -mktemp.o:__gettemp -regcomp.o:_enlarge -atof.o:_atof -sscanf.o:_sscanf -vfscanf.o:___svfscanf -sscanf.o:_eofread -flock.o:_flock -fread.o:_fread -utime.o:_utime -setrlimit.o:_setrlimit -gethostid.o:_gethostid -ni_util.o:_ni_name_free -ni_util.o:_ni_namelist_insert -ni_util.o:_ni_name_dup -ni_util.o:_ni_namelist_match -ni_util.o:_ni_name_match -ni_util.o:_ni_namelist_free -ni_util.o:_ni_namelist_dup -getsockname.o:_getsockname -xdr_mem.o:_xdrmem_create -svc.o:_xprt_register -svc.o:_svc_register -svc.o:_svc_find -ni_util.o:_ni_proplist_insert -ni_util.o:_ni_prop_dup -ni_util.o:_ni_prop_free -ni_util.o:_ni_proplist_match -inet_addr.o:_inet_addr -ni_util.o:_ni_proplist_free -getgroups.o:_getgroups -authunix_prot.o:_xdr_authunix_parms -xdr.o:_xdr_u_long -xdr_mem.o:_xdrmem_putlong -xdr.o:_xdr_string -xdr.o:_xdr_u_int -xdr.o:_xdr_opaque -xdr.o:_xdr_int -xdr.o:_xdr_long +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 -xdr_mem.o:_xdrmem_getpos -rpc_callmsg.o:_xdr_callmsg -xdr_mem.o:_xdrmem_inline -xdr_mem.o:_xdrmem_setpos -nibind_prot_xdr.o:_xdr_nibind_bind_args ni_prot_xdr.o:_xdr_ni_name -xdr_mem.o:_xdrmem_putbytes -rpc_prot.o:_xdr_accepted_reply +setegid.So:_setegid +random.So:_random +pthread.So:__pthread_become_available +thread_actUser.So:_thread_terminate xdr.o:_xdr_union -rpc_prot.o:_xdr_replymsg -xdr_mem.o:_xdrmem_getlong -xdr.o:_xdr_void -xdr.o:_xdr_free -ni_util.o:_ni_idlist_insert -ni_util.o:_ni_idlist_free -ni_util.o:_ni_entrylist_free -ni_glue.o:_ni_connect -ni_glue.o:_ni_alloc -ni_glue.o:_ni_setabort -ni_glue.o:_ni_setreadtimeout -ni_glue.o:_ni_self +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 +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 +table.o:__nc_table_find +mach_init.So:_mach_host_self +fstatfs.So:_fstatfs +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 ni_glue.o:_callit -ni_glue.o:_ni_settimeout -ni_glue.o:_confirm_tcp -ni_glue.o:_rebind -ni_glue.o:_connectit -ni_glue.o:_fixtimeout -sys_interfaces.o:_sys_interfaces -sys_interfaces.o:_sys_is_my_address -ni_glue.o:_socket_open -bindresvport.o:_bindresvport -sys_interfaces.o:_sys_interfaces_release -clnt_tcp.o:_clnttcp_create -rpc_prot.o:_xdr_callhdr -xdr.o:_xdr_enum +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 -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 -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 -xdr_rec.o:_xdrrec_getlong -xdr_rec.o:_xdrrec_getbytes +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:_get_input_bytes xdr_rec.o:_fill_input_buf -clnt_tcp.o:_readtcp -svc.o:_svc_getreqset -xdr_rec.o:_xdrrec_inline -rpc_dtablesize.o:__rpc_dtablesize svc_auth.o:__authenticate -svc_auth.o:__svcauth_null -svc.o:_svc_sendreply -ni_prot_xdr.o:_xdr_ni_id_res +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 -xdr_rec.o:_xdrrec_eof +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 +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 +xdr_rec.o:_xdrrec_endofrecord +xdr.o:_xdr_void rpc_prot.o:__seterr_reply -auth_none.o:_authnone_validate -ni_glue.o:_ni_setpassword -auth_none.o:_authnone_destroy -auth_unix.o:_authunix_create -auth_unix.o:_marshal_new_auth -ni_useful.o:_ni_open -ni_useful.o:_ni_fancyopen -ni_useful.o:_ni_relopen -ni_useful.o:_escindex -ni_useful.o:_unescape -ni_glue.o:_ni_new -ni_glue.o:_getparent -ni_prot_clnt.o:__ni_rparent_2 +clnt_tcp.o:_clnttcp_control +getlogin.So:_getlogin +getlogin.So:_getlogin_basic auth_unix.o:_authunix_marshal -clnt_udp.o:_clntudp_call -xdr.o:_xdr_u_short -clnt_udp.o:_clntudp_destroy -clnt_udp.o:_clntudp_create -clnt_udp.o:_clntudp_bufcreate -nibind_prot_xdr.o:_xdr_nibind_getregister_res -nibind_prot_xdr.o:_xdr_nibind_addrinfo -ni_prot_xdr.o:_xdr_ni_rparent_res -ni_prot_xdr.o:_xdr_ni_binding auth_unix.o:_authunix_validate -ni_glue.o:_ni_clear -ni_glue.o:_get_daddr -ni_glue.o:_ni_root -ni_glue.o:_pmap_getport_to -pmap_prot.o:_xdr_pmap -ni_prot_clnt.o:__ni_root_2 +ni_util.o:_ni_idlist_free +ni_glue.o:_ni_self +ni_prot_clnt.o:__ni_self_2 +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_args 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 +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 -ni_prot_xdr.o:_xdr_ni_idlist -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 +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 -ni_prot_xdr.o:_xdr_ni_namelist -ni_glue.o:_match -ni_glue.o:_addaddr -ni_util.o:_ni_lookupprop -ni_glue.o:_ni_listprops -ni_prot_clnt.o:__ni_listprops_2 +DNSServiceDiscoveryReplyServer.o:___MIG_check__Request__DNSServiceBrowserReply_rpc_t +labs.So:_labs +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 +pthread.So:_pthread_testcancel +pthread.So:_pthread_join +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 +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 -ni_glue.o:_ni_switch -ni_glue.o:_ni_free -ni_useful.o:_setstuff -ni_glue.o:_ni_needwrite -ni_glue.o:_reinit +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 +tg.o:_tan +tableExpD.o:_exp +runtime_loading.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:_ni_relsearch +ni_useful.o:_escindex ni_useful.o:_ni_name_dupn -ni_glue.o:_clnt_kill +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 +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 +getaddrinfo.o:_new_addrinfo_v4 +getaddrinfo.o:_append_addrinfo +getaddrinfo.o:_freeaddrinfo +socketpair.So:_socketpair +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 +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 +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 +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 -lu_utils.o:__lookupd_port -shutdown.o:_shutdown -lu_utils.o:_port_valid -lu_user.o:_lu_getpwuid -lookupUser.o:__lookup_link -pthread.o:_sched_yield -mach_traps.o:_swtch_pri -lookupUser.o:__lookup_one -accept.o:_accept -svc_auth_unix.o:__svcauth_unix -ni_prot_xdr.o:_xdr_ni_proplist_res -ni_prot_xdr.o:_xdr_ni_proplist_stuff -ni_prot_xdr.o:_xdr_ni_proplist -ni_prot_xdr.o:_xdr_ni_property -_lu_types_xdr.o:_xdr__lu_passwd_ptr -_lu_types_xdr.o:_xdr__lu_passwd -_lu_types_xdr.o:_xdr__lu_string -xdr_mem.o:_xdrmem_getbytes -lu_user.o:_convert_pw -lu_user.o:_freeold -mach_msg_server.o:_mach_msg_server -sigcompat.o:_sigvec -sigcompat.o:_sigvec__ -lu_user.o:_getpwnam -lu_user.o:_lu_getpwnam +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 -pthread.o:_pthread_mach_thread_np -taskUser.o:_task_threads -nfssvc.o:_nfssvc -ni_prot_clnt.o:__ni_statistics_2 -ni_glue.o:_ni_statistics -_lu_types_xdr.o:_xdr__lu_servent_ptr -_lu_types_xdr.o:_xdr__lu_servent -lu_service.o:_convert_s -lu_service.o:_freeold -ni_glue.o:_ni_read -ni_prot_clnt.o:__ni_read_2 -system.o:_system -pause.o:_pause -svc_udp.o:_svcudp_create -svc_udp.o:_svcudp_bufcreate -res_init.o:_res_init -res_init.o:___res_randomid -popen.o:_popen -fscanf.o:_fscanf -vfscanf.o:___sccl -popen.o:_pclose -lu_fstab.o:_setfsent -lu_fstab.o:_lu_setfsent -lu_fstab.o:_lu_endfsent -lu_fstab.o:_getfsent -lu_fstab.o:_lu_getfsent -lookupUser.o:__lookup_all -ni_glue.o:_ni_listall -ni_prot_clnt.o:__ni_listall_2 -ni_util.o:_ni_proplist_list_free -ni_prot_xdr.o:_xdr_ni_listall_res -ni_prot_xdr.o:_xdr_ni_listall_stuff -ni_prot_xdr.o:_xdr_ni_proplist_list -_lu_types_xdr.o:_xdr__lu_fsent -lu_fstab.o:_convert_fs -lu_fstab.o:_freeold -lu_fstab.o:_endfsent -svc_udp.o:_svcudp_getargs -svc_udp.o:_svcudp_reply -svc_udp.o:_svcudp_freeargs -svc_udp.o:_svcudp_stat -ni_glue.o:_connectlocal -ni_glue.o:_ni_setwritetimeout -ni_error.o:_ni_error +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 +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 -bootstrapUser.o:_bootstrap_check_in +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 +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 -rewind.o:_rewind -ftruncate.o:_ftruncate -pthread.o:_pthread_join -semaphore.o:_semaphore_wait -mach_traps.o:_semaphore_wait_trap -semaphore.o:_semaphore_signal -mach_traps.o:_semaphore_signal_trap -pthread_cond.o:_pthread_cond_destroy -logwtmp.o:_logwtmp -getbsize.o:_getbsize -fts.o:_fts_sort -vfprintf.o:___uqtoa -strmode.o:_strmode -hash.o:_hash_get -hash.o:_hash_access -hash.o:___call_hash -hash_func.o:_hash4 -hash_buf.o:___get_buf -hash_buf.o:_newbuf -hash_page.o:___get_page -clock.o:_clock -fts.o:_fts_set -readlink.o:_readlink -pwcache.o:_user_from_uid -getpwent.o:_setpassent -pwcache.o:_group_from_gid +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 +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 +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 -lu_group.o:_getgrgid -lu_group.o:_lu_getgrgid -mach_msg_send.o:_mach_msg_send -lu_host.o:_lu_gethostbyname -_lu_types_xdr.o:_xdr__lu_hostent_ptr -_lu_types_xdr.o:_xdr__lu_hostent -lu_host.o:_convert_h -lu_host.o:_freeold -lu_host.o:_gethostbyname -_lu_types_xdr.o:_xdr__lu_group_ptr -_lu_types_xdr.o:_xdr__lu_group -lu_group.o:_convert_gr -lu_group.o:_freeold -lu_protocol.o:_setprotoent +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 +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_service.o:_setservent -lu_service.o:_lu_setservent -lu_service.o:_lu_endservent -lu_protocol.o:_getprotoent +lu_protocol.o:_getproto +lu_protocol.o:_lu_getprotobynumber +lu_protocol.o:_extract_protocol lu_protocol.o:_lu_getprotoent -ni_util.o:_ni_proplist_dup -_lu_types_xdr.o:_xdr__lu_protoent -lu_protocol.o:_convert_p -lu_protocol.o:_freeold -sysctlbyname.o:_sysctlbyname -err.o:_warn -err.o:_vwarn lu_protocol.o:_endprotoent -lu_host.o:_gethostbyaddr -lu_host.o:_lu_gethostbyaddr -vm_mapUser.o:_vm_region_64 -thread_actUser.o:_thread_info -vis.o:_strvis -vis.o:_vis -devname.o:_devname -devname.o:_olddevname -getloadavg.o:_getloadavg -kvm_proc.o:_kvm_getprocs -kvm.o:__kvm_malloc -refill.o:_lflush -getaddrinfo.o:_getaddrinfo -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 -getaddrinfo.o:_gai_serv -getaddrinfo.o:_gai_serv_lookupd -getaddrinfo.o:_grok_service -getaddrinfo.o:_gai_lookupd -getaddrinfo.o:_lookupd_port -getaddrinfo.o:_encode_kv -pthread.o:_pthread_get_stackaddr_np -pthread.o:_pthread_get_stacksize_np -keymgr.o:__keymgr_get_per_thread_data -keymgr.o:__keymgr_init_per_thread_data -keymgr.o:__keymgr_set_per_thread_data -keymgr.o:__keymgr_unlock_key -getcwd.o:_getcwd_physical -s_rint.o:_rint -s_ceil.o:_ceil -svc_udp.o:_svcudp_recv -memory_funcs.o:_NXOpenMemory -streams_internal.o:_NXStreamCreate -zone.o:_NXDefaultMallocZone -streams_internal.o:_NXStreamCreateFromZone -zone.o:_NXZoneMalloc -streams.o:_NXSeek -streams_internal.o:__NXVerifyStream -streams.o:_NXTell -memory_funcs.o:_memory_seek -streams_internal.o:_NXDefaultRead -streams.o:_NXClose -memory_funcs.o:_memory_close -streams_internal.o:_NXStreamDestroy -memory_funcs.o:_NXCloseMemory -memory_funcs.o:_verify_memory_stream -memory_funcs.o:_NXGetMemoryBuffer -getpeername.o:_getpeername -syslog.o:_closelog -lu_protocol.o:_getprotobyname +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 -rcmd.o:_iruserok -rcmd.o:___ivaliduser +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 -pmap_getport.o:_pmap_getport -auth_unix.o:_authunix_create_default -pty.o:_forkpty -pty.o:_openpty -lu_group.o:_getgrnam -lu_group.o:_lu_getgrnam -chown.o:_chown -termios.o:_cfsetspeed -getpass.o:_getpass -crypt.o:_crypt -crypt.o:_des_setkey -crypt.o:_init_des -crypt.o:_init_perm -crypt.o:_permute -crypt.o:_des_cipher -lu_user.o:_endpwent -lu_user.o:_lu_endpwent -login.o:_login -getttyent.o:_setttyent -getttyent.o:_getttyent -getttyent.o:_skip -getttyent.o:_value -getttyent.o:_endttyent -lu_group.o:_initgroups -lu_group.o:_lu_initgroups -setgroups.o:_setgroups -getttyent.o:_getttynam -setlogin.o:_setlogin -_setlogin.o:__setlogin -exec.o:_execlp -exec.o:_execvp -sbrk.o:_sbrk -getpgrp.o:_getpgrp -termios.o:_tcgetpgrp -termios.o:_cfgetispeed -wait3.o:_wait3 -/usr/local/lib/system/libc.a:longjmp.o:.section_all -_longjmp.o:__longjmp -setpgid.o:_setpgid -creat.o:_creat -strxfrm.o:_strxfrm -setenv.o:_unsetenv -getcap.o:_cgetent -getcap.o:_getent -hash.o:_alloc_segs -hash_buf.o:___buf_init -getcap.o:_cdbget -hash_log2.o:___log2 -_ashldi3.o:___ashldi3 -hash.o:_hash_close -hash.o:_hdestroy -hash_buf.o:___buf_free -hash.o:_flush_meta -getcap.o:_cgetcap -getcap.o:_cgetnum -getcap.o:_cgetstr -strcoll.o:_strcoll -getpriority.o:_getpriority -taskUser.o:_task_policy_set -pthread.o:_new_sem_from_pool -mach_traps.o:_pid_for_task -mig_deallocate.o:_mig_deallocate -usleep.o:_usleep -fchown.o:_fchown -fchmod.o:_fchmod -setreuid.o:_setreuid -strcspn.o:_strcspn -dyld_support.o:_NSIsSymbolNameDefinedWithHint -dyld_support.o:_NSLookupAndBindSymbolWithHint -shm_open.o:_shm_open -pthread_cond.o:_pthread_cond_wait -pthread_cond.o:__pthread_cond_wait -pthread_cond.o:__pthread_cond_add -semaphore.o:_semaphore_wait_signal -mach_traps.o:_semaphore_wait_signal_trap -dyld_support.o:_NSAddLibrary -dyld_support.o:_NSLookupAndBindSymbol -getcwd.o:_realpath -keymgr.o:__keymgr_unlock_processwide_ptr -taskUser.o:_task_set_special_port -freopen.o:_freopen -mach_msg_destroy.o:_mach_msg_destroy -mach_msg_destroy.o:_mach_msg_destroy_port -pthread.o:_restore_sem_to_pool -semaphore.o:_semaphore_signal_thread -mach_traps.o:_semaphore_signal_thread_trap -mach_traps.o:_MKGetTimeBaseInfo -scalable_malloc.o:_largest_range -scalable_malloc.o:_deallocate_pages -except.o:__NXAddHandler -except.o:_addme -except.o:__NXRemoveHandler -w_fmod.o:_fmod -e_fmod.o:___ieee754_fmod -s_sin.o:_sin -k_sin.o:___kernel_sin -e_rem_pio2.o:___ieee754_rem_pio2 -k_cos.o:___kernel_cos -s_finite.o:_finite -memory_funcs.o:_NXGetStreamOnSection -memory_funcs.o:_check_wellformed_header -w_log.o:_log -e_log.o:___ieee754_log -w_log10.o:_log10 -e_log10.o:___ieee754_log10 -s_tan.o:_tan -k_tan.o:___kernel_tan -s_cos.o:_cos -w_exp.o:_exp -e_exp.o:___ieee754_exp -w_sqrt.o:_sqrt -e_sqrt.o:___ieee754_sqrt -pthread_cond.o:__pthread_cond_remove -getsecbyname.o:_getsectdatafromFramework -mach_traps.o:_mach_wait_until -rune.o:____tolower -searchfs.o:_searchfs -pthread_tsd.o:_pthread_key_delete -arch.o:_NXGetLocalArchInfo -arch.o:_NXFindBestFatArch -strcasecmp.o:_strncasecmp -sendmsg.o:_sendmsg -recvmsg.o:_recvmsg -abs.o:_abs -labs.o:_labs -exchangedata.o:_exchangedata -pthread_cond.o:_pthread_cond_timedwait_relative_np -semaphore.o:_semaphore_timedwait_signal -mach_traps.o:_semaphore_timedwait_signal_trap -s_frexp.o:_frexp -socketpair.o:_socketpair -thread_actUser.o:_thread_swap_exception_ports -scalable_malloc.o:_huge_entry_for_pointer_no_lock -slot_name.o:_task_self_ -isctype.o:_isdigit -mach_traps.o:_macx_triggers -fnmatch.o:_fnmatch -mach_traps.o:_diagCall -mach_hostUser.o:_enable_bluebox -pthread.o:_pthread_getschedparam -vm_mapUser.o:_mach_make_memory_entry -ecvt.o:_cvt -mach_traps.o:_mk_wait_until -fstatv.o:_fstatv -atol.o:_atol -pthread.o:__pthread_reply_port -objectfileimage.o:_ofi_free -taskUser.o:_task_get_exception_ports -pthread.o:_pthread_setcancelstate -sbrk.o:_brk -getcap.o:_cgetset -bootstrapUser.o:_bootstrap_subset -lu_rpc.o:_freeold -rmdir.o:_rmdir -zone.o:_NXZoneFree -mach_traps.o:_swtch -svc_tcp.o:_svctcp_destroy -mach_traps.o:_init_process -mach_msg_server.o:_mach_msg_server_once -taskUser.o:_thread_create_running -vm_mapUser.o:_vm_behavior_set -err.o:_verr +getnetgrent.o:__old_getnetgrent +getnetgrent.o:__old_endnetgrent +getnetgrent.o:__old_setnetgrent +getnetgrent.o:_doit +getnetgrent.o:_fill getnetgrent.o:_match -clockUser.o:_clock_alarm -host_privUser.o:_kmod_destroy -mach_error_string.o:_do_compat +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 -nibind_prot_xdr.o:_xdr_nibind_registration -svc_tcp.o:_svctcp_recv -svc_tcp.o:_svctcp_stat +svc_tcp.o:_rendezvous_request svc_tcp.o:_svctcp_create -syslog.o:_setlogmask -wait.o:_wait -malloc.o:_malloc_zone_unregister -scalable_malloc.o:_szone_ptr_in_use_enumerator -taskUser.o:_task_policy_get -hash_page.o:_putpair -signal.o:__signal_nobind -sigaction.o:__sigaction_nobind -getsecbyname.o:_getsectdata -streams_doscan.o:_NXVScanf -streams_doscan.o:__innum -streams.o:_NXUngetc -vfprintf.o:___grow_type_table -mach_init.o:_mach_atfork_child_routine -mig_allocate.o:_mig_allocate -e_acos.o:___ieee754_acos -svc_tcp.o:_svctcp_getargs -memccpy.o:_memccpy -mach_portUser.o:_mach_port_get_refs -nsap_addr.o:_inet_nsap_ntoa -pthread.o:_sched_get_priority_min -zone.o:_NXZoneCalloc -shmsys.o:_shmsys -w_remainder.o:_remainder -e_remainder.o:___ieee754_remainder -vfprintf.o:_exponent -objectfileimage.o:_ofile_unmap -w_acos.o:_acos -regcomp.o:_othercase -regcomp.o:_bothcases -regcomp.o:_dofwd -regcomp.o:_nonnewline -mktemp.o:_mkstemp -settimeofday.o:_settimeofday -indir_ops.o:.section_start +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 +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_short +dnssd_ipc.o:_get_string +dnssd_ipc.o:_put_rdata +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 +arctg.o:_atanCore +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 diff --git a/SystemMath.s b/SystemMath.s index d5d2bc6..28b9319 100644 --- a/SystemMath.s +++ b/SystemMath.s @@ -1,3 +1,28 @@ +/* + * Copyright (c) 2003 Apple Computer, Inc. All rights reserved. + * + * @APPLE_LICENSE_HEADER_START@ + * + * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. + * + * This file contains Original Code and/or Modifications of Original Code + * as defined in and that are subject to the Apple Public Source License + * Version 2.0 (the 'License'). You may not use this file except in + * compliance with the License. Please obtain a copy of the License at + * http://www.opensource.apple.com/apsl/ and read it before using this + * file. + * + * The Original Code and all software distributed under the License are + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. + * Please see the License for the specific language governing rights and + * limitations under the License. + * + * @APPLE_LICENSE_HEADER_END@ + */ + #if defined (__ppc__) || defined(ppc) .section __TEXT, __VLib_Container, regular diff --git a/spinlock_stub.s b/spinlock_stub.s new file mode 100644 index 0000000..2d9a6e1 --- /dev/null +++ b/spinlock_stub.s @@ -0,0 +1,66 @@ +/* + * Copyright (c) 2003 Apple Computer, Inc. All rights reserved. + * + * @APPLE_LICENSE_HEADER_START@ + * + * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. + * + * This file contains Original Code and/or Modifications of Original Code + * as defined in and that are subject to the Apple Public Source License + * Version 2.0 (the 'License'). You may not use this file except in + * compliance with the License. Please obtain a copy of the License at + * http://www.opensource.apple.com/apsl/ and read it before using this + * file. + * + * The Original Code and all software distributed under the License are + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. + * Please see the License for the specific language governing rights and + * limitations under the License. + * + * @APPLE_LICENSE_HEADER_END@ + */ + +#define __APPLE_API_PRIVATE +#include +#if defined(__ppc__) +.data +.section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32 + .align 2 +L__spin_lock$stub: + .indirect_symbol __spin_lock + ba _COMM_PAGE_SPINLOCK_LOCK + nop + nop + nop + nop + nop + nop + nop +.data +.lazy_symbol_pointer +L__spin_lock$lazy_ptr: + .indirect_symbol __spin_lock + .long dyld_stub_binding_helper +#elif defined(__i386__) +.data +.picsymbol_stub +L__spin_lock$stub: + .indirect_symbol __spin_lock + movl $(_COMM_PAGE_SPINLOCK_LOCK), %eax + jmp %eax + nop + call LPC$1 +LPC$1: popl %eax +L__spin_lock$stub_binder: + lea L1$lz-LPC$1(%eax),%eax + pushl %eax + jmp dyld_stub_binding_helper +.data +.lazy_symbol_pointer +L1$lz: + .indirect_symbol __spin_lock + .long L__spin_lock$stub_binder +#endif diff --git a/spinlocktry_stub.s b/spinlocktry_stub.s new file mode 100644 index 0000000..a4d8955 --- /dev/null +++ b/spinlocktry_stub.s @@ -0,0 +1,66 @@ +/* + * Copyright (c) 2003 Apple Computer, Inc. All rights reserved. + * + * @APPLE_LICENSE_HEADER_START@ + * + * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. + * + * This file contains Original Code and/or Modifications of Original Code + * as defined in and that are subject to the Apple Public Source License + * Version 2.0 (the 'License'). You may not use this file except in + * compliance with the License. Please obtain a copy of the License at + * http://www.opensource.apple.com/apsl/ and read it before using this + * file. + * + * The Original Code and all software distributed under the License are + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. + * Please see the License for the specific language governing rights and + * limitations under the License. + * + * @APPLE_LICENSE_HEADER_END@ + */ + +#define __APPLE_API_PRIVATE +#include +#if defined(__ppc__) +.data +.section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32 + .align 2 +L__spin_lock_try$stub: + .indirect_symbol __spin_lock_try + ba _COMM_PAGE_SPINLOCK_TRY + nop + nop + nop + nop + nop + nop + nop +.data +.lazy_symbol_pointer +L__spin_lock_try$lazy_ptr: + .indirect_symbol __spin_lock_try + .long dyld_stub_binding_helper +#elif defined(__i386__) +.data +.picsymbol_stub +L__spin_lock_try$stub: + .indirect_symbol __spin_lock_try + movl $(_COMM_PAGE_SPINLOCK_TRY), %eax + jmp %eax + nop + call LPC$1 +LPC$1: popl %eax +L__spin_lock_try$stub_binder: + lea L1$lz-LPC$1(%eax),%eax + pushl %eax + jmp dyld_stub_binding_helper +.data +.lazy_symbol_pointer +L1$lz: + .indirect_symbol __spin_lock_try + .long L__spin_lock_try$stub_binder +#endif diff --git a/spinunlock_stub.s b/spinunlock_stub.s new file mode 100644 index 0000000..4518d3d --- /dev/null +++ b/spinunlock_stub.s @@ -0,0 +1,66 @@ +/* + * Copyright (c) 2003 Apple Computer, Inc. All rights reserved. + * + * @APPLE_LICENSE_HEADER_START@ + * + * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. + * + * This file contains Original Code and/or Modifications of Original Code + * as defined in and that are subject to the Apple Public Source License + * Version 2.0 (the 'License'). You may not use this file except in + * compliance with the License. Please obtain a copy of the License at + * http://www.opensource.apple.com/apsl/ and read it before using this + * file. + * + * The Original Code and all software distributed under the License are + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. + * Please see the License for the specific language governing rights and + * limitations under the License. + * + * @APPLE_LICENSE_HEADER_END@ + */ + +#define __APPLE_API_PRIVATE +#include +#if defined(__ppc__) +.data +.section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32 + .align 2 +L__spin_unlock$stub: + .indirect_symbol __spin_unlock + ba _COMM_PAGE_SPINLOCK_UNLOCK + nop + nop + nop + nop + nop + nop + nop +.data +.lazy_symbol_pointer +L__spin_unlock$lazy_ptr: + .indirect_symbol __spin_unlock + .long dyld_stub_binding_helper +#elif defined(__i386__) +.data +.picsymbol_stub +L__spin_unlock$stub: + .indirect_symbol __spin_unlock + movl $(_COMM_PAGE_SPINLOCK_UNLOCK), %eax + jmp %eax + nop + call LPC$1 +LPC$1: popl %eax +L__spin_unlock$stub_binder: + lea L1$lz-LPC$1(%eax),%eax + pushl %eax + jmp dyld_stub_binding_helper +.data +.lazy_symbol_pointer +L1$lz: + .indirect_symbol __spin_unlock + .long L__spin_unlock$stub_binder +#endif -- 2.47.2