riboseinc / retrace

retrace is a versatile security vulnerability / bug discovery tool through monitoring and modifying the behavior of compiled binaries on Linux, OpenBSD/FreeBSD/NetBSD (shared object) and macOS (dynamic library).
Other
60 stars 19 forks source link

Tracing of `execve` doesn't work on macOS #217

Closed catap closed 7 years ago

catap commented 7 years ago

@riataman, I'm trying to test https://github.com/riboseinc/retrace/pull/195 and I found when it doesn't work :)

Summary: I haven't see any execve track on https://github.com/riboseinc/retrace/commit/7f4c811749fa364cc81c6f16a9eca3cad614120a on macOS.

Test-case: retrace config:

forcefollowexec
showtimestamp
showcalltime,0.0001

Example applications:

➜  /tmp cat test.c 
➜  /tmp cat test.c
#include <stdio.h>
#include <unistd.h>

int main() {
    char *argv[] = { "/tmp/test2", 0 };
    char *envp[] = { "HOME=/", 0 };
    printf("Wooo!\n");
    execve(argv[0], &argv[0], envp);
    return 0;
}
➜  /tmp cat test2.c
#include <stdio.h>

int main() {
    printf("test2 output\n");
    return 0;
}
➜  /tmp clang -o test test.c      
➜  /tmp clang -o test2 test2.c
➜  /tmp ./test
Wooo!
test2 output
➜  /tmp 

run retrace on this application:

➜  retrace git:(master) ✗ env RETRACE_CONFIG=../retrace.conf.valgrind ./retrace /tmp/test
test(78391,0x7fffb783b3c0) malloc: *** malloc was initialized without entropy
(78391) (0.00055) strncmp("executable_[SNIP]", "stack_guard", 11, ) = -14 [took: 0.00074]
(78391) (0.00081) strncmp("", "stack_guard", 11, ) = -115
(78391) (0.00087) strncmp("stack_guard[SNIP]", "stack_guard", 11, ) = 0
(78391) (0.00094) strchr("stack_guard=0xce36d606297300f2", '='(61), ) = "=0xce36d606297300f2"
(78391) (0.00104) memcpy(0x7fff5050cc00, 0x7fff5050ef77, 19, ) = 0x7fff5050cc00
(78391) (0.00110) strchr("0xce36d606297300f2", ','(44), ) = (nil)
(78391) (0.00117) strchr("0xce36d606297300f2", ','(44), ) = (nil)
(78391) (0.00122) strncmp("executable_path=[SNIP]", "MallocNanoZone=1", 16, ) = 24
(78391) (0.00128) strncmp("", "MallocNanoZone=1", 16, ) = -77
(78391) (0.00135) strncmp("", "MallocNanoZone=1", 16, ) = -77
(78391) (0.00142) strncmp("malloc_entropy=0[SNIP]", "MallocNanoZone=1", 16, ) = 32
(78391) (0.00153) strncmp("main_stack=", "MallocNanoZone=1", 16, ) = 32
(78391) (0.00162) strncmp("executable_pat[SNIP]", "malloc_entropy", 14, ) = -8
(78391) (0.00171) strncmp("", "malloc_entropy", 14, ) = -109 [took: 0.00014]
(78391) (0.00186) strncmp("", "malloc_entropy", 14, ) = -109
(78391) (0.00194) strncmp("malloc_entropy[SNIP]", "malloc_entropy", 14, ) = 0
(78391) (0.00199) strchr("malloc_entropy=0x29d73a1e87bd9817,0x8fc4[SNIP]", '='(61), ) = "=0x29d73a1e87bd9817,0x8fc4944feb6ca3c6"
(78391) (0.00203) memcpy(0x7fff5050cbf0, 0x7fff5050ef99, 19, ) = 0x7fff5050cbf0
(78391) (0.00207) strchr("0x29d73a1e87bd9817,", ','(44), ) = ","
(78391) (0.00211) strchr("0x29d73a1e87bd9817,0x8fc4944feb6ca3c6", ','(44), ) = ",0x8fc4944feb6ca3c6"
(78391) (0.00216) memcpy(0x7fff5050cbf0, 0x7fff5050efac, 19, ) = 0x7fff5050cbf0
(78391) (0.00220) strchr("0x8fc4944feb6ca3c6", ','(44), ) = (nil)
(78391) (0.00225) strchr("0x8fc4944feb6ca3c6", ','(44), ) = (nil)
(78391) (0.00236) malloc(128, ) = 0x7fff4bd000a0
(78391) (0.00245) getenv("XBS_IS_CHROOTED", ) = (nil)
(78391) (0.00254) strncmp("DYLD_F[SNIP]", "Malloc", 6, ) = -9
(78391) (0.00258) strncmp("DYLD[SNIP]", "DYLD", 4, ) = 0
(78391) (0.00262) strncmp("DYLD_[SNIP]", "OBJC_", 5, ) = -11
(78391) (0.00266) strncmp("DYLD_I[SNIP]", "Malloc", 6, ) = -9
(78391) (0.00270) strncmp("DYLD[SNIP]", "DYLD", 4, ) = 0
(78391) (0.00275) strncmp("DYLD_[SNIP]", "OBJC_", 5, ) = -11
(78391) (0.00279) strncmp("RETRAC[SNIP]", "Malloc", 6, ) = 5
(78391) (0.00283) strncmp("RETR[SNIP]", "DYLD", 4, ) = 14
(78391) (0.00287) strncmp("RETRACE_CONFIG=.[SNIP]", "NSZombiesEnabled", 16, ) = 4
(78391) (0.00292) strncmp("RETRA[SNIP]", "OBJC_", 5, ) = 3 [took: 0.00029]
(78391) (0.00323) strncmp("TERM_P[SNIP]", "Malloc", 6, ) = 7
(78391) (0.00329) strncmp("TERM[SNIP]", "DYLD", 4, ) = 16
(78391) (0.00334) strncmp("TERM_PROGRAM=App[SNIP]", "NSZombiesEnabled", 16, ) = 6
(78391) (0.00338) strncmp("TERM_[SNIP]", "OBJC_", 5, ) = 5
(78391) (0.00342) strncmp("TERM=a[SNIP]", "Malloc", 6, ) = 7
(78391) (0.00347) strncmp("TERM[SNIP]", "DYLD", 4, ) = 16
(78391) (0.00353) strncmp("TERM=ansi", "NSZombiesEnabled", 16, ) = 6
(78391) (0.00358) strncmp("TERM=[SNIP]", "OBJC_", 5, ) = 5
(78391) (0.00361) strncmp("SHELL=[SNIP]", "Malloc", 6, ) = 6
(78391) (0.00366) strncmp("SHEL[SNIP]", "DYLD", 4, ) = 15
(78391) (0.00369) strncmp("SHELL=/bin/zsh", "NSZombiesEnabled", 16, ) = 5
(78391) (0.00373) strncmp("SHELL[SNIP]", "OBJC_", 5, ) = 4
(78391) (0.00377) strncmp("TMPDIR[SNIP]", "Malloc", 6, ) = 7
(78391) (0.00382) strncmp("TMPD[SNIP]", "DYLD", 4, ) = 16
(78391) (0.00386) strncmp("TMPDIR=/var/fold[SNIP]", "NSZombiesEnabled", 16, ) = 6
(78391) (0.00390) strncmp("TMPDI[SNIP]", "OBJC_", 5, ) = 5
(78391) (0.00394) strncmp("Apple_[SNIP]", "Malloc", 6, ) = -12
(78391) (0.00399) strncmp("Appl[SNIP]", "DYLD", 4, ) = -3
(78391) (0.00406) strncmp("Apple_PubSub_Soc[SNIP]", "NSZombiesEnabled", 16, ) = -13
(78391) (0.00412) strncmp("Apple[SNIP]", "OBJC_", 5, ) = -14
(78391) (0.00418) strncmp("TERM_P[SNIP]", "Malloc", 6, ) = 7
(78391) (0.00424) strncmp("TERM[SNIP]", "DYLD", 4, ) = 16
(78391) (0.00431) strncmp("TERM_PROGRAM_VER[SNIP]", "NSZombiesEnabled", 16, ) = 6
(78391) (0.00438) strncmp("TERM_[SNIP]", "OBJC_", 5, ) = 5
(78391) (0.00445) strncmp("TERM_S[SNIP]", "Malloc", 6, ) = 7
(78391) (0.00452) strncmp("TERM[SNIP]", "DYLD", 4, ) = 16
(78391) (0.00460) strncmp("TERM_SESSION_ID=[SNIP]", "NSZombiesEnabled", 16, ) = 6
(78391) (0.00469) strncmp("TERM_[SNIP]", "OBJC_", 5, ) = 5
(78391) (0.00477) strncmp("LC_ALL[SNIP]", "Malloc", 6, ) = -1
(78391) (0.00484) strncmp("LC_A[SNIP]", "DYLD", 4, ) = 8
(78391) (0.00490) strncmp("LC_ALL=en_US.UTF[SNIP]", "NSZombiesEnabled", 16, ) = -2
(78391) (0.00497) strncmp("LC_AL[SNIP]", "OBJC_", 5, ) = -3
(78391) (0.00503) strncmp("USER=c[SNIP]", "Malloc", 6, ) = 8
(78391) (0.00510) strncmp("USER[SNIP]", "DYLD", 4, ) = 17
(78391) (0.00517) strncmp("USER=catap", "NSZombiesEnabled", 16, ) = 7 [took: 0.00039]
(78391) (0.00562) strncmp("USER=[SNIP]", "OBJC_", 5, ) = 6 [took: 0.00011]
(78391) (0.00575) strncmp("SSH_AU[SNIP]", "Malloc", 6, ) = 6
(78391) (0.00584) strncmp("SSH_[SNIP]", "DYLD", 4, ) = 15 [took: 0.00010]
(78391) (0.00596) strncmp("SSH_AUTH_SOCK=/p[SNIP]", "NSZombiesEnabled", 16, ) = 5
(78391) (0.00604) strncmp("SSH_A[SNIP]", "OBJC_", 5, ) = 4
(78391) (0.00611) strncmp("__CF_U[SNIP]", "Malloc", 6, ) = 18
(78391) (0.00617) strncmp("__CF[SNIP]", "DYLD", 4, ) = 27
(78391) (0.00624) strncmp("__CF_USER_TEXT_E[SNIP]", "NSZombiesEnabled", 16, ) = 17
(78391) (0.00629) strncmp("__CF_[SNIP]", "OBJC_", 5, ) = 16
(78391) (0.00635) strncmp("PAGER=[SNIP]", "Malloc", 6, ) = 3
(78391) (0.00640) strncmp("PAGE[SNIP]", "DYLD", 4, ) = 12
(78391) (0.00645) strncmp("PAGER=less", "NSZombiesEnabled", 16, ) = 2 [took: 0.00099]
(78391) (0.00745) strncmp("PAGER[SNIP]", "OBJC_", 5, ) = 1
(78391) (0.00749) strncmp("LSCOLO[SNIP]", "Malloc", 6, ) = -1
(78391) (0.00753) strncmp("LSCO[SNIP]", "DYLD", 4, ) = 8
(78391) (0.00757) strncmp("LSCOLORS=Gxfxcxd[SNIP]", "NSZombiesEnabled", 16, ) = -2
(78391) (0.00762) strncmp("LSCOL[SNIP]", "OBJC_", 5, ) = -3
(78391) (0.00766) strncmp("PATH=/[SNIP]", "Malloc", 6, ) = 3
(78391) (0.00770) strncmp("PATH[SNIP]", "DYLD", 4, ) = 12
(78391) (0.00774) strncmp("PATH=/usr/local/[SNIP]", "NSZombiesEnabled", 16, ) = 2
(78391) (0.00778) strncmp("PATH=[SNIP]", "OBJC_", 5, ) = 1
(78391) (0.00782) strncmp("PWD=/U[SNIP]", "Malloc", 6, ) = 3
(78391) (0.00787) strncmp("PWD=[SNIP]", "DYLD", 4, ) = 12
(78391) (0.00791) strncmp("PWD=/Users/catap[SNIP]", "NSZombiesEnabled", 16, ) = 2
(78391) (0.00795) strncmp("PWD=/[SNIP]", "OBJC_", 5, ) = 1
(78391) (0.00800) strncmp("JAVA_H[SNIP]", "Malloc", 6, ) = -3
(78391) (0.00805) strncmp("JAVA[SNIP]", "DYLD", 4, ) = 6
(78391) (0.00810) strncmp("JAVA_HOME=/Libra[SNIP]", "NSZombiesEnabled", 16, ) = -4
(78391) (0.00814) strncmp("JAVA_[SNIP]", "OBJC_", 5, ) = -5
(78391) (0.00819) strncmp("EDITOR[SNIP]", "Malloc", 6, ) = -8
(78391) (0.00824) strncmp("EDIT[SNIP]", "DYLD", 4, ) = 1
(78391) (0.00828) strncmp("EDITOR=mate -w", "NSZombiesEnabled", 16, ) = -9
(78391) (0.00833) strncmp("EDITO[SNIP]", "OBJC_", 5, ) = -10
(78391) (0.00838) strncmp("LANG=e[SNIP]", "Malloc", 6, ) = -1
(78391) (0.00842) strncmp("LANG[SNIP]", "DYLD", 4, ) = 8
(78391) (0.00847) strncmp("LANG=en_US.UTF-8", "NSZombiesEnabled", 16, ) = -2
(78391) (0.00852) strncmp("LANG=[SNIP]", "OBJC_", 5, ) = -3
(78391) (0.00856) strncmp("XPC_FL[SNIP]", "Malloc", 6, ) = 11
(78391) (0.00861) strncmp("XPC_[SNIP]", "DYLD", 4, ) = 20
(78391) (0.00865) strncmp("XPC_FLAGS=0x0", "NSZombiesEnabled", 16, ) = 10
(78391) (0.00870) strncmp("XPC_F[SNIP]", "OBJC_", 5, ) = 9
(78391) (0.00875) strncmp("JAVA_T[SNIP]", "Malloc", 6, ) = -3
(78391) (0.00879) strncmp("JAVA[SNIP]", "DYLD", 4, ) = 6
(78391) (0.00884) strncmp("JAVA_TOOL_OPTION[SNIP]", "NSZombiesEnabled", 16, ) = -4
(78391) (0.00888) strncmp("JAVA_[SNIP]", "OBJC_", 5, ) = -5
(78391) (0.00893) strncmp("XPC_SE[SNIP]", "Malloc", 6, ) = 11
(78391) (0.00899) strncmp("XPC_[SNIP]", "DYLD", 4, ) = 20
(78391) (0.00903) strncmp("XPC_SERVICE_NAME[SNIP]", "NSZombiesEnabled", 16, ) = 10
(78391) (0.00907) strncmp("XPC_S[SNIP]", "OBJC_", 5, ) = 9
(78391) (0.00912) strncmp("HOME=/[SNIP]", "Malloc", 6, ) = -5
(78391) (0.00916) strncmp("HOME[SNIP]", "DYLD", 4, ) = 4
(78391) (0.00920) strncmp("HOME=/Users/cata[SNIP]", "NSZombiesEnabled", 16, ) = -6
(78391) (0.00925) strncmp("HOME=[SNIP]", "OBJC_", 5, ) = -7
(78391) (0.00929) strncmp("SHLVL=[SNIP]", "Malloc", 6, ) = 6
(78391) (0.00933) strncmp("SHLV[SNIP]", "DYLD", 4, ) = 15
(78391) (0.00937) strncmp("SHLVL=2", "NSZombiesEnabled", 16, ) = 5
(78391) (0.00942) strncmp("SHLVL[SNIP]", "OBJC_", 5, ) = 4
(78391) (0.00946) strncmp("LESS=-[SNIP]", "Malloc", 6, ) = -1
(78391) (0.00950) strncmp("LESS[SNIP]", "DYLD", 4, ) = 8
(78391) (0.00955) strncmp("LESS=-R", "NSZombiesEnabled", 16, ) = -2
(78391) (0.00959) strncmp("LESS=[SNIP]", "OBJC_", 5, ) = -3
(78391) (0.00963) strncmp("LOGNAM[SNIP]", "Malloc", 6, ) = -1
(78391) (0.00968) strncmp("LOGN[SNIP]", "DYLD", 4, ) = 8
(78391) (0.00972) strncmp("LOGNAME=catap", "NSZombiesEnabled", 16, ) = -2
(78391) (0.00976) strncmp("LOGNA[SNIP]", "OBJC_", 5, ) = -3
(78391) (0.00981) strncmp("LC_CTY[SNIP]", "Malloc", 6, ) = -1
(78391) (0.00985) strncmp("LC_C[SNIP]", "DYLD", 4, ) = 8
(78391) (0.00989) strncmp("LC_CTYPE=UTF-8", "NSZombiesEnabled", 16, ) = -2
(78391) (0.00993) strncmp("LC_CT[SNIP]", "OBJC_", 5, ) = -3
(78391) (0.00998) strncmp("CHECKP[SNIP]", "Malloc", 6, ) = -10
(78391) (0.01003) strncmp("CHEC[SNIP]", "DYLD", 4, ) = -1
(78391) (0.01007) strncmp("CHECKPATCH_FLAGS[SNIP]", "NSZombiesEnabled", 16, ) = -11
(78391) (0.01011) strncmp("CHECK[SNIP]", "OBJC_", 5, ) = -12
(78391) (0.01016) strncmp("GOPATH[SNIP]", "Malloc", 6, ) = -6
(78391) (0.01020) strncmp("GOPA[SNIP]", "DYLD", 4, ) = 3
(78391) (0.01024) strncmp("GOPATH=/Users/ca[SNIP]", "NSZombiesEnabled", 16, ) = -7
(78391) (0.01028) strncmp("GOPAT[SNIP]", "OBJC_", 5, ) = -8
(78391) (0.01032) strncmp("PKG_CO[SNIP]", "Malloc", 6, ) = 3
(78391) (0.01036) strncmp("PKG_[SNIP]", "DYLD", 4, ) = 12
(78391) (0.01041) strncmp("PKG_CONFIG_PATH=[SNIP]", "NSZombiesEnabled", 16, ) = 2
(78391) (0.01045) strncmp("PKG_C[SNIP]", "OBJC_", 5, ) = 1
(78391) (0.01049) strncmp("SECURI[SNIP]", "Malloc", 6, ) = 6
(78391) (0.01053) strncmp("SECU[SNIP]", "DYLD", 4, ) = 15
(78391) (0.01057) strncmp("SECURITYSESSIONI[SNIP]", "NSZombiesEnabled", 16, ) = 5
(78391) (0.01061) strncmp("SECUR[SNIP]", "OBJC_", 5, ) = 4
(78391) (0.01066) strncmp("_=/tmp[SNIP]", "Malloc", 6, ) = 18
(78391) (0.01070) strncmp("_=/t[SNIP]", "DYLD", 4, ) = 27
(78391) (0.01074) strncmp("_=/tmp/test", "NSZombiesEnabled", 16, ) = 17
(78391) (0.01078) strncmp("_=/tm[SNIP]", "OBJC_", 5, ) = 16
(78391) (0.01083) getenv("DYLD_INSERT_LIBRARIES", ) = ".libs/libretrace.dylib"
(78391) (0.01086) getenv("NSZombiesEnabled", ) = (nil)
(78391) (0.01089) getenv("OBJC_DEBUG_POOL_ALLOCATION", ) = (nil)
(78391) (0.01091) getenv("MallocStackLogging", ) = (nil)
(78391) (0.01094) getenv("MallocStackLoggingNoCompact", ) = (nil)
(78391) (0.01098) strncmp("ibs/libre[SNIP]", "ibgmalloc", 9, ) = 12
(78391) (0.01102) strncmp("ibretrace[SNIP]", "ibgmalloc", 9, ) = 11
(78391) (0.01106) strncmp("ib", "ibgmalloc", 9, ) = -103
(78391) (0.01111) strstr(".libs/libretrace.dylib", "libgmalloc", ) = (nil) [took: 0.00017]
(78391) (0.01116) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01120) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01124) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01128) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01132) strncmp("__got", "__objc_init_func", 16, ) = -8
(78391) (0.01136) strncmp("__nl_symbol_ptr", "__objc_init_func", 16, ) = -1
(78391) (0.01140) strncmp("__la_symbol_ptr", "__objc_init_func", 16, ) = -3
(78391) (0.01145) strncmp("__objc_init_func[SNIP]", "__objc_init_func", 16, ) = 0
(78391) (0.01149) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01162) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01165) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01168) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01171) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01173) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.01176) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.01179) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.01182) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.01184) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.01187) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01190) strcmp("__TEXT", "__TEXT", ) = 0 [took: 0.00160]
(78391) (0.01352) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01358) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01363) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01369) strncmp("__got", "__objc_classlist", 16, ) = -8 [took: 0.00011]
(78391) (0.01382) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.01388) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.01397) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.01402) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.01406) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01411) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01415) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01421) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01426) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01432) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.01438) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.01445) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3 [took: 0.00013]
(78391) (0.01459) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.01464) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.01469) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01475) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01479) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01485) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01490) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01496) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.01502) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.01506) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.01511) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.01515) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.01520) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01540) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01545) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01553) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01556) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01560) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.01565) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.01570) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.01574) strncmp("__objc_init_func[SNIP]", "__objc_classlist", 16, ) = 6
(78391) (0.01579) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.01584) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.01588) strncmp("__DATA", "__DATA", 16, ) = 0 [took: 0.00066]
(78391) (0.01660) strlen("load", ) = 4
(78391) (0.01668) strcmp("load", "load", ) = 0
(78391) (0.01673) strlen("initialize", ) = 10
(78391) (0.01682) strcmp("initialize", "initialize", ) = 0
(78391) (0.01688) strlen("resolveInstanceMethod:", ) = 22
(78391) (0.01694) strcmp("resolveInstanceMethod:", "resolveInstanceMethod:", ) = 0
(78391) (0.01700) strlen("resolveClassMethod:", ) = 19
(78391) (0.01711) strcmp("resolveClassMethod:", "resolveClassMethod:", ) = 0
(78391) (0.01714) strlen(".cxx_construct", ) = 14
(78391) (0.01717) strcmp(".cxx_construct", ".cxx_construct", ) = 0
(78391) (0.01720) strlen(".cxx_destruct", ) = 13
(78391) (0.01725) strcmp(".cxx_destruct", ".cxx_destruct", ) = 0
(78391) (0.01731) strlen("retain", ) = 6
(78391) (0.01737) strcmp("retain", "retain", ) = 0
(78391) (0.01740) strlen("release", ) = 7
(78391) (0.01744) strcmp("release", "release", ) = 0 [took: 0.00031]
(78391) (0.01777) strlen("autorelease", ) = 11
(78391) (0.01781) strcmp("autorelease", "autorelease", ) = 0
(78391) (0.01787) strlen("retainCount", ) = 11
(78391) (0.01791) strcmp("retainCount", "retainCount", ) = 0
(78391) (0.01795) strlen("alloc", ) = 5
(78391) (0.01804) strcmp("alloc", "alloc", ) = 0
(78391) (0.01807) strlen("allocWithZone:", ) = 14
(78391) (0.01815) strcmp("allocWithZone:", "allocWithZone:", ) = 0
(78391) (0.01819) strlen("dealloc", ) = 7
(78391) (0.01825) strcmp("dealloc", "dealloc", ) = 0
(78391) (0.01830) strlen("copy", ) = 4
(78391) (0.01836) strcmp("copy", "copy", ) = 0
(78391) (0.01841) strlen("new", ) = 3
(78391) (0.01846) strcmp("new", "new", ) = 0
(78391) (0.01850) strlen("forwardInvocation:", ) = 18
(78391) (0.01857) strcmp("forwardInvocation:", "forwardInvocation:", ) = 0
(78391) (0.01862) strlen("_tryRetain", ) = 10
(78391) (0.01882) strcmp("_tryRetain", "_tryRetain", ) = 0 [took: 0.00014]
(78391) (0.01888) strlen("_isDeallocating", ) = 15
(78391) (0.01893) strcmp("_isDeallocating", "_isDeallocating", ) = 0
(78391) (0.01898) strlen("retainWeakReference", ) = 19
(78391) (0.01907) strcmp("retainWeakReference", "retainWeakReference", ) = 0 [took: 0.00011]
(78391) (0.01923) strlen("allowsWeakReference", ) = 19
(78391) (0.01928) strcmp("allowsWeakReference", "allowsWeakReference", ) = 0
(78391) (0.01932) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01935) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01941) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01946) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01951) strncmp("__got", "__objc_imageinfo", 16, ) = -8
(78391) (0.01956) strncmp("__nl_symbol_ptr", "__objc_imageinfo", 16, ) = -1
(78391) (0.01960) strncmp("__la_symbol_ptr", "__objc_imageinfo", 16, ) = -3
(78391) (0.01965) strncmp("__const", "__objc_imageinfo", 16, ) = -12
(78391) (0.01970) strncmp("__objc_classlist[SNIP]", "__objc_imageinfo", 16, ) = -6
(78391) (0.01974) strncmp("__objc_nlclslist[SNIP]", "__objc_imageinfo", 16, ) = 5
(78391) (0.01979) strncmp("__objc_protolist[SNIP]", "__objc_imageinfo", 16, ) = 7 [took: 0.00015]
(78391) (0.01995) strncmp("__objc_imageinfo[SNIP]", "__objc_imageinfo", 16, ) = 0
(78391) (0.01999) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02004) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02008) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02013) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02017) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02022) strncmp("__got", "__objc_imageinfo", 16, ) = -8
(78391) (0.02026) strncmp("__nl_symbol_ptr", "__objc_imageinfo", 16, ) = -1
(78391) (0.02031) strncmp("__la_symbol_ptr", "__objc_imageinfo", 16, ) = -3
(78391) (0.02035) strncmp("__const", "__objc_imageinfo", 16, ) = -12
(78391) (0.02039) strncmp("__objc_classlist[SNIP]", "__objc_imageinfo", 16, ) = -6
(78391) (0.02043) strncmp("__objc_nlclslist[SNIP]", "__objc_imageinfo", 16, ) = 5
(78391) (0.02047) strncmp("__objc_protolist[SNIP]", "__objc_imageinfo", 16, ) = 7
(78391) (0.02051) strncmp("__objc_imageinfo[SNIP]", "__objc_imageinfo", 16, ) = 0
(78391) (0.02056) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02060) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02063) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02067) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02071) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02075) strncmp("__nl_symbol_ptr", "__objc_imageinfo", 16, ) = -1
(78391) (0.02079) strncmp("__got", "__objc_imageinfo", 16, ) = -8
(78391) (0.02083) strncmp("__la_symbol_ptr", "__objc_imageinfo", 16, ) = -3
(78391) (0.02088) strncmp("__const", "__objc_imageinfo", 16, ) = -12
(78391) (0.02093) strncmp("__objc_classlist[SNIP]", "__objc_imageinfo", 16, ) = -6
(78391) (0.02097) strncmp("__objc_nlclslist[SNIP]", "__objc_imageinfo", 16, ) = 5
(78391) (0.02102) strncmp("__objc_protolist[SNIP]", "__objc_imageinfo", 16, ) = 7
(78391) (0.02106) strncmp("__objc_imageinfo[SNIP]", "__objc_imageinfo", 16, ) = 0
(78391) (0.02111) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02115) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02119) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02124) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02128) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02132) strncmp("__got", "__objc_imageinfo", 16, ) = -8
(78391) (0.02136) strncmp("__nl_symbol_ptr", "__objc_imageinfo", 16, ) = -1
(78391) (0.02140) strncmp("__la_symbol_ptr", "__objc_imageinfo", 16, ) = -3
(78391) (0.02145) strncmp("__const", "__objc_imageinfo", 16, ) = -12
(78391) (0.02150) strncmp("__objc_classlist[SNIP]", "__objc_imageinfo", 16, ) = -6
(78391) (0.02154) strncmp("__objc_protolist[SNIP]", "__objc_imageinfo", 16, ) = 7
(78391) (0.02158) strncmp("__objc_imageinfo[SNIP]", "__objc_imageinfo", 16, ) = 0
(78391) (0.02162) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02166) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02170) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02175) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02178) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02183) strncmp("__got", "__objc_imageinfo", 16, ) = -8
(78391) (0.02187) strncmp("__nl_symbol_ptr", "__objc_imageinfo", 16, ) = -1
(78391) (0.02192) strncmp("__la_symbol_ptr", "__objc_imageinfo", 16, ) = -3
(78391) (0.02196) strncmp("__objc_init_func[SNIP]", "__objc_imageinfo", 16, ) = 1
(78391) (0.02201) strncmp("__const", "__objc_imageinfo", 16, ) = -12
(78391) (0.02205) strncmp("__objc_classlist[SNIP]", "__objc_imageinfo", 16, ) = -6
(78391) (0.02210) strncmp("__objc_nlclslist[SNIP]", "__objc_imageinfo", 16, ) = 5
(78391) (0.02215) strncmp("__objc_protolist[SNIP]", "__objc_imageinfo", 16, ) = 7
(78391) (0.02219) strncmp("__objc_imageinfo[SNIP]", "__objc_imageinfo", 16, ) = 0
(78391) (0.02223) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02232) malloc(32, ) = 0x7fff4be00070
(78391) (0.02235) memcpy(0x7fff4be00070, 0x7fff5050b030, 32, ) = 0x7fff4be00070
(78391) (0.02239) bcopy(0x7fff5050b030, 0x7fff4be00070, 32, )
(78391) (0.02243) free(0x7fff4be00090, )
(78391) (0.02245) free(0x7fff4be00060, )
(78391) (0.02247) free(0x7fff4be000b0, )
(78391) (0.02249) malloc(32, ) = 0x7fff4be000b0
(78391) (0.02253) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02257) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02261) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02265) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02269) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.02274) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.02279) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3 [took: 0.00041]
(78391) (0.02320) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.02325) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.02329) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02335) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02338) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02342) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02345) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02350) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.02354) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.02358) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.02363) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.02367) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.02371) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02377) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02380) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02389) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02392) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02397) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.02401) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.02405) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.02410) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.02415) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.02419) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02424) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02428) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02432) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02436) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02440) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.02445) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.02449) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.02454) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.02458) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.02463) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02469) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02472) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02477) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02481) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02486) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.02490) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.02495) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.02499) strncmp("__objc_init_func[SNIP]", "__objc_classlist", 16, ) = 6
(78391) (0.02504) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.02508) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.02512) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02517) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02522) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02526) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02530) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02534) strncmp("__got", "__objc_msgrefs", 16, ) = -8
(78391) (0.02539) strncmp("__nl_symbol_ptr", "__objc_msgrefs", 16, ) = -1
(78391) (0.02543) strncmp("__la_symbol_ptr", "__objc_msgrefs", 16, ) = -3
(78391) (0.02547) strncmp("__const", "__objc_msgrefs", 16, ) = -12
(78391) (0.02552) strncmp("__objc_classlist[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.02556) strncmp("__objc_nlclslist[SNIP]", "__objc_msgrefs", 16, ) = 1
(78391) (0.02561) strncmp("__objc_protolist[SNIP]", "__objc_msgrefs", 16, ) = 3
(78391) (0.02565) strncmp("__objc_imageinfo[SNIP]", "__objc_msgrefs", 16, ) = -4
(78391) (0.02569) strncmp("__objc_const", "__objc_msgrefs", 16, ) = -10
(78391) (0.02572) strncmp("__objc_selrefs", "__objc_msgrefs", 16, ) = 6
(78391) (0.02575) strncmp("__objc_classrefs[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.02577) strncmp("__objc_superrefs[SNIP]", "__objc_msgrefs", 16, ) = 6
(78391) (0.02581) strncmp("__objc_data", "__objc_msgrefs", 16, ) = -9
(78391) (0.02584) strncmp("__data", "__objc_msgrefs", 16, ) = -11
(78391) (0.02588) strncmp("__crash_info", "__objc_msgrefs", 16, ) = -12
(78391) (0.02593) strncmp("__common", "__objc_msgrefs", 16, ) = -12
(78391) (0.02599) strncmp("__bss", "__objc_msgrefs", 16, ) = -13
(78391) (0.02605) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.02609) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.02613) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02617) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.02621) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02625) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.02629) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.02633) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.02637) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02641) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.02645) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02648) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.02653) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.02656) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.02661) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02664) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02669) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02672) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02676) strncmp("__got", "__objc_msgrefs", 16, ) = -8
(78391) (0.02681) strncmp("__nl_symbol_ptr", "__objc_msgrefs", 16, ) = -1
(78391) (0.02685) strncmp("__la_symbol_ptr", "__objc_msgrefs", 16, ) = -3
(78391) (0.02689) strncmp("__const", "__objc_msgrefs", 16, ) = -12
(78391) (0.02693) strncmp("__objc_classlist[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.02697) strncmp("__objc_nlclslist[SNIP]", "__objc_msgrefs", 16, ) = 1
(78391) (0.02702) strncmp("__objc_protolist[SNIP]", "__objc_msgrefs", 16, ) = 3
(78391) (0.02706) strncmp("__objc_imageinfo[SNIP]", "__objc_msgrefs", 16, ) = -4
(78391) (0.02710) strncmp("__objc_const", "__objc_msgrefs", 16, ) = -10
(78391) (0.02714) strncmp("__objc_selrefs", "__objc_msgrefs", 16, ) = 6
(78391) (0.02718) strncmp("__objc_classrefs[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.02722) strncmp("__objc_superrefs[SNIP]", "__objc_msgrefs", 16, ) = 6
(78391) (0.02727) strncmp("__objc_data", "__objc_msgrefs", 16, ) = -9
(78391) (0.02731) strncmp("__data", "__objc_msgrefs", 16, ) = -11
(78391) (0.02735) strncmp("__crash_info", "__objc_msgrefs", 16, ) = -12
(78391) (0.02739) strncmp("__bss", "__objc_msgrefs", 16, ) = -13
(78391) (0.02743) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.02747) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.02751) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02755) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.02759) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02763) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.02767) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.02770) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.02774) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02778) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.02782) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02788) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.02792) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.02796) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.02800) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02804) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02808) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02811) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02816) strncmp("__nl_symbol_ptr", "__objc_msgrefs", 16, ) = -1
(78391) (0.02820) strncmp("__got", "__objc_msgrefs", 16, ) = -8
(78391) (0.02824) strncmp("__la_symbol_ptr", "__objc_msgrefs", 16, ) = -3
(78391) (0.02828) strncmp("__const", "__objc_msgrefs", 16, ) = -12
(78391) (0.02832) strncmp("__objc_classlist[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.02836) strncmp("__objc_nlclslist[SNIP]", "__objc_msgrefs", 16, ) = 1
(78391) (0.02840) strncmp("__objc_protolist[SNIP]", "__objc_msgrefs", 16, ) = 3
(78391) (0.02845) strncmp("__objc_imageinfo[SNIP]", "__objc_msgrefs", 16, ) = -4
(78391) (0.02849) strncmp("__objc_const", "__objc_msgrefs", 16, ) = -10
(78391) (0.02853) strncmp("__objc_selrefs", "__objc_msgrefs", 16, ) = 6
(78391) (0.02857) strncmp("__objc_classrefs[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.02861) strncmp("__objc_superrefs[SNIP]", "__objc_msgrefs", 16, ) = 6
(78391) (0.02865) strncmp("__objc_ivar", "__objc_msgrefs", 16, ) = -4
(78391) (0.02870) strncmp("__objc_data", "__objc_msgrefs", 16, ) = -9
(78391) (0.02874) strncmp("__data", "__objc_msgrefs", 16, ) = -11
(78391) (0.02878) strncmp("__crash_info", "__objc_msgrefs", 16, ) = -12
(78391) (0.02882) strncmp("__bss", "__objc_msgrefs", 16, ) = -13
(78391) (0.02886) strncmp("__common", "__objc_msgrefs", 16, ) = -12
(78391) (0.02890) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.02894) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.02898) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02902) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.02906) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02909) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.02913) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.02917) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.02921) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02925) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.02929) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02932) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.02936) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.02940) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.02944) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02948) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02952) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02956) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02960) strncmp("__got", "__objc_msgrefs", 16, ) = -8
(78391) (0.02964) strncmp("__nl_symbol_ptr", "__objc_msgrefs", 16, ) = -1
(78391) (0.02967) strncmp("__la_symbol_ptr", "__objc_msgrefs", 16, ) = -3
(78391) (0.02975) strncmp("__const", "__objc_msgrefs", 16, ) = -12
(78391) (0.02979) strncmp("__objc_classlist[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.02983) strncmp("__objc_protolist[SNIP]", "__objc_msgrefs", 16, ) = 3
(78391) (0.02987) strncmp("__objc_imageinfo[SNIP]", "__objc_msgrefs", 16, ) = -4 [took: 0.00016]
(78391) (0.03005) strncmp("__objc_const", "__objc_msgrefs", 16, ) = -10
(78391) (0.03009) strncmp("__objc_selrefs", "__objc_msgrefs", 16, ) = 6
(78391) (0.03016) strncmp("__objc_classrefs[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.03021) strncmp("__objc_superrefs[SNIP]", "__objc_msgrefs", 16, ) = 6 [took: 0.00152]
(78391) (0.03175) strncmp("__objc_ivar", "__objc_msgrefs", 16, ) = -4
(78391) (0.03179) strncmp("__objc_data", "__objc_msgrefs", 16, ) = -9
(78391) (0.03184) strncmp("__data", "__objc_msgrefs", 16, ) = -11
(78391) (0.03189) strncmp("__common", "__objc_msgrefs", 16, ) = -12
(78391) (0.03193) strncmp("__bss", "__objc_msgrefs", 16, ) = -13
(78391) (0.03202) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03207) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.03213) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03217) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.03222) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03226) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.03231) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03235) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.03241) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03246) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.03251) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03255) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.03260) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03265) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.03270) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03274) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.03279) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03283) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.03288) strncmp("__got", "__objc_msgrefs", 16, ) = -8
(78391) (0.03291) strncmp("__nl_symbol_ptr", "__objc_msgrefs", 16, ) = -1
(78391) (0.03294) strncmp("__la_symbol_ptr", "__objc_msgrefs", 16, ) = -3
(78391) (0.03298) strncmp("__objc_init_func[SNIP]", "__objc_msgrefs", 16, ) = -4
(78391) (0.03301) strncmp("__const", "__objc_msgrefs", 16, ) = -12
(78391) (0.03308) strncmp("__objc_classlist[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.03312) strncmp("__objc_nlclslist[SNIP]", "__objc_msgrefs", 16, ) = 1
(78391) (0.03317) strncmp("__objc_protolist[SNIP]", "__objc_msgrefs", 16, ) = 3
(78391) (0.03322) strncmp("__objc_imageinfo[SNIP]", "__objc_msgrefs", 16, ) = -4
(78391) (0.03326) strncmp("__objc_const", "__objc_msgrefs", 16, ) = -10
(78391) (0.03331) strncmp("__objc_selrefs", "__objc_msgrefs", 16, ) = 6
(78391) (0.03335) strncmp("__objc_ivar", "__objc_msgrefs", 16, ) = -4
(78391) (0.03340) strncmp("__objc_data", "__objc_msgrefs", 16, ) = -9
(78391) (0.03344) strncmp("__data", "__objc_msgrefs", 16, ) = -11
(78391) (0.03349) strncmp("__objc_msg_break[SNIP]", "__objc_msgrefs", 16, ) = -19
(78391) (0.03353) strncmp("__objc_opt_rw", "__objc_msgrefs", 16, ) = 2
(78391) (0.03358) strncmp("__objc_opt_ptrs", "__objc_msgrefs", 16, ) = 2
(78391) (0.03362) strncmp("__crash_info", "__objc_msgrefs", 16, ) = -12
(78391) (0.03367) strncmp("__bss", "__objc_msgrefs", 16, ) = -13
(78391) (0.03372) strncmp("__common", "__objc_msgrefs", 16, ) = -12
(78391) (0.03376) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03380) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.03385) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03389) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.03393) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03397) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.03402) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03406) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.03411) strcmp("__TEXT", "__TEXT", ) = 0 [took: 0.00013]
(78391) (0.03424) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.03428) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03432) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.03438) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03441) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.03449) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03453) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.03457) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03461) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.03466) strncmp("__got", "__objc_protolist", 16, ) = -8
(78391) (0.03470) strncmp("__nl_symbol_ptr", "__objc_protolist", 16, ) = -1
(78391) (0.03475) strncmp("__la_symbol_ptr", "__objc_protolist", 16, ) = -3
(78391) (0.03480) strncmp("__const", "__objc_protolist", 16, ) = -12
(78391) (0.03484) strncmp("__objc_classlist[SNIP]", "__objc_protolist", 16, ) = -13
(78391) (0.03489) strncmp("__objc_nlclslist[SNIP]", "__objc_protolist", 16, ) = -2
(78391) (0.03494) strncmp("__objc_protolist[SNIP]", "__objc_protolist", 16, ) = 0
(78391) (0.03498) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.03504) strlen("NSObject", ) = 8
(78391) (0.03509) strcmp("NSObject", "NSObject", ) = 0
(78391) (0.03514) strlen("OS_object", ) = 9
(78391) (0.03517) strcmp("OS_object", "OS_object", ) = 0
(78391) (0.03522) strlen("OS_dispatch_object", ) = 18
(78391) (0.03525) strcmp("OS_dispatch_object", "OS_dispatch_object", ) = 0
(78391) (0.03530) strlen("OS_dispatch_queue", ) = 17
(78391) (0.03533) strcmp("OS_dispatch_queue", "OS_dispatch_queue", ) = 0
(78391) (0.03537) strlen("OS_dispatch_source", ) = 18
(78391) (0.03540) strcmp("OS_dispatch_source", "OS_dispatch_source", ) = 0
(78391) (0.03544) strlen("OS_dispatch_source_interval", ) = 27
(78391) (0.03548) strcmp("OS_dispatch_source_interval", "OS_dispatch_source_interval", ) = 0
(78391) (0.03552) strlen("OS_dispatch_source_timer_with_aggregate", ) = 39
(78391) (0.03555) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_dispatch_source_timer_with_aggregate", ) = 0
(78391) (0.03559) strlen("OS_dispatch_source_write", ) = 24
(78391) (0.03562) strcmp("OS_dispatch_source_write", "OS_dispatch_source_write", ) = 0
(78391) (0.03567) strcmp("OS_dispatch_object", "OS_dispatch_source_vnode", ) = -4
(78391) (0.03571) strlen("OS_dispatch_source_vnode", ) = 24
(78391) (0.03574) strcmp("OS_dispatch_source_vnode", "OS_dispatch_source_vnode", ) = 0
(78391) (0.03579) strcmp("OS_dispatch_object", "OS_dispatch_source_vnode", ) = -4
(78391) (0.03583) strlen("OS_dispatch_source_timer", ) = 24
(78391) (0.03586) strcmp("OS_dispatch_source_timer", "OS_dispatch_source_timer", ) = 0
(78391) (0.03591) strlen("OS_dispatch_source_signal", ) = 25
(78391) (0.03594) strcmp("OS_dispatch_source_signal", "OS_dispatch_source_signal", ) = 0
(78391) (0.03598) strlen("OS_dispatch_source_read", ) = 23
(78391) (0.03602) strcmp("OS_dispatch_source_read", "OS_dispatch_source_read", ) = 0
(78391) (0.03606) strlen("OS_dispatch_source_proc", ) = 23
(78391) (0.03609) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_proc", ) = 0
(78391) (0.03614) strlen("OS_dispatch_source_memorypressure", ) = 33
(78391) (0.03617) strcmp("OS_dispatch_source_memorypressure", "OS_dispatch_source_memorypressure", ) = 0
(78391) (0.03620) strcmp("OS_dispatch_source_interval", "OS_dispatch_source_mach_recv", ) = -4
(78391) (0.03624) strlen("OS_dispatch_source_mach_recv", ) = 28
(78391) (0.03627) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_source_mach_recv", ) = 0
(78391) (0.03630) strcmp("OS_dispatch_source_interval", "OS_dispatch_source_mach_recv", ) = -4
(78391) (0.03634) strlen("OS_dispatch_source_mach_send", ) = 28
(78391) (0.03637) strcmp("OS_dispatch_source_mach_send", "OS_dispatch_source_mach_send", ) = 0
(78391) (0.03641) strcmp("OS_object", "OS_dispatch_source_data_or", ) = 11
(78391) (0.03645) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_data_or", ) = 12
(78391) (0.03648) strlen("OS_dispatch_source_data_or", ) = 26
(78391) (0.03651) strcmp("OS_dispatch_source_data_or", "OS_dispatch_source_data_or", ) = 0
(78391) (0.03655) strcmp("OS_object", "OS_dispatch_source_data_or", ) = 11
(78391) (0.03658) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_data_or", ) = 12
(78391) (0.03662) strcmp("OS_object", "OS_dispatch_source_data_add", ) = 11
(78391) (0.03665) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_data_add", ) = 12
(78391) (0.03670) strcmp("OS_dispatch_source_data_or", "OS_dispatch_source_data_add", ) = 14
(78391) (0.03674) strlen("OS_dispatch_source_data_add", ) = 27
(78391) (0.03677) strcmp("OS_dispatch_source_data_add", "OS_dispatch_source_data_add", ) = 0
(78391) (0.03681) strcmp("OS_object", "OS_dispatch_source_data_add", ) = 11
(78391) (0.03685) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_data_add", ) = 12
(78391) (0.03689) strcmp("OS_dispatch_source_data_or", "OS_dispatch_source_data_add", ) = 14
(78391) (0.03693) strcmp("OS_dispatch_queue", "OS_dispatch_mach", ) = 4
(78391) (0.03697) strcmp("OS_dispatch_source_signal", "OS_dispatch_mach", ) = 6
(78391) (0.03701) strcmp("OS_object", "OS_dispatch_mach", ) = 11
(78391) (0.03705) strcmp("OS_dispatch_source_proc", "OS_dispatch_mach", ) = 6
(78391) (0.03709) strcmp("OS_dispatch_source_data_or", "OS_dispatch_mach", ) = 6
(78391) (0.03712) strcmp("OS_dispatch_source_data_add", "OS_dispatch_mach", ) = 6
(78391) (0.03717) strlen("OS_dispatch_mach", ) = 16
(78391) (0.03720) strcmp("OS_dispatch_mach", "OS_dispatch_mach", ) = 0
(78391) (0.03723) strcmp("OS_dispatch_queue", "OS_dispatch_mach", ) = 4
(78391) (0.03727) strcmp("OS_dispatch_source_signal", "OS_dispatch_mach", ) = 6
(78391) (0.03731) strcmp("OS_object", "OS_dispatch_mach", ) = 11
(78391) (0.03735) strcmp("OS_dispatch_source_proc", "OS_dispatch_mach", ) = 6
(78391) (0.03739) strcmp("OS_dispatch_source_data_or", "OS_dispatch_mach", ) = 6
(78391) (0.03743) strcmp("OS_dispatch_source_data_add", "OS_dispatch_mach", ) = 6
(78391) (0.03747) strcmp("OS_dispatch_source_data_or", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.03751) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.03755) strcmp("OS_dispatch_mach", "OS_dispatch_queue_runloop", ) = -4
(78391) (0.03759) strcmp("OS_dispatch_source", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.03763) strlen("OS_dispatch_queue_runloop", ) = 25
(78391) (0.03766) strcmp("OS_dispatch_queue_runloop", "OS_dispatch_queue_runloop", ) = 0
(78391) (0.03771) strcmp("OS_dispatch_source_data_or", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.03775) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.03779) strcmp("OS_dispatch_mach", "OS_dispatch_queue_runloop", ) = -4
(78391) (0.03782) strcmp("OS_dispatch_source", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.03787) strcmp("OS_dispatch_source_read", "OS_dispatch_semaphore", ) = 10
(78391) (0.03790) strlen("OS_dispatch_semaphore", ) = 21
(78391) (0.03793) strcmp("OS_dispatch_semaphore", "OS_dispatch_semaphore", ) = 0
(78391) (0.03798) strcmp("OS_dispatch_source_read", "OS_dispatch_semaphore", ) = 10
(78391) (0.03802) strcmp("OS_dispatch_source_vnode", "OS_dispatch_group", ) = 12
(78391) (0.03806) strlen("OS_dispatch_group", ) = 17
(78391) (0.03809) strcmp("OS_dispatch_group", "OS_dispatch_group", ) = 0
(78391) (0.03813) strcmp("OS_dispatch_source_vnode", "OS_dispatch_group", ) = 12
(78391) (0.03817) strcmp("OS_dispatch_source_interval", "OS_dispatch_queue_serial", ) = 2
(78391) (0.03821) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_queue_serial", ) = 2
(78391) (0.03825) strlen("OS_dispatch_queue_serial", ) = 24
(78391) (0.03828) strcmp("OS_dispatch_queue_serial", "OS_dispatch_queue_serial", ) = 0
(78391) (0.03832) strcmp("OS_dispatch_source_interval", "OS_dispatch_queue_serial", ) = 2
(78391) (0.03836) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_queue_serial", ) = 2
(78391) (0.03840) strcmp("OS_dispatch_queue_serial", "OS_dispatch_queue_concurrent", ) = 16
(78391) (0.03844) strcmp("OS_dispatch_source_mach_send", "OS_dispatch_queue_concurrent", ) = 2
(78391) (0.03847) strlen("OS_dispatch_queue_concurrent", ) = 28
(78391) (0.03850) strcmp("OS_dispatch_queue_concurrent", "OS_dispatch_queue_concurrent", ) = 0
(78391) (0.03855) strcmp("OS_dispatch_queue_serial", "OS_dispatch_queue_concurrent", ) = 16
(78391) (0.03858) strcmp("OS_dispatch_source_mach_send", "OS_dispatch_queue_concurrent", ) = 2
(78391) (0.03862) strcmp("OS_dispatch_source_data_or", "OS_dispatch_queue_main", ) = 2
(78391) (0.03866) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_main", ) = 2
(78391) (0.03870) strcmp("OS_dispatch_mach", "OS_dispatch_queue_main", ) = -4
(78391) (0.03874) strcmp("OS_dispatch_source", "OS_dispatch_queue_main", ) = 2
(78391) (0.03878) strcmp("OS_dispatch_queue_runloop", "OS_dispatch_queue_main", ) = 5
(78391) (0.03882) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_dispatch_queue_main", ) = 2
(78391) (0.03886) strcmp("OS_dispatch_source_read", "OS_dispatch_queue_main", ) = 2
(78391) (0.03890) strcmp("OS_dispatch_semaphore", "OS_dispatch_queue_main", ) = 2
(78391) (0.03894) strlen("OS_dispatch_queue_main", ) = 22
(78391) (0.03897) strcmp("OS_dispatch_queue_main", "OS_dispatch_queue_main", ) = 0
(78391) (0.03901) strcmp("OS_dispatch_source_data_or", "OS_dispatch_queue_main", ) = 2
(78391) (0.03906) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_main", ) = 2
(78391) (0.03909) strcmp("OS_dispatch_mach", "OS_dispatch_queue_main", ) = -4
(78391) (0.03913) strcmp("OS_dispatch_source", "OS_dispatch_queue_main", ) = 2
(78391) (0.03917) strcmp("OS_dispatch_queue_runloop", "OS_dispatch_queue_main", ) = 5
(78391) (0.03921) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_dispatch_queue_main", ) = 2
(78391) (0.03925) strcmp("OS_dispatch_source_read", "OS_dispatch_queue_main", ) = 2
(78391) (0.03929) strcmp("OS_dispatch_semaphore", "OS_dispatch_queue_main", ) = 2
(78391) (0.03935) strcmp("OS_object", "OS_dispatch_source_data_or", ) = 11
(78391) (0.03939) strcmp("OS_object", "OS_dispatch_source_data_add", ) = 11
(78391) (0.03943) strcmp("OS_dispatch_source_data_or", "OS_dispatch_source_data_add", ) = 14
(78391) (0.03947) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_data_add", ) = 12
(78391) (0.03951) strcmp("OS_dispatch_queue", "OS_dispatch_mach", ) = 4
(78391) (0.03955) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.03959) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_main", ) = 2
(78391) (0.03963) strcmp("OS_dispatch_queue_runloop", "OS_dispatch_queue_main", ) = 5
(78391) (0.03967) strcmp("OS_dispatch_source_interval", "OS_dispatch_queue_serial", ) = 2
(78391) (0.03971) free(0x7fff4bf00020, )
(78391) (0.03973) strlen("OS_dispatch_queue_root", ) = 22
(78391) (0.03976) strcmp("OS_dispatch_queue_root", "OS_dispatch_queue_root", ) = 0
(78391) (0.03980) strlen("OS_dispatch_queue_mgr", ) = 21
(78391) (0.03983) strcmp("OS_dispatch_queue_mgr", "OS_dispatch_queue_mgr", ) = 0
(78391) (0.03987) strlen("OS_dispatch_queue_attr", ) = 22
(78391) (0.03990) strcmp("OS_dispatch_queue_attr", "OS_dispatch_queue_attr", ) = 0
(78391) (0.03994) strlen("OS_dispatch_mach_msg", ) = 20
(78391) (0.03997) strcmp("OS_dispatch_mach_msg", "OS_dispatch_mach_msg", ) = 0
(78391) (0.04001) strlen("OS_dispatch_io", ) = 14
(78391) (0.04004) strcmp("OS_dispatch_io", "OS_dispatch_io", ) = 0
(78391) (0.04008) strcmp("OS_dispatch_source_mach_send", "OS_dispatch_operation", ) = 4
(78391) (0.04012) strlen("OS_dispatch_operation", ) = 21
(78391) (0.04015) strcmp("OS_dispatch_operation", "OS_dispatch_operation", ) = 0
(78391) (0.04020) strcmp("OS_dispatch_source_mach_send", "OS_dispatch_operation", ) = 4
(78391) (0.04024) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_disk", ) = 15
(78391) (0.04028) strlen("OS_dispatch_disk", ) = 16
(78391) (0.04031) strcmp("OS_dispatch_disk", "OS_dispatch_disk", ) = 0
(78391) (0.04035) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_disk", ) = 15
(78391) (0.04039) strcmp("OS_dispatch_mach", "OS_dispatch_data", ) = 9
(78391) (0.04042) strlen("OS_dispatch_data", ) = 16
(78391) (0.04045) strcmp("OS_dispatch_data", "OS_dispatch_data", ) = 0
(78391) (0.04050) strcmp("OS_dispatch_mach", "OS_dispatch_data", ) = 9
(78391) (0.04053) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.04057) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.04062) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.04066) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.04071) strncmp("__got", "__objc_protolist", 16, ) = -8
(78391) (0.04075) strncmp("__nl_symbol_ptr", "__objc_protolist", 16, ) = -1
(78391) (0.04080) strncmp("__la_symbol_ptr", "__objc_protolist", 16, ) = -3
(78391) (0.04084) strncmp("__const", "__objc_protolist", 16, ) = -12
(78391) (0.04089) strncmp("__objc_classlist[SNIP]", "__objc_protolist", 16, ) = -13
(78391) (0.04094) strncmp("__objc_nlclslist[SNIP]", "__objc_protolist", 16, ) = -2
(78391) (0.04098) strncmp("__objc_protolist[SNIP]", "__objc_protolist", 16, ) = 0
(78391) (0.04103) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.04108) strcmp("NSObject", "NSObject", ) = 0
(78391) (0.04112) strcmp("OS_dispatch_source_read", "OS_xpc_object", ) = -20
(78391) (0.04116) strlen("OS_xpc_object", ) = 13
(78391) (0.04119) strcmp("OS_xpc_object", "OS_xpc_object", ) = 0
(78391) (0.04123) strcmp("OS_dispatch_source_read", "OS_xpc_object", ) = -20
(78391) (0.04127) strlen("OS_xpc_connection", ) = 17
(78391) (0.04130) strcmp("OS_xpc_connection", "OS_xpc_connection", ) = 0
(78391) (0.04135) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_service", ) = -20
(78391) (0.04139) strcmp("OS_dispatch_disk", "OS_xpc_service", ) = -20
(78391) (0.04143) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_service", ) = -20
(78391) (0.04148) strcmp("OS_dispatch_source_mach_send", "OS_xpc_service", ) = -20
(78391) (0.04152) strcmp("OS_dispatch_operation", "OS_xpc_service", ) = -20
(78391) (0.04156) strlen("OS_xpc_service", ) = 14
(78391) (0.04160) strcmp("OS_xpc_service", "OS_xpc_service", ) = 0
(78391) (0.04165) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_service", ) = -20
(78391) (0.04169) strcmp("OS_dispatch_disk", "OS_xpc_service", ) = -20
(78391) (0.04173) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_service", ) = -20
(78391) (0.04178) strcmp("OS_dispatch_source_mach_send", "OS_xpc_service", ) = -20
(78391) (0.04182) strcmp("OS_dispatch_operation", "OS_xpc_service", ) = -20 [took: 0.00018]
(78391) (0.04201) strcmp("OS_dispatch_queue_runloop", "OS_xpc_null", ) = -20
(78391) (0.04206) strcmp("OS_dispatch_queue_main", "OS_xpc_null", ) = -20
(78391) (0.04210) strcmp("OS_dispatch_queue_root", "OS_xpc_null", ) = -20
(78391) (0.04215) strcmp("OS_dispatch_queue_attr", "OS_xpc_null", ) = -20
(78391) (0.04219) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_xpc_null", ) = -20
(78391) (0.04223) strcmp("OS_dispatch_semaphore", "OS_xpc_null", ) = -20
(78391) (0.04228) strlen("OS_xpc_null", ) = 11
(78391) (0.04231) strcmp("OS_xpc_null", "OS_xpc_null", ) = 0
(78391) (0.04235) strcmp("OS_dispatch_queue_runloop", "OS_xpc_null", ) = -20
(78391) (0.04240) strcmp("OS_dispatch_queue_main", "OS_xpc_null", ) = -20
(78391) (0.04244) strcmp("OS_dispatch_queue_root", "OS_xpc_null", ) = -20
(78391) (0.04248) strcmp("OS_dispatch_queue_attr", "OS_xpc_null", ) = -20
(78391) (0.04253) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_xpc_null", ) = -20
(78391) (0.04257) strcmp("OS_dispatch_semaphore", "OS_xpc_null", ) = -20
(78391) (0.04261) strcmp("OS_object", "OS_xpc_bool", ) = -9
(78391) (0.04266) strcmp("OS_dispatch_source_data_or", "OS_xpc_bool", ) = -20
(78391) (0.04270) strcmp("OS_dispatch_source_proc", "OS_xpc_bool", ) = -20
(78391) (0.04274) strcmp("OS_dispatch_source_data_add", "OS_xpc_bool", ) = -20
(78391) (0.04279) strcmp("OS_dispatch_queue_runloop", "OS_xpc_bool", ) = -20
(78391) (0.04283) strcmp("OS_dispatch_queue_main", "OS_xpc_bool", ) = -20
(78391) (0.04287) strcmp("OS_dispatch_queue_root", "OS_xpc_bool", ) = -20
(78391) (0.04292) strcmp("OS_dispatch_queue_attr", "OS_xpc_bool", ) = -20
(78391) (0.04296) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_xpc_bool", ) = -20
(78391) (0.04300) strcmp("OS_dispatch_semaphore", "OS_xpc_bool", ) = -20
(78391) (0.04305) strcmp("OS_xpc_null", "OS_xpc_bool", ) = 12
(78391) (0.04309) strcmp("OS_xpc_connection", "OS_xpc_bool", ) = 1
(78391) (0.04313) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_bool", ) = -20
(78391) (0.04318) strcmp("OS_dispatch_disk", "OS_xpc_bool", ) = -20
(78391) (0.04322) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_bool", ) = -20
(78391) (0.04326) strcmp("OS_dispatch_source_mach_send", "OS_xpc_bool", ) = -20
(78391) (0.04330) strcmp("OS_dispatch_operation", "OS_xpc_bool", ) = -20
(78391) (0.04335) strcmp("OS_xpc_service", "OS_xpc_bool", ) = 17
(78391) (0.04339) strcmp("OS_dispatch_source_timer", "OS_xpc_bool", ) = -20
(78391) (0.04344) strlen("OS_xpc_bool", ) = 11
(78391) (0.04347) strcmp("OS_xpc_bool", "OS_xpc_bool", ) = 0
(78391) (0.04352) strcmp("OS_object", "OS_xpc_bool", ) = -9
(78391) (0.04356) strcmp("OS_dispatch_source_data_or", "OS_xpc_bool", ) = -20
(78391) (0.04360) strcmp("OS_dispatch_source_proc", "OS_xpc_bool", ) = -20
(78391) (0.04364) strcmp("OS_dispatch_source_data_add", "OS_xpc_bool", ) = -20
(78391) (0.04369) strcmp("OS_dispatch_queue_runloop", "OS_xpc_bool", ) = -20
(78391) (0.04373) strcmp("OS_dispatch_queue_main", "OS_xpc_bool", ) = -20
(78391) (0.04377) strcmp("OS_dispatch_queue_root", "OS_xpc_bool", ) = -20
(78391) (0.04382) strcmp("OS_dispatch_queue_attr", "OS_xpc_bool", ) = -20
(78391) (0.04386) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_xpc_bool", ) = -20
(78391) (0.04391) strcmp("OS_dispatch_semaphore", "OS_xpc_bool", ) = -20
(78391) (0.04395) strcmp("OS_xpc_null", "OS_xpc_bool", ) = 12
(78391) (0.04399) strcmp("OS_xpc_connection", "OS_xpc_bool", ) = 1
(78391) (0.04404) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_bool", ) = -20
(78391) (0.04408) strcmp("OS_dispatch_disk", "OS_xpc_bool", ) = -20
(78391) (0.04412) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_bool", ) = -20
(78391) (0.04417) strcmp("OS_dispatch_source_mach_send", "OS_xpc_bool", ) = -20
(78391) (0.04421) strcmp("OS_dispatch_operation", "OS_xpc_bool", ) = -20
(78391) (0.04425) strcmp("OS_xpc_service", "OS_xpc_bool", ) = 17
(78391) (0.04429) strcmp("OS_dispatch_source_timer", "OS_xpc_bool", ) = -20
(78391) (0.04433) strlen("OS_xpc_int64", ) = 12
(78391) (0.04436) strcmp("OS_xpc_int64", "OS_xpc_int64", ) = 0
(78391) (0.04441) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uint64", ) = -20
(78391) (0.04445) strcmp("OS_dispatch_disk", "OS_xpc_uint64", ) = -20
(78391) (0.04450) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_uint64", ) = -20
(78391) (0.04454) strcmp("OS_dispatch_source_mach_send", "OS_xpc_uint64", ) = -20
(78391) (0.04458) strcmp("OS_dispatch_operation", "OS_xpc_uint64", ) = -20
(78391) (0.04462) strcmp("OS_xpc_service", "OS_xpc_uint64", ) = -2
(78391) (0.04467) strcmp("OS_dispatch_source_timer", "OS_xpc_uint64", ) = -20
(78391) (0.04471) strcmp("OS_xpc_bool", "OS_xpc_uint64", ) = -19
(78391) (0.04476) strlen("OS_xpc_uint64", ) = 13
(78391) (0.04479) strcmp("OS_xpc_uint64", "OS_xpc_uint64", ) = 0
(78391) (0.04484) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uint64", ) = -20
(78391) (0.04488) strcmp("OS_dispatch_disk", "OS_xpc_uint64", ) = -20
(78391) (0.04492) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_uint64", ) = -20
(78391) (0.04496) strcmp("OS_dispatch_source_mach_send", "OS_xpc_uint64", ) = -20
(78391) (0.04501) strcmp("OS_dispatch_operation", "OS_xpc_uint64", ) = -20
(78391) (0.04505) strcmp("OS_xpc_service", "OS_xpc_uint64", ) = -2
(78391) (0.04509) strcmp("OS_dispatch_source_timer", "OS_xpc_uint64", ) = -20
(78391) (0.04514) strcmp("OS_xpc_bool", "OS_xpc_uint64", ) = -19
(78391) (0.04518) strcmp("OS_dispatch_operation", "OS_xpc_double", ) = -20
(78391) (0.04523) strcmp("OS_xpc_service", "OS_xpc_double", ) = 15
(78391) (0.04527) strcmp("OS_dispatch_source_timer", "OS_xpc_double", ) = -20
(78391) (0.04531) strcmp("OS_xpc_bool", "OS_xpc_double", ) = -2
(78391) (0.04536) strcmp("OS_xpc_uint64", "OS_xpc_double", ) = 17
(78391) (0.04540) strcmp("OS_dispatch_object", "OS_xpc_double", ) = -20
(78391) (0.04544) strcmp("OS_dispatch_group", "OS_xpc_double", ) = -20
(78391) (0.04549) strlen("OS_xpc_double", ) = 13
(78391) (0.04552) strcmp("OS_xpc_double", "OS_xpc_double", ) = 0
(78391) (0.04557) strcmp("OS_dispatch_operation", "OS_xpc_double", ) = -20
(78391) (0.04561) strcmp("OS_xpc_service", "OS_xpc_double", ) = 15
(78391) (0.04566) strcmp("OS_dispatch_source_timer", "OS_xpc_double", ) = -20
(78391) (0.04570) strcmp("OS_xpc_bool", "OS_xpc_double", ) = -2
(78391) (0.04574) strcmp("OS_xpc_uint64", "OS_xpc_double", ) = 17
(78391) (0.04579) strcmp("OS_dispatch_object", "OS_xpc_double", ) = -20
(78391) (0.04583) strcmp("OS_dispatch_group", "OS_xpc_double", ) = -20
(78391) (0.04588) strcmp("OS_xpc_uint64", "OS_xpc_pointer", ) = 5
(78391) (0.04592) strcmp("OS_dispatch_object", "OS_xpc_pointer", ) = -20
(78391) (0.04596) strcmp("OS_dispatch_group", "OS_xpc_pointer", ) = -20
(78391) (0.04600) strcmp("OS_xpc_double", "OS_xpc_pointer", ) = -12
(78391) (0.04605) strlen("OS_xpc_pointer", ) = 14
(78391) (0.04608) strcmp("OS_xpc_pointer", "OS_xpc_pointer", ) = 0
(78391) (0.04613) strcmp("OS_xpc_uint64", "OS_xpc_pointer", ) = 5
(78391) (0.04617) strcmp("OS_dispatch_object", "OS_xpc_pointer", ) = -20
(78391) (0.04622) strcmp("OS_dispatch_group", "OS_xpc_pointer", ) = -20
(78391) (0.04626) strcmp("OS_xpc_double", "OS_xpc_pointer", ) = -12
(78391) (0.04630) strlen("OS_xpc_date", ) = 11
(78391) (0.04634) strcmp("OS_xpc_date", "OS_xpc_date", ) = 0
(78391) (0.04639) strcmp("OS_dispatch_data", "OS_xpc_data", ) = -20
(78391) (0.04643) strlen("OS_xpc_data", ) = 11
(78391) (0.04646) strcmp("OS_xpc_data", "OS_xpc_data", ) = 0
(78391) (0.04651) strcmp("OS_dispatch_data", "OS_xpc_data", ) = -20
(78391) (0.04655) strcmp("OS_dispatch_object", "OS_xpc_string", ) = -20
(78391) (0.04659) strcmp("OS_dispatch_group", "OS_xpc_string", ) = -20
(78391) (0.04664) strcmp("OS_xpc_double", "OS_xpc_string", ) = -15
(78391) (0.04668) strcmp("OS_xpc_pointer", "OS_xpc_string", ) = -3
(78391) (0.04673) strlen("OS_xpc_string", ) = 13
(78391) (0.04676) strcmp("OS_xpc_string", "OS_xpc_string", ) = 0
(78391) (0.04680) strcmp("OS_dispatch_object", "OS_xpc_string", ) = -20
(78391) (0.04685) strcmp("OS_dispatch_group", "OS_xpc_string", ) = -20
(78391) (0.04689) strcmp("OS_xpc_double", "OS_xpc_string", ) = -15 [took: 0.00014]
(78391) (0.04704) strcmp("OS_xpc_pointer", "OS_xpc_string", ) = -3
(78391) (0.04708) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uuid", ) = -20
(78391) (0.04713) strcmp("OS_dispatch_disk", "OS_xpc_uuid", ) = -20
(78391) (0.04717) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_uuid", ) = -20
(78391) (0.04721) strcmp("OS_dispatch_source_mach_send", "OS_xpc_uuid", ) = -20
(78391) (0.04726) strcmp("OS_dispatch_operation", "OS_xpc_uuid", ) = -20
(78391) (0.04730) strcmp("OS_xpc_service", "OS_xpc_uuid", ) = -2
(78391) (0.04734) strcmp("OS_dispatch_source_timer", "OS_xpc_uuid", ) = -20
(78391) (0.04738) strcmp("OS_xpc_bool", "OS_xpc_uuid", ) = -19
(78391) (0.04743) strcmp("OS_xpc_uint64", "OS_xpc_uuid", ) = -12
(78391) (0.04747) strcmp("OS_dispatch_object", "OS_xpc_uuid", ) = -20
(78391) (0.04752) strcmp("OS_dispatch_group", "OS_xpc_uuid", ) = -20
(78391) (0.04756) strcmp("OS_xpc_double", "OS_xpc_uuid", ) = -17
(78391) (0.04760) strcmp("OS_xpc_pointer", "OS_xpc_uuid", ) = -5
(78391) (0.04765) strcmp("OS_xpc_string", "OS_xpc_uuid", ) = -2
(78391) (0.04769) strlen("OS_xpc_uuid", ) = 11
(78391) (0.04772) strcmp("OS_xpc_uuid", "OS_xpc_uuid", ) = 0
(78391) (0.04777) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uuid", ) = -20
(78391) (0.04781) strcmp("OS_dispatch_disk", "OS_xpc_uuid", ) = -20
(78391) (0.04785) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_uuid", ) = -20
(78391) (0.04790) strcmp("OS_dispatch_source_mach_send", "OS_xpc_uuid", ) = -20
(78391) (0.04794) strcmp("OS_dispatch_operation", "OS_xpc_uuid", ) = -20
(78391) (0.04799) strcmp("OS_xpc_service", "OS_xpc_uuid", ) = -2
(78391) (0.04803) strcmp("OS_dispatch_source_timer", "OS_xpc_uuid", ) = -20
(78391) (0.04807) strcmp("OS_xpc_bool", "OS_xpc_uuid", ) = -19
(78391) (0.04812) strcmp("OS_xpc_uint64", "OS_xpc_uuid", ) = -12
(78391) (0.04816) strcmp("OS_dispatch_object", "OS_xpc_uuid", ) = -20
(78391) (0.04820) strcmp("OS_dispatch_group", "OS_xpc_uuid", ) = -20
(78391) (0.04824) strcmp("OS_xpc_double", "OS_xpc_uuid", ) = -17
(78391) (0.04829) strcmp("OS_xpc_pointer", "OS_xpc_uuid", ) = -5
(78391) (0.04833) strcmp("OS_xpc_string", "OS_xpc_uuid", ) = -2
(78391) (0.04837) strlen("OS_xpc_fd", ) = 9
(78391) (0.04841) strcmp("OS_xpc_fd", "OS_xpc_fd", ) = 0
(78391) (0.04845) strcmp("OS_xpc_date", "OS_xpc_shmem", ) = -15
(78391) (0.04849) strcmp("OS_dispatch_queue", "OS_xpc_shmem", ) = -20
(78391) (0.04854) strcmp("OS_dispatch_mach", "OS_xpc_shmem", ) = -20
(78391) (0.04858) strcmp("OS_dispatch_data", "OS_xpc_shmem", ) = -20
(78391) (0.04863) strcmp("OS_xpc_data", "OS_xpc_shmem", ) = -15
(78391) (0.04867) strlen("OS_xpc_shmem", ) = 12
(78391) (0.04870) strcmp("OS_xpc_shmem", "OS_xpc_shmem", ) = 0
(78391) (0.04875) strcmp("OS_xpc_date", "OS_xpc_shmem", ) = -15
(78391) (0.04879) strcmp("OS_dispatch_queue", "OS_xpc_shmem", ) = -20
(78391) (0.04884) strcmp("OS_dispatch_mach", "OS_xpc_shmem", ) = -20
(78391) (0.04888) strcmp("OS_dispatch_data", "OS_xpc_shmem", ) = -20
(78391) (0.04893) strcmp("OS_xpc_data", "OS_xpc_shmem", ) = -15
(78391) (0.04897) strlen("OS_xpc_mach_send", ) = 16
(78391) (0.04901) strcmp("OS_xpc_mach_send", "OS_xpc_mach_send", ) = 0
(78391) (0.04906) strcmp("OS_object", "OS_dispatch_source_data_or", ) = 11
(78391) (0.04910) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_disk", ) = 15
(78391) (0.04914) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_service", ) = -20
(78391) (0.04919) strcmp("OS_dispatch_disk", "OS_xpc_service", ) = -20
(78391) (0.04923) strcmp("OS_dispatch_source_data_add", "OS_xpc_bool", ) = -20
(78391) (0.04927) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uint64", ) = -20
(78391) (0.04932) strcmp("OS_dispatch_disk", "OS_xpc_uint64", ) = -20
(78391) (0.04936) strcmp("OS_xpc_service", "OS_xpc_uint64", ) = -2
(78391) (0.04940) strcmp("OS_dispatch_operation", "OS_xpc_uint64", ) = -20
(78391) (0.04945) strcmp("OS_xpc_uint64", "OS_xpc_double", ) = 17
(78391) (0.04949) strcmp("OS_dispatch_object", "OS_xpc_string", ) = -20
(78391) (0.04953) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uuid", ) = -20
(78391) (0.04958) strcmp("OS_dispatch_disk", "OS_xpc_uuid", ) = -20
(78391) (0.04962) strcmp("OS_xpc_service", "OS_xpc_uuid", ) = -2
(78391) (0.04967) strcmp("OS_dispatch_operation", "OS_xpc_uuid", ) = -20
(78391) (0.04971) strcmp("OS_xpc_uint64", "OS_xpc_uuid", ) = -12
(78391) (0.04975) strcmp("OS_xpc_double", "OS_xpc_uuid", ) = -17
(78391) (0.04980) strcmp("OS_dispatch_source_timer", "OS_xpc_uuid", ) = -20
(78391) (0.04984) strcmp("OS_xpc_date", "OS_xpc_shmem", ) = -15
(78391) (0.04988) strcmp("OS_dispatch_queue", "OS_xpc_shmem", ) = -20
(78391) (0.04993) strcmp("OS_dispatch_data", "OS_xpc_shmem", ) = -20
(78391) (0.04997) free(0x7fff51000000, )
(78391) (0.04999) strlen("OS_xpc_array", ) = 12
(78391) (0.05003) strcmp("OS_xpc_array", "OS_xpc_array", ) = 0
(78391) (0.05007) strcmp("OS_dispatch_source_memorypressure", "OS_xpc_dictionary", ) = -20
(78391) (0.05011) strlen("OS_xpc_dictionary", ) = 17
(78391) (0.05015) strcmp("OS_xpc_dictionary", "OS_xpc_dictionary", ) = 0
(78391) (0.05019) strcmp("OS_dispatch_source_memorypressure", "OS_xpc_dictionary", ) = -20
(78391) (0.05023) strcmp("OS_dispatch_queue_runloop", "OS_xpc_error", ) = -20
(78391) (0.05028) strlen("OS_xpc_error", ) = 12
(78391) (0.05031) strcmp("OS_xpc_error", "OS_xpc_error", ) = 0
(78391) (0.05036) strcmp("OS_dispatch_queue_runloop", "OS_xpc_error", ) = -20
(78391) (0.05040) strlen("OS_xpc_endpoint", ) = 15
(78391) (0.05043) strcmp("OS_xpc_endpoint", "OS_xpc_endpoint", ) = 0
(78391) (0.05048) strlen("OS_xpc_serializer", ) = 17
(78391) (0.05051) strcmp("OS_xpc_serializer", "OS_xpc_serializer", ) = 0
(78391) (0.05055) strlen("OS_xpc_pipe", ) = 11
(78391) (0.05059) strcmp("OS_xpc_pipe", "OS_xpc_pipe", ) = 0
(78391) (0.05064) strlen("OS_xpc_mach_recv", ) = 16
(78391) (0.05067) strcmp("OS_xpc_mach_recv", "OS_xpc_mach_recv", ) = 0
(78391) (0.05071) strlen("OS_xpc_bundle", ) = 13
(78391) (0.05075) strcmp("OS_xpc_bundle", "OS_xpc_bundle", ) = 0
(78391) (0.05079) strcmp("OS_dispatch_mach", "OS_xpc_service_instance", ) = -20
(78391) (0.05083) strcmp("OS_xpc_serializer", "OS_xpc_service_instance", ) = -13
(78391) (0.05088) strcmp("OS_xpc_data", "OS_xpc_service_instance", ) = -15
(78391) (0.05092) strlen("OS_xpc_service_instance", ) = 23
(78391) (0.05095) strcmp("OS_xpc_service_instance", "OS_xpc_service_instance", ) = 0
(78391) (0.05100) strcmp("OS_dispatch_mach", "OS_xpc_service_instance", ) = -20
(78391) (0.05104) strcmp("OS_xpc_serializer", "OS_xpc_service_instance", ) = -13
(78391) (0.05108) strcmp("OS_xpc_data", "OS_xpc_service_instance", ) = -15
(78391) (0.05113) strlen("OS_xpc_activity", ) = 15
(78391) (0.05116) strcmp("OS_xpc_activity", "OS_xpc_activity", ) = 0
(78391) (0.05121) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05126) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.05130) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05135) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.05140) strncmp("__nl_symbol_ptr", "__objc_protolist", 16, ) = -1
(78391) (0.05145) strncmp("__got", "__objc_protolist", 16, ) = -8
(78391) (0.05150) strncmp("__la_symbol_ptr", "__objc_protolist", 16, ) = -3
(78391) (0.05155) strncmp("__const", "__objc_protolist", 16, ) = -12
(78391) (0.05161) strncmp("__objc_classlist[SNIP]", "__objc_protolist", 16, ) = -13
(78391) (0.05166) strncmp("__objc_nlclslist[SNIP]", "__objc_protolist", 16, ) = -2
(78391) (0.05170) strncmp("__objc_protolist[SNIP]", "__objc_protolist", 16, ) = 0
(78391) (0.05176) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.05181) strcmp("OS_dispatch_source_mach_send", "OSLogCoder", ) = 19
(78391) (0.05186) strlen("OSLogCoder", ) = 10
(78391) (0.05189) strcmp("OSLogCoder", "OSLogCoder", ) = 0
(78391) (0.05194) strcmp("OS_dispatch_source_mach_send", "OSLogCoder", ) = 19
(78391) (0.05198) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05203) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.05211) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05216) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.05221) strncmp("__got", "__objc_protolist", 16, ) = -8
(78391) (0.05226) strncmp("__nl_symbol_ptr", "__objc_protolist", 16, ) = -1
(78391) (0.05231) strncmp("__la_symbol_ptr", "__objc_protolist", 16, ) = -3
(78391) (0.05236) strncmp("__const", "__objc_protolist", 16, ) = -12
(78391) (0.05241) strncmp("__objc_classlist[SNIP]", "__objc_protolist", 16, ) = -13
(78391) (0.05246) strncmp("__objc_protolist[SNIP]", "__objc_protolist", 16, ) = 0
(78391) (0.05251) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.05257) strcmp("NSObject", "NSObject", ) = 0
(78391) (0.05261) strcmp("OS_xpc_data", "OS_nw_resolver", ) = 10
(78391) (0.05266) strcmp("OS_xpc_service_instance", "OS_nw_resolver", ) = 10
(78391) (0.05270) strlen("OS_nw_resolver", ) = 14
(78391) (0.05273) strcmp("OS_nw_resolver", "OS_nw_resolver", ) = 0
(78391) (0.05278) strcmp("OS_xpc_data", "OS_nw_resolver", ) = 10
(78391) (0.05282) strcmp("OS_xpc_service_instance", "OS_nw_resolver", ) = 10
(78391) (0.05287) strlen("OS_nw_fd_wrapper", ) = 16
(78391) (0.05290) strcmp("OS_nw_fd_wrapper", "OS_nw_fd_wrapper", ) = 0
(78391) (0.05294) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05299) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.05304) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05308) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.05313) strncmp("__got", "__objc_protolist", 16, ) = -8
(78391) (0.05318) strncmp("__nl_symbol_ptr", "__objc_protolist", 16, ) = -1
(78391) (0.05323) strncmp("__la_symbol_ptr", "__objc_protolist", 16, ) = -3
(78391) (0.05328) strncmp("__objc_init_func[SNIP]", "__objc_protolist", 16, ) = -7
(78391) (0.05333) strncmp("__const", "__objc_protolist", 16, ) = -12
(78391) (0.05339) strncmp("__objc_classlist[SNIP]", "__objc_protolist", 16, ) = -13
(78391) (0.05343) strncmp("__objc_nlclslist[SNIP]", "__objc_protolist", 16, ) = -2
(78391) (0.05348) strncmp("__objc_protolist[SNIP]", "__objc_protolist", 16, ) = 0
(78391) (0.05353) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.05359) strcmp("NSObject", "NSObject", ) = 0
(78391) (0.05363) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05367) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.05372) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05377) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.05382) strncmp("__got", "__objc_protorefs", 16, ) = -8
(78391) (0.05387) strncmp("__nl_symbol_ptr", "__objc_protorefs", 16, ) = -1
(78391) (0.05392) strncmp("__la_symbol_ptr", "__objc_protorefs", 16, ) = -3
(78391) (0.05397) strncmp("__const", "__objc_protorefs", 16, ) = -12
(78391) (0.05402) strncmp("__objc_classlist[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.05407) strncmp("__objc_nlclslist[SNIP]", "__objc_protorefs", 16, ) = -2
(78391) (0.05412) strncmp("__objc_protolist[SNIP]", "__objc_protorefs", 16, ) = -6
(78391) (0.05417) strncmp("__objc_imageinfo[SNIP]", "__objc_protorefs", 16, ) = -7
(78391) (0.05422) strncmp("__objc_const", "__objc_protorefs", 16, ) = -13
(78391) (0.05427) strncmp("__objc_selrefs", "__objc_protorefs", 16, ) = 3
(78391) (0.05432) strncmp("__objc_classrefs[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.05437) strncmp("__objc_superrefs[SNIP]", "__objc_protorefs", 16, ) = 3
(78391) (0.05442) strncmp("__objc_data", "__objc_protorefs", 16, ) = -12
(78391) (0.05447) strncmp("__data", "__objc_protorefs", 16, ) = -11
(78391) (0.05452) strncmp("__crash_info", "__objc_protorefs", 16, ) = -12
(78391) (0.05457) strncmp("__common", "__objc_protorefs", 16, ) = -12
(78391) (0.05463) strncmp("__bss", "__objc_protorefs", 16, ) = -13
(78391) (0.05468) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.05472) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.05477) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05481) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.05486) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05491) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.05496) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.05500) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.05505) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05509) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.05515) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05519) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.05524) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.05528) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.05533) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05538) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.05543) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05547) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.05552) strncmp("__got", "__objc_protorefs", 16, ) = -8
(78391) (0.05557) strncmp("__nl_symbol_ptr", "__objc_protorefs", 16, ) = -1
(78391) (0.05562) strncmp("__la_symbol_ptr", "__objc_protorefs", 16, ) = -3
(78391) (0.05567) strncmp("__const", "__objc_protorefs", 16, ) = -12
(78391) (0.05572) strncmp("__objc_classlist[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.05578) strncmp("__objc_nlclslist[SNIP]", "__objc_protorefs", 16, ) = -2
(78391) (0.05582) strncmp("__objc_protolist[SNIP]", "__objc_protorefs", 16, ) = -6
(78391) (0.05588) strncmp("__objc_imageinfo[SNIP]", "__objc_protorefs", 16, ) = -7
(78391) (0.05593) strncmp("__objc_const", "__objc_protorefs", 16, ) = -13
(78391) (0.05598) strncmp("__objc_selrefs", "__objc_protorefs", 16, ) = 3
(78391) (0.05603) strncmp("__objc_classrefs[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.05608) strncmp("__objc_superrefs[SNIP]", "__objc_protorefs", 16, ) = 3
(78391) (0.05613) strncmp("__objc_data", "__objc_protorefs", 16, ) = -12
(78391) (0.05618) strncmp("__data", "__objc_protorefs", 16, ) = -11
(78391) (0.05623) strncmp("__crash_info", "__objc_protorefs", 16, ) = -12
(78391) (0.05628) strncmp("__bss", "__objc_protorefs", 16, ) = -13
(78391) (0.05633) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.05637) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.05642) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05647) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.05652) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05656) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.05661) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.05666) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.05671) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05675) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.05680) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05684) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.05689) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.05694) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.05699) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05703) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.05709) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05713) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.05718) strncmp("__nl_symbol_ptr", "__objc_protorefs", 16, ) = -1
(78391) (0.05723) strncmp("__got", "__objc_protorefs", 16, ) = -8
(78391) (0.05728) strncmp("__la_symbol_ptr", "__objc_protorefs", 16, ) = -3
(78391) (0.05733) strncmp("__const", "__objc_protorefs", 16, ) = -12
(78391) (0.05738) strncmp("__objc_classlist[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.05743) strncmp("__objc_nlclslist[SNIP]", "__objc_protorefs", 16, ) = -2
(78391) (0.05748) strncmp("__objc_protolist[SNIP]", "__objc_protorefs", 16, ) = -6
(78391) (0.05758) strncmp("__objc_imageinfo[SNIP]", "__objc_protorefs", 16, ) = -7 [took: 0.00012]
(78391) (0.05771) strncmp("__objc_const", "__objc_protorefs", 16, ) = -13
(78391) (0.05776) strncmp("__objc_selrefs", "__objc_protorefs", 16, ) = 3
(78391) (0.05781) strncmp("__objc_classrefs[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.05786) strncmp("__objc_superrefs[SNIP]", "__objc_protorefs", 16, ) = 3
(78391) (0.05791) strncmp("__objc_ivar", "__objc_protorefs", 16, ) = -7
(78391) (0.05796) strncmp("__objc_data", "__objc_protorefs", 16, ) = -12
(78391) (0.05801) strncmp("__data", "__objc_protorefs", 16, ) = -11 [took: 0.00018]
(78391) (0.05820) strncmp("__crash_info", "__objc_protorefs", 16, ) = -12
(78391) (0.05826) strncmp("__bss", "__objc_protorefs", 16, ) = -13
(78391) (0.05831) strncmp("__common", "__objc_protorefs", 16, ) = -12
(78391) (0.05836) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.05840) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.05846) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05850) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.05855) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05859) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.05864) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.05873) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.05878) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05882) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.05887) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05892) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.05897) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.05901) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.05906) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.05911) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.05915) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.05920) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.05925) strncmp("__got", "__objc_protorefs", 16, ) = -8
(78391) (0.05930) strncmp("__nl_symbol_ptr", "__objc_protorefs", 16, ) = -1
(78391) (0.05935) strncmp("__la_symbol_ptr", "__objc_protorefs", 16, ) = -3
(78391) (0.05940) strncmp("__const", "__objc_protorefs", 16, ) = -12
(78391) (0.05945) strncmp("__objc_classlist[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.05950) strncmp("__objc_protolist[SNIP]", "__objc_protorefs", 16, ) = -6
(78391) (0.05955) strncmp("__objc_imageinfo[SNIP]", "__objc_protorefs", 16, ) = -7
(78391) (0.05960) strncmp("__objc_const", "__objc_protorefs", 16, ) = -13
(78391) (0.05965) strncmp("__objc_selrefs", "__objc_protorefs", 16, ) = 3
(78391) (0.05970) strncmp("__objc_classrefs[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.05975) strncmp("__objc_superrefs[SNIP]", "__objc_protorefs", 16, ) = 3
(78391) (0.05980) strncmp("__objc_ivar", "__objc_protorefs", 16, ) = -7
(78391) (0.05985) strncmp("__objc_data", "__objc_protorefs", 16, ) = -12
(78391) (0.05991) strncmp("__data", "__objc_protorefs", 16, ) = -11
(78391) (0.05996) strncmp("__common", "__objc_protorefs", 16, ) = -12
(78391) (0.06001) strncmp("__bss", "__objc_protorefs", 16, ) = -13
(78391) (0.06006) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.06010) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.06015) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06020) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.06025) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06029) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.06034) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.06038) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.06044) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06048) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.06053) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06057) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.06062) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.06067) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.06072) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06076) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.06081) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06086) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06090) strncmp("__got", "__objc_protorefs", 16, ) = -8
(78391) (0.06096) strncmp("__nl_symbol_ptr", "__objc_protorefs", 16, ) = -1
(78391) (0.06101) strncmp("__la_symbol_ptr", "__objc_protorefs", 16, ) = -3
(78391) (0.06106) strncmp("__objc_init_func[SNIP]", "__objc_protorefs", 16, ) = -7
(78391) (0.06111) strncmp("__const", "__objc_protorefs", 16, ) = -12
(78391) (0.06116) strncmp("__objc_classlist[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.06121) strncmp("__objc_nlclslist[SNIP]", "__objc_protorefs", 16, ) = -2
(78391) (0.06126) strncmp("__objc_protolist[SNIP]", "__objc_protorefs", 16, ) = -6
(78391) (0.06131) strncmp("__objc_imageinfo[SNIP]", "__objc_protorefs", 16, ) = -7
(78391) (0.06136) strncmp("__objc_const", "__objc_protorefs", 16, ) = -13
(78391) (0.06141) strncmp("__objc_selrefs", "__objc_protorefs", 16, ) = 3
(78391) (0.06146) strncmp("__objc_ivar", "__objc_protorefs", 16, ) = -7
(78391) (0.06151) strncmp("__objc_data", "__objc_protorefs", 16, ) = -12
(78391) (0.06157) strncmp("__data", "__objc_protorefs", 16, ) = -11
(78391) (0.06162) strncmp("__objc_msg_break[SNIP]", "__objc_protorefs", 16, ) = -3
(78391) (0.06167) strncmp("__objc_opt_rw", "__objc_protorefs", 16, ) = -1
(78391) (0.06172) strncmp("__objc_opt_ptrs", "__objc_protorefs", 16, ) = -1
(78391) (0.06177) strncmp("__crash_info", "__objc_protorefs", 16, ) = -12
(78391) (0.06182) strncmp("__bss", "__objc_protorefs", 16, ) = -13
(78391) (0.06187) strncmp("__common", "__objc_protorefs", 16, ) = -12
(78391) (0.06192) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.06197) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.06202) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06206) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.06211) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06215) strncmp("__DATA", "__DATA_CONST", 16, ) = -95 [took: 0.00026]
(78391) (0.06243) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.06247) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.06252) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06256) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.06261) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06266) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.06271) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.06275) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.06281) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06285) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.06290) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06294) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06299) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.06304) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.06309) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.06314) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.06320) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.06324) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0
(78391) (0.06330) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06335) calloc(64, 1, ) = 0x7fff4bf00020
(78391) (0.06340) calloc(64, 1, ) = 0x7fff4bf00060
(78391) (0.06344) calloc(64, 1, ) = 0x7fff4bf000a0
(78391) (0.06348) calloc(64, 1, ) = 0x7fff4bf000e0
(78391) (0.06352) calloc(64, 1, ) = 0x7fff4bf00120
(78391) (0.06356) malloc(32, ) = 0x7fff4bf00180
(78391) (0.06360) free(0x7fff4bf001a0, )
(78391) (0.06362) free(0x7fff4be00060, )
(78391) (0.06364) free(0x7fff4bf001c0, )
(78391) (0.06367) strcmp("NSObject", "OS_object", ) = -1
(78391) (0.06371) calloc(64, 1, ) = 0x7fff4bf00440
(78391) (0.06375) strcmp("OS_object", "OS_object", ) = 0
(78391) (0.06381) calloc(64, 1, ) = 0x7fff4bf00480
(78391) (0.06385) calloc(64, 1, ) = 0x7fff4bf004c0
(78391) (0.06389) calloc(64, 1, ) = 0x7fff4bf00500
(78391) (0.06393) calloc(64, 1, ) = 0x7fff4bf00540
(78391) (0.06397) calloc(64, 1, ) = 0x7fff4bf00580
(78391) (0.06400) calloc(64, 1, ) = 0x7fff4bf005c0
(78391) (0.06404) calloc(64, 1, ) = 0x7fff4bf00600
(78391) (0.06408) calloc(64, 1, ) = 0x7fff4bf00640
(78391) (0.06412) calloc(64, 1, ) = 0x7fff4bf00680
(78391) (0.06415) calloc(64, 1, ) = 0x7fff4bf006c0
(78391) (0.06419) calloc(64, 1, ) = 0x7fff4bf00700
(78391) (0.06423) calloc(64, 1, ) = 0x7fff4bf00740
(78391) (0.06427) calloc(64, 1, ) = 0x7fff4bf00780
(78391) (0.06431) calloc(64, 1, ) = 0x7fff4bf007c0
(78391) (0.06435) calloc(64, 1, ) = 0x7fff4bf00800
(78391) (0.06438) calloc(64, 1, ) = 0x7fff4bf00840
(78391) (0.06442) calloc(64, 1, ) = 0x7fff4bf00880
(78391) (0.06446) calloc(64, 1, ) = 0x7fff4bf008c0
(78391) (0.06450) calloc(64, 1, ) = 0x7fff4bf00900
(78391) (0.06454) calloc(64, 1, ) = 0x7fff4bf00940
(78391) (0.06457) calloc(64, 1, ) = 0x7fff4bf00980
(78391) (0.06461) calloc(64, 1, ) = 0x7fff4bf009c0
(78391) (0.06465) calloc(64, 1, ) = 0x7fff4bf00a00
(78391) (0.06469) calloc(64, 1, ) = 0x7fff4bf00a40
(78391) (0.06473) calloc(64, 1, ) = 0x7fff4bf00a80
(78391) (0.06476) calloc(64, 1, ) = 0x7fff4bf00ac0
(78391) (0.06480) calloc(64, 1, ) = 0x7fff4bf00b00
(78391) (0.06484) calloc(64, 1, ) = 0x7fff4bf00b40
(78391) (0.06488) calloc(64, 1, ) = 0x7fff4bf00b80
(78391) (0.06491) calloc(64, 1, ) = 0x7fff4bf00bc0
(78391) (0.06495) calloc(64, 1, ) = 0x7fff4bf00c00
(78391) (0.06499) calloc(64, 1, ) = 0x7fff4bf00c40
(78391) (0.06502) calloc(64, 1, ) = 0x7fff4bf00c80
(78391) (0.06506) calloc(64, 1, ) = 0x7fff4bf00cc0
(78391) (0.06510) calloc(64, 1, ) = 0x7fff4bf00d00
(78391) (0.06514) calloc(64, 1, ) = 0x7fff4bf00d40
(78391) (0.06518) calloc(64, 1, ) = 0x7fff4bf00d80
(78391) (0.06521) calloc(64, 1, ) = 0x7fff4bf00dc0
(78391) (0.06525) calloc(64, 1, ) = 0x7fff4bf00e00
(78391) (0.06529) calloc(64, 1, ) = 0x7fff4bf00e40
(78391) (0.06533) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06537) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.06542) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06547) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06552) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.06557) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.06562) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.06567) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.06572) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.06577) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0
(78391) (0.06582) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06587) calloc(64, 1, ) = 0x7fff4bf00e80
(78391) (0.06592) calloc(64, 1, ) = 0x7fff4bf00ec0
(78391) (0.06596) calloc(64, 1, ) = 0x7fff4bf00f00
(78391) (0.06600) calloc(64, 1, ) = 0x7fff4bf00f40
(78391) (0.06604) calloc(64, 1, ) = 0x7fff4bf00f80
(78391) (0.06607) calloc(64, 1, ) = 0x7fff4bf00fc0
(78391) (0.06613) calloc(64, 1, ) = 0x7fff4bf01000
(78391) (0.06617) calloc(64, 1, ) = 0x7fff4bf01040
(78391) (0.06620) calloc(64, 1, ) = 0x7fff4bf01080
(78391) (0.06624) calloc(64, 1, ) = 0x7fff4bf010c0
(78391) (0.06628) calloc(64, 1, ) = 0x7fff4bf01100
(78391) (0.06632) calloc(64, 1, ) = 0x7fff4bf01140
(78391) (0.06635) calloc(64, 1, ) = 0x7fff4bf01180
(78391) (0.06639) calloc(64, 1, ) = 0x7fff4bf011c0
(78391) (0.06643) calloc(64, 1, ) = 0x7fff4bf01200
(78391) (0.06647) calloc(64, 1, ) = 0x7fff4bf01240
(78391) (0.06651) calloc(64, 1, ) = 0x7fff4bf01280
(78391) (0.06654) calloc(64, 1, ) = 0x7fff4bf012c0
(78391) (0.06658) calloc(64, 1, ) = 0x7fff4bf01300
(78391) (0.06662) calloc(64, 1, ) = 0x7fff4bf01340
(78391) (0.06666) calloc(64, 1, ) = 0x7fff4bf01380
(78391) (0.06670) calloc(64, 1, ) = 0x7fff4bf013c0
(78391) (0.06673) calloc(64, 1, ) = 0x7fff4bf01400
(78391) (0.06677) calloc(64, 1, ) = 0x7fff4bf01440
(78391) (0.06681) calloc(64, 1, ) = 0x7fff4bf01480
(78391) (0.06685) calloc(64, 1, ) = 0x7fff4bf014c0
(78391) (0.06689) calloc(64, 1, ) = 0x7fff4bf01500
(78391) (0.06693) calloc(64, 1, ) = 0x7fff4bf01540
(78391) (0.06696) calloc(64, 1, ) = 0x7fff4bf01580
(78391) (0.06700) calloc(64, 1, ) = 0x7fff4bf015c0
(78391) (0.06704) calloc(64, 1, ) = 0x7fff4bf01600
(78391) (0.06708) calloc(64, 1, ) = 0x7fff4bf01640
(78391) (0.06712) calloc(64, 1, ) = 0x7fff4bf01680
(78391) (0.06716) calloc(64, 1, ) = 0x7fff4bf016c0
(78391) (0.06719) calloc(64, 1, ) = 0x7fff4bf01700
(78391) (0.06723) calloc(64, 1, ) = 0x7fff4bf01740
(78391) (0.06727) calloc(64, 1, ) = 0x7fff4bf01780
(78391) (0.06731) calloc(64, 1, ) = 0x7fff4bf017c0
(78391) (0.06735) calloc(64, 1, ) = 0x7fff4bf01800
(78391) (0.06738) calloc(64, 1, ) = 0x7fff4bf01840
(78391) (0.06742) calloc(64, 1, ) = 0x7fff4bf01880
(78391) (0.06746) calloc(64, 1, ) = 0x7fff4bf018c0
(78391) (0.06750) calloc(64, 1, ) = 0x7fff4bf01900
(78391) (0.06753) calloc(64, 1, ) = 0x7fff4bf01940
(78391) (0.06757) calloc(64, 1, ) = 0x7fff4bf01980
(78391) (0.06761) calloc(64, 1, ) = 0x7fff4bf019c0
(78391) (0.06765) calloc(64, 1, ) = 0x7fff4bf01a00
(78391) (0.06769) calloc(64, 1, ) = 0x7fff4bf01a40
(78391) (0.06773) calloc(64, 1, ) = 0x7fff4bf01a80
(78391) (0.06776) calloc(64, 1, ) = 0x7fff4bf01ac0
(78391) (0.06780) calloc(64, 1, ) = 0x7fff4bf01b00
(78391) (0.06784) calloc(64, 1, ) = 0x7fff4bf01b40
(78391) (0.06788) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06792) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.06797) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06802) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06807) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.06812) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.06817) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.06822) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.06827) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.06832) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0
(78391) (0.06837) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06842) calloc(64, 1, ) = 0x7fff4bf01b80
(78391) (0.06847) calloc(64, 1, ) = 0x7fff4bf01bc0
(78391) (0.06851) calloc(64, 1, ) = 0x7fff4bf01c00
(78391) (0.06855) calloc(64, 1, ) = 0x7fff4bf01c40
(78391) (0.06859) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06863) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.06868) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06873) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06877) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.06883) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.06888) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.06893) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.06898) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.06903) strncmp("__objc_protolist[SNIP]", "__objc_nlclslist", 16, ) = 2
(78391) (0.06908) strncmp("__objc_imageinfo[SNIP]", "__objc_nlclslist", 16, ) = -5
(78391) (0.06913) strncmp("__objc_const", "__objc_nlclslist", 16, ) = -11
(78391) (0.06918) strncmp("__objc_selrefs", "__objc_nlclslist", 16, ) = 5
(78391) (0.06923) strncmp("__objc_classrefs[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.06928) strncmp("__objc_superrefs[SNIP]", "__objc_nlclslist", 16, ) = 5
(78391) (0.06933) strncmp("__objc_ivar", "__objc_nlclslist", 16, ) = -5
(78391) (0.06938) strncmp("__objc_data", "__objc_nlclslist", 16, ) = -10
(78391) (0.06943) strncmp("__data", "__objc_nlclslist", 16, ) = -11
(78391) (0.06948) strncmp("__common", "__objc_nlclslist", 16, ) = -12
(78391) (0.06953) strncmp("__bss", "__objc_nlclslist", 16, ) = -13
(78391) (0.06958) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.06962) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.06968) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06972) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.06977) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06981) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.06986) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.06991) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.06996) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07000) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.07005) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07010) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.07015) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07019) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.07024) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07028) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07033) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07038) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07043) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.07048) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.07053) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.07058) strncmp("__objc_init_func[SNIP]", "__objc_nlclslist", 16, ) = -5
(78391) (0.07063) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.07068) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.07073) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0
(78391) (0.07078) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07084) calloc(64, 1, ) = 0x7fff4bf01c80
(78391) (0.07087) calloc(64, 1, ) = 0x7fff4bf01cc0
(78391) (0.07091) calloc(64, 1, ) = 0x7fff4bf01d00
(78391) (0.07095) calloc(64, 1, ) = 0x7fff4bf01d40
(78391) (0.07099) calloc(64, 1, ) = 0x7fff4bf01d80
(78391) (0.07103) calloc(64, 1, ) = 0x7fff4bf01dc0
(78391) (0.07107) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07111) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07116) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07120) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07125) strncmp("__got", "__objc_catlist", 16, ) = -8
(78391) (0.07130) strncmp("__nl_symbol_ptr", "__objc_catlist", 16, ) = -1
(78391) (0.07136) strncmp("__la_symbol_ptr", "__objc_catlist", 16, ) = -3
(78391) (0.07141) strncmp("__const", "__objc_catlist", 16, ) = -12
(78391) (0.07146) strncmp("__objc_classlist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07151) strncmp("__objc_nlclslist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07156) strncmp("__objc_protolist[SNIP]", "__objc_catlist", 16, ) = 13
(78391) (0.07161) strncmp("__objc_imageinfo[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.07166) strncmp("__objc_const", "__objc_catlist", 16, ) = 14
(78391) (0.07171) strncmp("__objc_selrefs", "__objc_catlist", 16, ) = 16
(78391) (0.07176) strncmp("__objc_classrefs[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07181) strncmp("__objc_superrefs[SNIP]", "__objc_catlist", 16, ) = 16
(78391) (0.07186) strncmp("__objc_data", "__objc_catlist", 16, ) = 1
(78391) (0.07191) strncmp("__data", "__objc_catlist", 16, ) = -11
(78391) (0.07196) strncmp("__crash_info", "__objc_catlist", 16, ) = -12
(78391) (0.07201) strncmp("__common", "__objc_catlist", 16, ) = -12
(78391) (0.07206) strncmp("__bss", "__objc_catlist", 16, ) = -13
(78391) (0.07211) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07216) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.07221) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07225) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.07231) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07235) strncmp("__DATA", "__DATA_CONST", 16, ) = -95 [took: 0.00038]
(78391) (0.07273) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07277) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.07282) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07286) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.07291) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07295) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.07299) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07303) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.07308) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07312) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07317) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07321) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07325) strncmp("__got", "__objc_catlist", 16, ) = -8
(78391) (0.07330) strncmp("__nl_symbol_ptr", "__objc_catlist", 16, ) = -1
(78391) (0.07334) strncmp("__la_symbol_ptr", "__objc_catlist", 16, ) = -3
(78391) (0.07339) strncmp("__const", "__objc_catlist", 16, ) = -12
(78391) (0.07344) strncmp("__objc_classlist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07348) strncmp("__objc_nlclslist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07353) strncmp("__objc_protolist[SNIP]", "__objc_catlist", 16, ) = 13
(78391) (0.07357) strncmp("__objc_imageinfo[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.07362) strncmp("__objc_const", "__objc_catlist", 16, ) = 14
(78391) (0.07367) strncmp("__objc_selrefs", "__objc_catlist", 16, ) = 16
(78391) (0.07371) strncmp("__objc_classrefs[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07376) strncmp("__objc_superrefs[SNIP]", "__objc_catlist", 16, ) = 16
(78391) (0.07380) strncmp("__objc_data", "__objc_catlist", 16, ) = 1
(78391) (0.07385) strncmp("__data", "__objc_catlist", 16, ) = -11
(78391) (0.07390) strncmp("__crash_info", "__objc_catlist", 16, ) = -12
(78391) (0.07394) strncmp("__bss", "__objc_catlist", 16, ) = -13
(78391) (0.07399) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07403) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.07407) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07412) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.07416) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07420) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.07425) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07429) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.07433) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07437) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.07442) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07446) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.07450) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07454) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.07459) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07463) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07467) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07471) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07476) strncmp("__nl_symbol_ptr", "__objc_catlist", 16, ) = -1
(78391) (0.07480) strncmp("__got", "__objc_catlist", 16, ) = -8
(78391) (0.07485) strncmp("__la_symbol_ptr", "__objc_catlist", 16, ) = -3
(78391) (0.07490) strncmp("__const", "__objc_catlist", 16, ) = -12
(78391) (0.07494) strncmp("__objc_classlist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07499) strncmp("__objc_nlclslist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07504) strncmp("__objc_protolist[SNIP]", "__objc_catlist", 16, ) = 13
(78391) (0.07508) strncmp("__objc_imageinfo[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.07513) strncmp("__objc_const", "__objc_catlist", 16, ) = 14
(78391) (0.07517) strncmp("__objc_selrefs", "__objc_catlist", 16, ) = 16
(78391) (0.07522) strncmp("__objc_classrefs[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07526) strncmp("__objc_superrefs[SNIP]", "__objc_catlist", 16, ) = 16
(78391) (0.07531) strncmp("__objc_ivar", "__objc_catlist", 16, ) = 6
(78391) (0.07536) strncmp("__objc_data", "__objc_catlist", 16, ) = 1
(78391) (0.07540) strncmp("__data", "__objc_catlist", 16, ) = -11
(78391) (0.07545) strncmp("__crash_info", "__objc_catlist", 16, ) = -12
(78391) (0.07549) strncmp("__bss", "__objc_catlist", 16, ) = -13
(78391) (0.07554) strncmp("__common", "__objc_catlist", 16, ) = -12
(78391) (0.07559) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07562) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.07567) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07571) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.07576) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07580) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.07584) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07588) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.07593) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07597) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.07601) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07605) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.07610) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07614) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.07618) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07622) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07627) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07631) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07635) strncmp("__got", "__objc_catlist", 16, ) = -8
(78391) (0.07640) strncmp("__nl_symbol_ptr", "__objc_catlist", 16, ) = -1
(78391) (0.07644) strncmp("__la_symbol_ptr", "__objc_catlist", 16, ) = -3
(78391) (0.07649) strncmp("__const", "__objc_catlist", 16, ) = -12
(78391) (0.07654) strncmp("__objc_classlist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07658) strncmp("__objc_protolist[SNIP]", "__objc_catlist", 16, ) = 13
(78391) (0.07663) strncmp("__objc_imageinfo[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.07667) strncmp("__objc_const", "__objc_catlist", 16, ) = 14 [took: 0.00019]
(78391) (0.07688) strncmp("__objc_selrefs", "__objc_catlist", 16, ) = 16
(78391) (0.07693) strncmp("__objc_classrefs[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07698) strncmp("__objc_superrefs[SNIP]", "__objc_catlist", 16, ) = 16
(78391) (0.07703) strncmp("__objc_ivar", "__objc_catlist", 16, ) = 6
(78391) (0.07708) strncmp("__objc_data", "__objc_catlist", 16, ) = 1
(78391) (0.07713) strncmp("__data", "__objc_catlist", 16, ) = -11
(78391) (0.07718) strncmp("__common", "__objc_catlist", 16, ) = -12
(78391) (0.07723) strncmp("__bss", "__objc_catlist", 16, ) = -13
(78391) (0.07728) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07733) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.07738) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07742) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.07747) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07751) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.07757) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07761) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.07766) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07771) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.07776) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07780) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.07785) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07789) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.07794) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07799) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07804) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07808) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07813) strncmp("__got", "__objc_catlist", 16, ) = -8
(78391) (0.07818) strncmp("__nl_symbol_ptr", "__objc_catlist", 16, ) = -1
(78391) (0.07823) strncmp("__la_symbol_ptr", "__objc_catlist", 16, ) = -3
(78391) (0.07828) strncmp("__objc_init_func[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.07833) strncmp("__const", "__objc_catlist", 16, ) = -12
(78391) (0.07838) strncmp("__objc_classlist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07842) strncmp("__objc_nlclslist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.07847) strncmp("__objc_protolist[SNIP]", "__objc_catlist", 16, ) = 13
(78391) (0.07852) strncmp("__objc_imageinfo[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.07857) strncmp("__objc_const", "__objc_catlist", 16, ) = 14
(78391) (0.07862) strncmp("__objc_selrefs", "__objc_catlist", 16, ) = 16
(78391) (0.07867) strncmp("__objc_ivar", "__objc_catlist", 16, ) = 6
(78391) (0.07872) strncmp("__objc_data", "__objc_catlist", 16, ) = 1
(78391) (0.07877) strncmp("__data", "__objc_catlist", 16, ) = -11
(78391) (0.07882) strncmp("__objc_msg_break[SNIP]", "__objc_catlist", 16, ) = 10
(78391) (0.07887) strncmp("__objc_opt_rw", "__objc_catlist", 16, ) = 12
(78391) (0.07893) strncmp("__objc_opt_ptrs", "__objc_catlist", 16, ) = 12
(78391) (0.07898) strncmp("__crash_info", "__objc_catlist", 16, ) = -12
(78391) (0.07903) strncmp("__bss", "__objc_catlist", 16, ) = -13
(78391) (0.07908) strncmp("__common", "__objc_catlist", 16, ) = -12
(78391) (0.07913) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07917) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.07922) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07927) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.07932) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07936) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.07941) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07946) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.07950) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07955) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.07959) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07964) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.07969) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07973) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.07980) getenv("OBJC_DEBUG_MISSING_POOLS", ) = (nil)
(78391) (0.07985) getpid() = 78391
(78391) (0.07988) calloc(1, 40, ) = 0x7fff4be00130
(78391) (0.07992) calloc(64, 1, ) = 0x7fff4be00160
(78391) (0.07996) getenv("XPC_FLAGS", ) = "0x0"
(78391) (0.08000) getenv("XPC_NULL_BOOTSTRAP", ) = (nil)
(78391) (0.08003) getenv("XBS_IS_CHROOTED", ) = (nil)
(78391) (0.08007) stat("/AppleInternal/XBS/.isChrooted", 0x7fff5050cae8, ) = -1
(78391) (0.08011) getenv("XPC_SERVICES_UNAVAILABLE", ) = (nil)
(78391) (0.08015) strncmp("__PAGEZERO", "__TEXT", 16, ) = -4
(78391) (0.08020) strncmp("__TEXT", "__TEXT", 16, ) = 0
(78391) (0.08026) strncmp("__text", "__launchd", 16, ) = 8
(78391) (0.08031) strncmp("__stubs", "__launchd", 16, ) = 7
(78391) (0.08036) strncmp("__stub_helper", "__launchd", 16, ) = 7
(78391) (0.08041) strncmp("__cstring", "__launchd", 16, ) = -9
(78391) (0.08046) strncmp("__unwind_info", "__launchd", 16, ) = 9
(78391) (0.08051) strncmp("__DATA", "__TEXT", 16, ) = -16
(78391) (0.08056) strncmp("__LINKEDIT", "__TEXT", 16, ) = -8
(78391) (0.08061) strncmp("__PAGEZERO", "__TEXT", 16, ) = -4
(78391) (0.08066) strncmp("__TEXT", "__TEXT", 16, ) = 0
(78391) (0.08071) strncmp("__text", "__xpcproxy", 16, ) = -4
(78391) (0.08076) strncmp("__stubs", "__xpcproxy", 16, ) = -5
(78391) (0.08081) strncmp("__stub_helper", "__xpcproxy", 16, ) = -5
(78391) (0.08086) strncmp("__cstring", "__xpcproxy", 16, ) = -21
(78391) (0.08091) strncmp("__unwind_info", "__xpcproxy", 16, ) = -3
(78391) (0.08096) strncmp("__DATA", "__TEXT", 16, ) = -16
(78391) (0.08101) strncmp("__LINKEDIT", "__TEXT", 16, ) = -8
(78391) (0.08106) strncmp("__PAGEZERO", "__TEXT", 16, ) = -4
(78391) (0.08111) strncmp("__TEXT", "__TEXT", 16, ) = 0
(78391) (0.08116) strncmp("__text", "__launchctl", 16, ) = 8
(78391) (0.08121) strncmp("__stubs", "__launchctl", 16, ) = 7
(78391) (0.08126) strncmp("__stub_helper", "__launchctl", 16, ) = 7
(78391) (0.08131) strncmp("__cstring", "__launchctl", 16, ) = -9
(78391) (0.08136) strncmp("__unwind_info", "__launchctl", 16, ) = 9
(78391) (0.08141) strncmp("__DATA", "__TEXT", 16, ) = -16
(78391) (0.08146) strncmp("__LINKEDIT", "__TEXT", 16, ) = -8
(78391) (0.08152) stat("/AppleInternal", 0x7fff5050cb80, ) = -1
(78391) (0.08158) calloc(1, 56, ) = 0x7fff4be001a0
(78391) (0.08162) calloc(1, 176, ) = 0x7fff4be001e0
(78391) (0.08166) getenv("HOME", ) = "/Users/catap"
(78391) (0.08170) malloc(13, ) = 0x7fff4be00060
(78391) (0.08173) memcpy(0x7fff4be00060, 0x7fff5050ee91, 13, ) = 0x7fff4be00060
(78391) (0.08178) strlen("/Users/catap", ) = 12
(78391) (0.08181) calloc(1, 40, ) = 0x7fff4be00290
(78391) (0.08185) strcmp("HOME", "XPCErrorDescription", ) = -16
(78391) (0.08190) strlen("HOME", ) = 4
(78391) (0.08193) malloc(45, ) = 0x7fff4be002c0
(78391) (0.08196) memcpy(0x7fff4be002e0, 0x7fffaeb8be2c, 5, ) = 0x7fff4be002e0
(78391) (0.08200) strcpy("HOME", "HOME", ) = "HOME"
(78391) (0.08205) getenv("PATH", ) = "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/[SNIP]"
(78391) (0.08208) malloc(249, ) = 0x7fff4be002f0
(78391) (0.08211) memcpy(0x7fff4be002f0, 0x7fff5050ecb3, 249, ) = 0x7fff4be002f0
(78391) (0.08216) strlen("/usr/local/bin:/usr/bin:/bin:/usr/sbin:/[SNIP]", ) = 248
(78391) (0.08219) calloc(1, 40, ) = 0x7fff4be003f0
(78391) (0.08223) strcmp("PATH", "XPCErrorDescription", ) = -8
(78391) (0.08227) strlen("PATH", ) = 4
(78391) (0.08230) malloc(45, ) = 0x7fff4be00420
(78391) (0.08233) memcpy(0x7fff4be00440, 0x7fffaeb8c840, 5, ) = 0x7fff4be00440
(78391) (0.08237) strcpy("PATH", "PATH", ) = "PATH"
(78391) (0.08242) getenv("TMPDIR", ) = "/var/folders/rq/wqy42lq543z9rwrlj7vf1h4r[SNIP]"
(78391) (0.08246) malloc(50, ) = 0x7fff4be00450
(78391) (0.08249) memcpy(0x7fff4be00450, 0x7fff5050eb2f, 50, ) = 0x7fff4be00450
(78391) (0.08254) strlen("/var/folders/rq/wqy42lq543z9rwrlj7vf1h4r[SNIP]", ) = 49
(78391) (0.08257) calloc(1, 40, ) = 0x7fff4be00490
(78391) (0.08261) strcmp("TMPDIR", "XPCErrorDescription", ) = -4
(78391) (0.08265) strlen("TMPDIR", ) = 6
(78391) (0.08268) malloc(47, ) = 0x7fff4be004c0
(78391) (0.08271) memcpy(0x7fff4be004e0, 0x7fffaeb8c845, 7, ) = 0x7fff4be004e0
(78391) (0.08276) strcpy("TMPDIR", "TMPDIR", ) = "TMPDIR"
(78391) (0.08281) getenv("__CF_USER_TEXT_ENCODING", ) = "0x1F5:0x0:0x0" [took: 0.00025]
(78391) (0.08307) malloc(14, ) = 0x7fff4be00090
(78391) (0.08310) memcpy(0x7fff4be00090, 0x7fff5050ec75, 14, ) = 0x7fff4be00090
(78391) (0.08315) strlen("0x1F5:0x0:0x0", ) = 13
(78391) (0.08318) calloc(1, 40, ) = 0x7fff4be004f0
(78391) (0.08322) strcmp("__CF_USER_TEXT_ENCODING", "XPCErrorDescription", ) = 7
(78391) (0.08326) strcmp("__CF_USER_TEXT_ENCODING", "TMPDIR", ) = 11
(78391) (0.08331) strlen("__CF_USER_TEXT_ENCODING", ) = 23
(78391) (0.08334) malloc(64, ) = 0x7fff4be00520
(78391) (0.08337) strcpy("__CF_USER_TEXT_ENCODING", "__CF_USER_TEXT_ENCODING", ) = "__CF_USER_TEXT_ENCODING"
(78391) (0.08342) getenv("CFFIXED_USER_HOME", ) = (nil)
(78391) (0.08345) getenv("Apple_PubSub_Socket_Render", ) = "/private/tmp/com.apple.launchd.9izGD2grV[SNIP]"
(78391) (0.08348) malloc(49, ) = 0x7fff4be00560
(78391) (0.08351) memcpy(0x7fff4be00560, 0x7fff5050eb7c, 49, ) = 0x7fff4be00560
(78391) (0.08356) strlen("/private/tmp/com.apple.launchd.9izGD2grV[SNIP]", ) = 48
(78391) (0.08359) calloc(1, 40, ) = 0x7fff4be005a0
(78391) (0.08363) strcmp("Apple_PubSub_Socket_Render", "XPCErrorDescription", ) = -23
(78391) (0.08367) strlen("Apple_PubSub_Socket_Render", ) = 26
(78391) (0.08370) malloc(67, ) = 0x7fff4be005d0
(78391) (0.08373) strcpy("Apple_PubSub_Socket_Render", "Apple_PubSub_Socket_Render", ) = "Apple_PubSub_Socket_Render"
(78391) (0.08378) getenv("SSH_AUTH_SOCK", ) = "/private/tmp/com.apple.launchd.rODjW1Va0[SNIP]"
(78391) (0.08382) malloc(52, ) = 0x7fff4be00620
(78391) (0.08384) memcpy(0x7fff4be00620, 0x7fff5050ec29, 52, ) = 0x7fff4be00620
(78391) (0.08389) strlen("/private/tmp/com.apple.launchd.rODjW1Va0[SNIP]", ) = 51
(78391) (0.08393) calloc(1, 40, ) = 0x7fff4be00660
(78391) (0.08396) strcmp("SSH_AUTH_SOCK", "XPCErrorDescription", ) = -5
(78391) (0.08400) strcmp("SSH_AUTH_SOCK", "Apple_PubSub_Socket_Render", ) = 18
(78391) (0.08405) strlen("SSH_AUTH_SOCK", ) = 13
(78391) (0.08408) malloc(54, ) = 0x7fff4be00690
(78391) (0.08411) memcpy(0x7fff4be006b0, 0x7fffaeb8c891, 14, ) = 0x7fff4be006b0
(78391) (0.08416) strcpy("SSH_AUTH_SOCK", "SSH_AUTH_SOCK", ) = "SSH_AUTH_SOCK"
(78391) (0.08420) getenv("LANG", ) = "en_US.UTF-8"
(78391) (0.08424) malloc(12, ) = 0x7fff4be000a0
(78391) (0.08427) memcpy(0x7fff4be000a0, 0x7fff5050ee38, 12, ) = 0x7fff4be000a0
(78391) (0.08432) strlen("en_US.UTF-8", ) = 11
(78391) (0.08435) calloc(1, 40, ) = 0x7fff4be006d0
(78391) (0.08439) strcmp("LANG", "XPCErrorDescription", ) = -12
(78391) (0.08443) strlen("LANG", ) = 4
(78391) (0.08446) malloc(45, ) = 0x7fff4be00700
(78391) (0.08450) memcpy(0x7fff4be00720, 0x7fffaeb8c89f, 5, ) = 0x7fff4be00720
(78391) (0.08454) strcpy("LANG", "LANG", ) = "LANG"
(78391) (0.08459) strlen("__XPC_", ) = 6
(78391) (0.08462) strncmp("DYLD_F[SNIP]", "__XPC_", 6, ) = -27
(78391) (0.08467) strlen("__XPC_", ) = 6
(78391) (0.08470) strncmp("DYLD_I[SNIP]", "__XPC_", 6, ) = -27
(78391) (0.08476) strlen("__XPC_", ) = 6
(78391) (0.08479) strncmp("RETRAC[SNIP]", "__XPC_", 6, ) = -13
(78391) (0.08484) strlen("__XPC_", ) = 6
(78391) (0.08487) strncmp("TERM_P[SNIP]", "__XPC_", 6, ) = -11
(78391) (0.08491) strlen("__XPC_", ) = 6
(78391) (0.08495) strncmp("TERM=a[SNIP]", "__XPC_", 6, ) = -11
(78391) (0.08500) strlen("__XPC_", ) = 6
(78391) (0.08503) strncmp("SHELL=[SNIP]", "__XPC_", 6, ) = -12
(78391) (0.08508) strlen("__XPC_", ) = 6
(78391) (0.08511) strncmp("TMPDIR[SNIP]", "__XPC_", 6, ) = -11
(78391) (0.08516) strlen("__XPC_", ) = 6
(78391) (0.08523) strncmp("Apple_[SNIP]", "__XPC_", 6, ) = -30
(78391) (0.08528) strlen("__XPC_", ) = 6
(78391) (0.08531) strncmp("TERM_P[SNIP]", "__XPC_", 6, ) = -11
(78391) (0.08538) strlen("__XPC_", ) = 6
(78391) (0.08541) strncmp("TERM_S[SNIP]", "__XPC_", 6, ) = -11
(78391) (0.08546) strlen("__XPC_", ) = 6
(78391) (0.08550) strncmp("LC_ALL[SNIP]", "__XPC_", 6, ) = -19
(78391) (0.08555) strlen("__XPC_", ) = 6
(78391) (0.08558) strncmp("USER=c[SNIP]", "__XPC_", 6, ) = -10
(78391) (0.08563) strlen("__XPC_", ) = 6
(78391) (0.08567) strncmp("SSH_AU[SNIP]", "__XPC_", 6, ) = -12
(78391) (0.08572) strlen("__XPC_", ) = 6
(78391) (0.08575) strncmp("__CF_U[SNIP]", "__XPC_", 6, ) = -21
(78391) (0.08580) strlen("__XPC_", ) = 6
(78391) (0.08584) strncmp("PAGER=[SNIP]", "__XPC_", 6, ) = -15
(78391) (0.08588) strlen("__XPC_", ) = 6
(78391) (0.08592) strncmp("LSCOLO[SNIP]", "__XPC_", 6, ) = -19
(78391) (0.08597) strlen("__XPC_", ) = 6
(78391) (0.08600) strncmp("PATH=/[SNIP]", "__XPC_", 6, ) = -15
(78391) (0.08605) strlen("__XPC_", ) = 6
(78391) (0.08608) strncmp("PWD=/U[SNIP]", "__XPC_", 6, ) = -15
(78391) (0.08613) strlen("__XPC_", ) = 6
(78391) (0.08616) strncmp("JAVA_H[SNIP]", "__XPC_", 6, ) = -21
(78391) (0.08621) strlen("__XPC_", ) = 6
(78391) (0.08625) strncmp("EDITOR[SNIP]", "__XPC_", 6, ) = -26
(78391) (0.08630) strlen("__XPC_", ) = 6
(78391) (0.08633) strncmp("LANG=e[SNIP]", "__XPC_", 6, ) = -19
(78391) (0.08638) strlen("__XPC_", ) = 6
(78391) (0.08641) strncmp("XPC_FL[SNIP]", "__XPC_", 6, ) = -7
(78391) (0.08646) strlen("__XPC_", ) = 6
(78391) (0.08649) strncmp("JAVA_T[SNIP]", "__XPC_", 6, ) = -21
(78391) (0.08654) strlen("__XPC_", ) = 6
(78391) (0.08658) strncmp("XPC_SE[SNIP]", "__XPC_", 6, ) = -7
(78391) (0.08663) strlen("__XPC_", ) = 6
(78391) (0.08666) strncmp("HOME=/[SNIP]", "__XPC_", 6, ) = -23
(78391) (0.08671) strlen("__XPC_", ) = 6
(78391) (0.08674) strncmp("SHLVL=[SNIP]", "__XPC_", 6, ) = -12
(78391) (0.08679) strlen("__XPC_", ) = 6
(78391) (0.08683) strncmp("LESS=-[SNIP]", "__XPC_", 6, ) = -19
(78391) (0.08688) strlen("__XPC_", ) = 6
(78391) (0.08691) strncmp("LOGNAM[SNIP]", "__XPC_", 6, ) = -19
(78391) (0.08696) strlen("__XPC_", ) = 6
(78391) (0.08699) strncmp("LC_CTY[SNIP]", "__XPC_", 6, ) = -19
(78391) (0.08704) strlen("__XPC_", ) = 6
(78391) (0.08708) strncmp("CHECKP[SNIP]", "__XPC_", 6, ) = -28
(78391) (0.08713) strlen("__XPC_", ) = 6
(78391) (0.08716) strncmp("GOPATH[SNIP]", "__XPC_", 6, ) = -24
(78391) (0.08721) strlen("__XPC_", ) = 6
(78391) (0.08725) strncmp("PKG_CO[SNIP]", "__XPC_", 6, ) = -15
(78391) (0.08730) strlen("__XPC_", ) = 6
(78391) (0.08733) strncmp("SECURI[SNIP]", "__XPC_", 6, ) = -12
(78391) (0.08738) strlen("__XPC_", ) = 6
(78391) (0.08741) strncmp("_=/tmp[SNIP]", "__XPC_", 6, ) = -34
(78391) (0.08746) getpid() = 78391
(78391) (0.08749) calloc(1, 32, ) = 0x7fff4be00730
(78391) (0.08753) calloc(1, 176, ) = 0x7fff4be00750
(78391) (0.08757) strlen("/usr/lib", ) = 8
(78391) (0.08760) strncmp("/Users/c[SNIP]", "/usr/lib", 8, ) = -32
(78391) (0.08765) strlen("/usr/local/lib", ) = 14
(78391) (0.08769) strncmp("/Users/catap/D[SNIP]", "/usr/local/lib", 14, ) = -32
(78391) (0.08774) strlen("/Users/catap/Documents/Riboseinc/retrace[SNIP]", ) = 63
(78391) (0.08777) strlen(".dylib", ) = 6
(78391) (0.08780) strcmp(".dylib", ".dylib", ) = 0
(78391) (0.08785) strlen("/usr/lib", ) = 8
(78391) (0.08788) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08793) strlen("/usr/lib", ) = 8
(78391) (0.08796) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08802) strlen("/usr/lib", ) = 8
(78391) (0.08805) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08810) strlen("/usr/lib", ) = 8
(78391) (0.08813) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08819) strlen("/usr/lib", ) = 8
(78391) (0.08822) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08827) strlen("/usr/lib", ) = 8
(78391) (0.08830) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08835) strlen("/usr/lib", ) = 8
(78391) (0.08839) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08844) strlen("/usr/lib", ) = 8
(78391) (0.08847) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08852) strlen("/usr/lib", ) = 8
(78391) (0.08855) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08860) strlen("/usr/lib", ) = 8
(78391) (0.08864) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08869) strlen("/usr/lib", ) = 8
(78391) (0.08872) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08877) strlen("/usr/lib", ) = 8
(78391) (0.08880) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08885) strlen("/usr/lib", ) = 8
(78391) (0.08888) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08894) strlen("/usr/lib", ) = 8
(78391) (0.08897) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08902) strlen("/usr/lib", ) = 8
(78391) (0.08905) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08910) strlen("/usr/lib", ) = 8
(78391) (0.08913) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08919) strlen("/usr/lib", ) = 8
(78391) (0.08922) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08927) strlen("/usr/lib", ) = 8
(78391) (0.08930) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08936) strlen("/usr/lib", ) = 8
(78391) (0.08939) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08944) strlen("/usr/lib", ) = 8
(78391) (0.08947) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08952) strlen("/usr/lib", ) = 8
(78391) (0.08956) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08961) strlen("/usr/lib", ) = 8
(78391) (0.08964) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08969) strlen("/usr/lib", ) = 8
(78391) (0.08973) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08978) strlen("/usr/lib", ) = 8
(78391) (0.08981) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08986) strlen("/usr/lib", ) = 8
(78391) (0.08989) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.08994) strlen("/usr/lib", ) = 8
(78391) (0.08997) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09002) strlen("/usr/lib", ) = 8
(78391) (0.09006) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09010) strlen("/usr/lib", ) = 8
(78391) (0.09014) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09019) strlen("/usr/lib", ) = 8 [took: 0.00011]
(78391) (0.09031) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09036) strlen("/usr/lib", ) = 8
(78391) (0.09040) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09045) strlen("/usr/lib", ) = 8
(78391) (0.09048) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09053) strlen("/usr/lib", ) = 8
(78391) (0.09057) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09062) strlen("/usr/lib", ) = 8
(78391) (0.09065) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09070) strlen("/usr/lib", ) = 8
(78391) (0.09073) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09079) strlen("/usr/lib", ) = 8
(78391) (0.09082) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09087) strlen("/usr/lib", ) = 8
(78391) (0.09090) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09095) strlen("/usr/lib", ) = 8
(78391) (0.09098) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09103) strlen("/usr/lib", ) = 8
(78391) (0.09106) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09111) strlen("/usr/lib", ) = 8
(78391) (0.09115) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09120) strlen("/usr/lib", ) = 8
(78391) (0.09123) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09128) strlen("/usr/lib", ) = 8
(78391) (0.09132) strncmp("/System/[SNIP]", "/usr/lib", 8, ) = -34
(78391) (0.09137) strlen("/usr/local/lib", ) = 14
(78391) (0.09140) strncmp("/System/Librar[SNIP]", "/usr/local/lib", 14, ) = -34
(78391) (0.09145) strlen("/System/Library/PrivateFrameworks/TrustE[SNIP]", ) = 96
(78391) (0.09148) strlen(".dylib", ) = 6
(78391) (0.09152) strcmp("nAgent", ".dylib", ) = 64
(78391) (0.09156) strcmp("/System/Library/PrivateFrameworks/TrustE[SNIP]", "XPCErrorDescription", ) = -41
(78391) (0.09161) strlen("/System/Library/PrivateFrameworks/TrustE[SNIP]", ) = 96
(78391) (0.09164) malloc(137, ) = 0x7fff4be00800
(78391) (0.09167) strcpy("/System/Library/PrivateFrameworks/TrustE[SNIP]", "/System/Library/PrivateFrameworks/TrustE[SNIP]", ) = "/System/Library/PrivateFrameworks/TrustE[SNIP]"
(78391) (0.09172) strlen("/usr/lib", ) = 8
(78391) (0.09175) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09180) getpid() = 78391
(78391) (0.09183) getenv("XPC_SERVICE_FORCE_EARLY_INIT", ) = (nil)
(78391) (0.09186) getpid() = 78391
(78391) (0.09189) getpid() = 78391
(78391) (0.09196) getenv("XPC_FLAGS", ) = "0x0"
(78391) (0.09200) memcpy(0x7fff5050cb80, 0x7fffaeb8c24c, 2, ) = 0x7fff5050cb80
(78391) (0.09205) memcpy(0x7fff5050cb82, 0x7fff5050c63f, 1, ) = 0x7fff5050cb82
(78391) (0.09209) free(0x0, )
(78391) (0.09212) strchr("XPC_FLAGS", '='(61), ) = (nil)
(78391) (0.09216) malloc(16, ) = 0x7fff4be00890
(78391) (0.09219) malloc(64, ) = 0x7fff4be008a0
(78391) (0.09222) malloc(14, ) = 0x7fff4be008e0
(78391) (0.09225) memcpy(0x7fff4be008b0, 0x7fff4be008a8, 0, ) = 0x7fff4be008b0
(78391) (0.09229) getpid() = 78391
(78391) (0.09233) getenv("XBS_IS_CHROOTED", ) = (nil)
(78391) (0.09236) getpid() = 78391
(78391) (0.09239) strlen("com.apple.libtrace.state.block-list", ) = 35
(78391) (0.09242) calloc(1, 124, ) = 0x7fff4be008f0
(78391) (0.09250) getpid() = 78391
(78391) (0.09252) getenv("APP_SANDBOX_EXIT_AFTER_INIT", ) = (nil)
(78391) (0.09260) memcpy(0x7fffb75d2b11, 0x7fffad50671d, 1, ) = 0x7fffb75d2b11
(78391) (0.09268) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09272) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.09276) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09280) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.09285) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.09289) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.09294) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.09298) strncmp("__objc_init_func[SNIP]", "__objc_nlclslist", 16, ) = -5
(78391) (0.09303) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.09308) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.09353) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0 [took: 0.00046]
(78391) (0.09359) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.09364) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09368) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.09372) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09376) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.09380) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.09384) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.09388) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.09392) strncmp("__objc_init_func[SNIP]", "__objc_nlclslist", 16, ) = -5
(78391) (0.09396) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.09401) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.09405) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0
(78391) (0.09410) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.09415) strcmp("alloc", "load", ) = -11
(78391) (0.09419) strcmp("mutableCopy", "load", ) = 1
(78391) (0.09422) strcmp("release", "load", ) = 6
(78391) (0.09426) strcmp("init", "load", ) = -3
(78391) (0.09430) strcmp("isEqual:", "load", ) = -3
(78391) (0.09434) strcmp("class", "load", ) = -9
(78391) (0.09437) strcmp("self", "load", ) = 7
(78391) (0.09441) strcmp("performSelector:", "load", ) = 4
(78391) (0.09445) strcmp("performSelector:withObject:", "load", ) = 4
(78391) (0.09449) strcmp("performSelector:withObject:withObject:", "load", ) = 4
(78391) (0.09453) strcmp("isProxy", "load", ) = -3
(78391) (0.09457) strcmp("isKindOfClass:", "load", ) = -3
(78391) (0.09460) strcmp("isMemberOfClass:", "load", ) = -3
(78391) (0.09464) strcmp("conformsToProtocol:", "load", ) = -9
(78391) (0.09468) strcmp("respondsToSelector:", "load", ) = 6
(78391) (0.09472) strcmp("retain", "load", ) = 6
(78391) (0.09481) strcmp("autorelease", "load", ) = -11
(78391) (0.09485) strcmp("retainCount", "load", ) = 6
(78391) (0.09489) strcmp("zone", "load", ) = 14
(78391) (0.09493) strcmp("hash", "load", ) = -4
(78391) (0.09497) strcmp("superclass", "load", ) = 7
(78391) (0.09501) strcmp("description", "load", ) = -8
(78391) (0.09505) strcmp("debugDescription", "load", ) = -8
(78391) (0.09509) strcmp("copy", "load", ) = -9
(78391) (0.09513) strcmp("allocWithZone:", "load", ) = -11
(78391) (0.09517) strcmp("dealloc", "load", ) = -8
(78391) (0.09520) strcmp("new", "load", ) = 2
(78391) (0.09525) strcmp("copyWithZone:", "load", ) = -9
(78391) (0.09528) strcmp("methodForSelector:", "load", ) = 1
(78391) (0.09532) strcmp("initialize", "load", ) = -3
(78391) (0.09535) strcmp("instanceMethodSignatureForSelector:", "load", ) = -3
(78391) (0.09539) strcmp("load", "load", ) = 0
(78391) (0.09543) realloc(0x0, 256, ) = 0x7fff4bc00160
(78391) (0.09546) strcmp("load", "load", ) = 0
(78391) (0.09549) strcmp("load", "load", ) = 0
(78391) (0.09553) strcmp("load", "load", ) = 0
(78391) (0.09556) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09560) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.09564) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09568) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.09572) strncmp("__got", "__objc_nlcatlist", 16, ) = -8
(78391) (0.09576) strncmp("__nl_symbol_ptr", "__objc_nlcatlist", 16, ) = -1
(78391) (0.09580) strncmp("__la_symbol_ptr", "__objc_nlcatlist", 16, ) = -3
(78391) (0.09584) strncmp("__objc_init_func[SNIP]", "__objc_nlcatlist", 16, ) = -5
(78391) (0.09589) strncmp("__const", "__objc_nlcatlist", 16, ) = -12
(78391) (0.09593) strncmp("__objc_classlist[SNIP]", "__objc_nlcatlist", 16, ) = -11
(78391) (0.09597) strncmp("__objc_nlclslist[SNIP]", "__objc_nlcatlist", 16, ) = 11
(78391) (0.09601) strncmp("__objc_protolist[SNIP]", "__objc_nlcatlist", 16, ) = 2
(78391) (0.09605) strncmp("__objc_imageinfo[SNIP]", "__objc_nlcatlist", 16, ) = -5
(78391) (0.09609) strncmp("__objc_const", "__objc_nlcatlist", 16, ) = -11
(78391) (0.09613) strncmp("__objc_selrefs", "__objc_nlcatlist", 16, ) = 5
(78391) (0.09618) strncmp("__objc_ivar", "__objc_nlcatlist", 16, ) = -5
(78391) (0.09622) strncmp("__objc_data", "__objc_nlcatlist", 16, ) = -10
(78391) (0.09626) strncmp("__data", "__objc_nlcatlist", 16, ) = -11
(78391) (0.09630) strncmp("__objc_msg_break[SNIP]", "__objc_nlcatlist", 16, ) = -1
(78391) (0.09634) strncmp("__objc_opt_rw", "__objc_nlcatlist", 16, ) = 1
(78391) (0.09639) strncmp("__objc_opt_ptrs", "__objc_nlcatlist", 16, ) = 1
(78391) (0.09643) strncmp("__crash_info", "__objc_nlcatlist", 16, ) = -12
(78391) (0.09647) strncmp("__bss", "__objc_nlcatlist", 16, ) = -13
(78391) (0.09651) strncmp("__common", "__objc_nlcatlist", 16, ) = -12
(78391) (0.09655) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09659) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.09663) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09667) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.09671) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09674) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.09678) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09682) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.09686) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09690) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.09694) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09697) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.09702) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09705) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.09710) free(0x7fff4bc00160, )
(78391) (0.09717) malloc(4096, ) = 0x7fff50800000
(78391) (0.09720) memcpy(0x7fff50800000, 0x10f6f1fa4, 6, ) = 0x7fff50800000
Wooo!
(78391) (0.09724) free(0x0, )
(78391) (0.09725) printf("Wooo!\n" -> "Wooo!\n", ) = 6 [took: 0.00012]
test2(78391,0x7fffb783b3c0) malloc: *** malloc was initialized without entropy
(78391) (0.00033) strncmp("executable_[SNIP]", "stack_guard", 11, ) = -14 [took: 0.00040]
(78391) (0.00043) strncmp("", "stack_guard", 11, ) = -115
(78391) (0.00047) strncmp("stack_guard[SNIP]", "stack_guard", 11, ) = 0
(78391) (0.00052) strchr("stack_guard=0xb7ee02e90d1700ec", '='(61), ) = "=0xb7ee02e90d1700ec"
(78391) (0.00056) memcpy(0x7fff50c05170, 0x7fff50c06f77, 19, ) = 0x7fff50c05170
(78391) (0.00060) strchr("0xb7ee02e90d1700ec", ','(44), ) = (nil)
(78391) (0.00064) strchr("0xb7ee02e90d1700ec", ','(44), ) = (nil)
(78391) (0.00068) strncmp("executable_path=[SNIP]", "MallocNanoZone=1", 16, ) = 24 [took: 0.00949]
(78391) (0.01018) strncmp("", "MallocNanoZone=1", 16, ) = -77
(78391) (0.01023) strncmp("", "MallocNanoZone=1", 16, ) = -77
(78391) (0.01028) strncmp("malloc_entropy=0[SNIP]", "MallocNanoZone=1", 16, ) = 32
(78391) (0.01034) strncmp("main_stack=", "MallocNanoZone=1", 16, ) = 32
(78391) (0.01039) strncmp("executable_pat[SNIP]", "malloc_entropy", 14, ) = -8
(78391) (0.01043) strncmp("", "malloc_entropy", 14, ) = -109
(78391) (0.01047) strncmp("", "malloc_entropy", 14, ) = -109
(78391) (0.01051) strncmp("malloc_entropy[SNIP]", "malloc_entropy", 14, ) = 0
(78391) (0.01056) strchr("malloc_entropy=0x7d932bbaacaf5d7f,0xe110[SNIP]", '='(61), ) = "=0x7d932bbaacaf5d7f,0xe1104ae5ebdbf3cb" [took: 0.00423]
(78391) (0.01481) memcpy(0x7fff50c05160, 0x7fff50c06f99, 19, ) = 0x7fff50c05160
(78391) (0.01486) strchr("0x7d932bbaacaf5d7f,", ','(44), ) = ","
(78391) (0.01490) strchr("0x7d932bbaacaf5d7f,0xe1104ae5ebdbf3cb", ','(44), ) = ",0xe1104ae5ebdbf3cb"
(78391) (0.01493) memcpy(0x7fff50c05160, 0x7fff50c06fac, 19, ) = 0x7fff50c05160
(78391) (0.01497) strchr("0xe1104ae5ebdbf3cb", ','(44), ) = (nil)
(78391) (0.01501) strchr("0xe1104ae5ebdbf3cb", ','(44), ) = (nil)
(78391) (0.01521) malloc(128, ) = 0x7fff4bd00000
(78391) (0.01531) getenv("XBS_IS_CHROOTED", ) = (nil)
(78391) (0.01544) strncmp("HOME=/", "Malloc", 6, ) = -5
(78391) (0.01549) strncmp("HOME[SNIP]", "DYLD", 4, ) = 4
(78391) (0.01553) strncmp("HOME=/", "NSZombiesEnabled", 16, ) = -6
(78391) (0.01557) strncmp("HOME=[SNIP]", "OBJC_", 5, ) = -7
(78391) (0.01562) strncmp("DYLD_I[SNIP]", "Malloc", 6, ) = -9
(78391) (0.01566) strncmp("DYLD[SNIP]", "DYLD", 4, ) = 0
(78391) (0.01570) strncmp("DYLD_[SNIP]", "OBJC_", 5, ) = -11
(78391) (0.01574) strncmp("RETRAC[SNIP]", "Malloc", 6, ) = 5
(78391) (0.01578) strncmp("RETR[SNIP]", "DYLD", 4, ) = 14
(78391) (0.01582) strncmp("RETRACE_CONFIG=.[SNIP]", "NSZombiesEnabled", 16, ) = 4
(78391) (0.01586) strncmp("RETRA[SNIP]", "OBJC_", 5, ) = 3
(78391) (0.01591) getenv("DYLD_INSERT_LIBRARIES", ) = ".libs/libretrace.dylib"
(78391) (0.01594) getenv("NSZombiesEnabled", ) = (nil)
(78391) (0.01597) getenv("OBJC_DEBUG_POOL_ALLOCATION", ) = (nil)
(78391) (0.01599) getenv("MallocStackLogging", ) = (nil)
(78391) (0.01602) getenv("MallocStackLoggingNoCompact", ) = (nil)
(78391) (0.01606) strncmp("ibs/libre[SNIP]", "ibgmalloc", 9, ) = 12
(78391) (0.01610) strncmp("ibretrace[SNIP]", "ibgmalloc", 9, ) = 11
(78391) (0.01614) strncmp("ib", "ibgmalloc", 9, ) = -103
(78391) (0.01618) strstr(".libs/libretrace.dylib", "libgmalloc", ) = (nil) [took: 0.00017]
(78391) (0.01624) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01628) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01632) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01636) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01640) strncmp("__got", "__objc_init_func", 16, ) = -8
(78391) (0.01644) strncmp("__nl_symbol_ptr", "__objc_init_func", 16, ) = -1
(78391) (0.01649) strncmp("__la_symbol_ptr", "__objc_init_func", 16, ) = -3
(78391) (0.01653) strncmp("__objc_init_func[SNIP]", "__objc_init_func", 16, ) = 0
(78391) (0.01657) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01671) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01675) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01679) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01683) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01687) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.01691) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.01695) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.01699) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.01704) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.01708) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01713) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01717) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01721) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01727) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01732) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.01736) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.01740) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.01745) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.01749) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.01753) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01758) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01767) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01772) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01775) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01779) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.01783) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.01787) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.01791) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.01795) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.01800) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01805) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01809) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.01813) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01817) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01821) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.01826) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.01864) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.01870) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.01876) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.01882) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01894) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.01900) strncmp("__TEXT", "__DATA", 16, ) = 16 [took: 0.00015]
(78391) (0.01917) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.01923) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01929) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.01935) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.01942) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.01948) strncmp("__objc_init_func[SNIP]", "__objc_classlist", 16, ) = 6
(78391) (0.01954) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.01962) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.01968) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.01981) strlen("load", ) = 4
(78391) (0.01997) strcmp("load", "load", ) = 0 [took: 0.00014]
(78391) (0.02012) strlen("initialize", ) = 10 [took: 0.00010]
(78391) (0.02030) strcmp("initialize", "initialize", ) = 0 [took: 0.00012]
(78391) (0.02042) strlen("resolveInstanceMethod:", ) = 22 [took: 0.00017]
(78391) (0.02080) strcmp("resolveInstanceMethod:", "resolveInstanceMethod:", ) = 0 [took: 0.00038]
(78391) (0.02121) strlen("resolveClassMethod:", ) = 19 [took: 0.00017]
(78391) (0.02142) strcmp("resolveClassMethod:", "resolveClassMethod:", ) = 0 [took: 0.00011]
(78391) (0.02154) strlen(".cxx_construct", ) = 14
(78391) (0.02163) strcmp(".cxx_construct", ".cxx_construct", ) = 0
(78391) (0.02169) strlen(".cxx_destruct", ) = 13
(78391) (0.02177) strcmp(".cxx_destruct", ".cxx_destruct", ) = 0
(78391) (0.02183) strlen("retain", ) = 6
(78391) (0.02187) strcmp("retain", "retain", ) = 0
(78391) (0.02191) strlen("release", ) = 7
(78391) (0.02196) strcmp("release", "release", ) = 0
(78391) (0.02199) strlen("autorelease", ) = 11
(78391) (0.02203) strcmp("autorelease", "autorelease", ) = 0
(78391) (0.02207) strlen("retainCount", ) = 11
(78391) (0.02210) strcmp("retainCount", "retainCount", ) = 0 [took: 0.00027]
(78391) (0.02238) strlen("alloc", ) = 5
(78391) (0.02242) strcmp("alloc", "alloc", ) = 0
(78391) (0.02246) strlen("allocWithZone:", ) = 14
(78391) (0.02250) strcmp("allocWithZone:", "allocWithZone:", ) = 0
(78391) (0.02254) strlen("dealloc", ) = 7
(78391) (0.02258) strcmp("dealloc", "dealloc", ) = 0
(78391) (0.02262) strlen("copy", ) = 4
(78391) (0.02266) strcmp("copy", "copy", ) = 0
(78391) (0.02271) strlen("new", ) = 3
(78391) (0.02275) strcmp("new", "new", ) = 0
(78391) (0.02279) strlen("forwardInvocation:", ) = 18
(78391) (0.02283) strcmp("forwardInvocation:", "forwardInvocation:", ) = 0
(78391) (0.02287) strlen("_tryRetain", ) = 10
(78391) (0.02292) strcmp("_tryRetain", "_tryRetain", ) = 0
(78391) (0.02296) strlen("_isDeallocating", ) = 15
(78391) (0.02300) strcmp("_isDeallocating", "_isDeallocating", ) = 0
(78391) (0.02304) strlen("retainWeakReference", ) = 19
(78391) (0.02309) strcmp("retainWeakReference", "retainWeakReference", ) = 0
(78391) (0.02313) strlen("allowsWeakReference", ) = 19
(78391) (0.02317) strcmp("allowsWeakReference", "allowsWeakReference", ) = 0
(78391) (0.02321) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02325) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02330) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02334) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02338) strncmp("__got", "__objc_imageinfo", 16, ) = -8
(78391) (0.02343) strncmp("__nl_symbol_ptr", "__objc_imageinfo", 16, ) = -1
(78391) (0.02347) strncmp("__la_symbol_ptr", "__objc_imageinfo", 16, ) = -3
(78391) (0.02352) strncmp("__const", "__objc_imageinfo", 16, ) = -12
(78391) (0.02357) strncmp("__objc_classlist[SNIP]", "__objc_imageinfo", 16, ) = -6
(78391) (0.02361) strncmp("__objc_nlclslist[SNIP]", "__objc_imageinfo", 16, ) = 5
(78391) (0.02366) strncmp("__objc_protolist[SNIP]", "__objc_imageinfo", 16, ) = 7
(78391) (0.02370) strncmp("__objc_imageinfo[SNIP]", "__objc_imageinfo", 16, ) = 0
(78391) (0.02375) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02379) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02382) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02386) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02390) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02396) strncmp("__got", "__objc_imageinfo", 16, ) = -8
(78391) (0.02401) strncmp("__nl_symbol_ptr", "__objc_imageinfo", 16, ) = -1
(78391) (0.02406) strncmp("__la_symbol_ptr", "__objc_imageinfo", 16, ) = -3
(78391) (0.02411) strncmp("__const", "__objc_imageinfo", 16, ) = -12
(78391) (0.02416) strncmp("__objc_classlist[SNIP]", "__objc_imageinfo", 16, ) = -6
(78391) (0.02421) strncmp("__objc_nlclslist[SNIP]", "__objc_imageinfo", 16, ) = 5
(78391) (0.02426) strncmp("__objc_protolist[SNIP]", "__objc_imageinfo", 16, ) = 7
(78391) (0.02431) strncmp("__objc_imageinfo[SNIP]", "__objc_imageinfo", 16, ) = 0
(78391) (0.02436) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02441) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02445) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02450) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02454) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02458) strncmp("__nl_symbol_ptr", "__objc_imageinfo", 16, ) = -1
(78391) (0.02462) strncmp("__got", "__objc_imageinfo", 16, ) = -8
(78391) (0.02473) strncmp("__la_symbol_ptr", "__objc_imageinfo", 16, ) = -3
(78391) (0.02477) strncmp("__const", "__objc_imageinfo", 16, ) = -12
(78391) (0.02482) strncmp("__objc_classlist[SNIP]", "__objc_imageinfo", 16, ) = -6
(78391) (0.02486) strncmp("__objc_nlclslist[SNIP]", "__objc_imageinfo", 16, ) = 5
(78391) (0.02491) strncmp("__objc_protolist[SNIP]", "__objc_imageinfo", 16, ) = 7
(78391) (0.02495) strncmp("__objc_imageinfo[SNIP]", "__objc_imageinfo", 16, ) = 0
(78391) (0.02500) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02505) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02509) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02514) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02519) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02524) strncmp("__got", "__objc_imageinfo", 16, ) = -8
(78391) (0.02529) strncmp("__nl_symbol_ptr", "__objc_imageinfo", 16, ) = -1
(78391) (0.02534) strncmp("__la_symbol_ptr", "__objc_imageinfo", 16, ) = -3
(78391) (0.02541) strncmp("__const", "__objc_imageinfo", 16, ) = -12
(78391) (0.02547) strncmp("__objc_classlist[SNIP]", "__objc_imageinfo", 16, ) = -6
(78391) (0.02553) strncmp("__objc_protolist[SNIP]", "__objc_imageinfo", 16, ) = 7
(78391) (0.02559) strncmp("__objc_imageinfo[SNIP]", "__objc_imageinfo", 16, ) = 0
(78391) (0.02567) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02575) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02583) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02591) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02599) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02607) strncmp("__got", "__objc_imageinfo", 16, ) = -8
(78391) (0.02615) strncmp("__nl_symbol_ptr", "__objc_imageinfo", 16, ) = -1
(78391) (0.02625) strncmp("__la_symbol_ptr", "__objc_imageinfo", 16, ) = -3
(78391) (0.02634) strncmp("__objc_init_func[SNIP]", "__objc_imageinfo", 16, ) = 1 [took: 0.00012]
(78391) (0.02651) strncmp("__const", "__objc_imageinfo", 16, ) = -12 [took: 0.00014]
(78391) (0.02665) strncmp("__objc_classlist[SNIP]", "__objc_imageinfo", 16, ) = -6
(78391) (0.02676) strncmp("__objc_nlclslist[SNIP]", "__objc_imageinfo", 16, ) = 5 [took: 0.00010]
(78391) (0.02687) strncmp("__objc_protolist[SNIP]", "__objc_imageinfo", 16, ) = 7
(78391) (0.02693) strncmp("__objc_imageinfo[SNIP]", "__objc_imageinfo", 16, ) = 0
(78391) (0.02698) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02709) malloc(32, ) = 0x7fff4bc00270
(78391) (0.02722) memcpy(0x7fff4bc00270, 0x7fff50c035a0, 32, ) = 0x7fff4bc00270
(78391) (0.02726) bcopy(0x7fff50c035a0, 0x7fff4bc00270, 32, ) [took: 0.00017]
(78391) (0.02732) free(0x7fff4bc00290, )
(78391) (0.02734) free(0x7fff4bc00260, )
(78391) (0.02737) free(0x7fff4bc002b0, )
(78391) (0.02740) malloc(32, ) = 0x7fff4bc002b0
(78391) (0.02744) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02749) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02754) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02758) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02763) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.02768) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.02774) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.02778) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.02784) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.02789) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02796) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02800) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02805) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02810) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02815) strncmp("__got", "__objc_classlist", 16, ) = -8 [took: 0.00034]
(78391) (0.02850) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.02856) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.02860) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.02865) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.02869) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02876) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02881) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02885) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02893) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02898) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.02902) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.02907) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.02912) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.02917) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.02921) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02926) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02930) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02935) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02938) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02943) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.02948) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.02953) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.02959) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.02966) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.02970) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.02982) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.02986) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.02991) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.02995) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.03001) strncmp("__got", "__objc_classlist", 16, ) = -8
(78391) (0.03006) strncmp("__nl_symbol_ptr", "__objc_classlist", 16, ) = -1
(78391) (0.03011) strncmp("__la_symbol_ptr", "__objc_classlist", 16, ) = -3
(78391) (0.03016) strncmp("__objc_init_func[SNIP]", "__objc_classlist", 16, ) = 6
(78391) (0.03020) strncmp("__const", "__objc_classlist", 16, ) = -12
(78391) (0.03026) strncmp("__objc_classlist[SNIP]", "__objc_classlist", 16, ) = 0
(78391) (0.03031) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.03038) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03044) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.03051) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03057) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.03063) strncmp("__got", "__objc_msgrefs", 16, ) = -8
(78391) (0.03069) strncmp("__nl_symbol_ptr", "__objc_msgrefs", 16, ) = -1
(78391) (0.03075) strncmp("__la_symbol_ptr", "__objc_msgrefs", 16, ) = -3
(78391) (0.03081) strncmp("__const", "__objc_msgrefs", 16, ) = -12
(78391) (0.03087) strncmp("__objc_classlist[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.03094) strncmp("__objc_nlclslist[SNIP]", "__objc_msgrefs", 16, ) = 1
(78391) (0.03100) strncmp("__objc_protolist[SNIP]", "__objc_msgrefs", 16, ) = 3
(78391) (0.03105) strncmp("__objc_imageinfo[SNIP]", "__objc_msgrefs", 16, ) = -4
(78391) (0.03112) strncmp("__objc_const", "__objc_msgrefs", 16, ) = -10
(78391) (0.03118) strncmp("__objc_selrefs", "__objc_msgrefs", 16, ) = 6
(78391) (0.03122) strncmp("__objc_classrefs[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.03127) strncmp("__objc_superrefs[SNIP]", "__objc_msgrefs", 16, ) = 6
(78391) (0.03131) strncmp("__objc_data", "__objc_msgrefs", 16, ) = -9
(78391) (0.03135) strncmp("__data", "__objc_msgrefs", 16, ) = -11
(78391) (0.03140) strncmp("__crash_info", "__objc_msgrefs", 16, ) = -12
(78391) (0.03145) strncmp("__common", "__objc_msgrefs", 16, ) = -12
(78391) (0.03149) strncmp("__bss", "__objc_msgrefs", 16, ) = -13
(78391) (0.03154) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03157) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.03162) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03166) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.03170) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03175) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.03179) strcmp("__LINKEDIT", "__TEXT", ) = -8 [took: 0.00019]
(78391) (0.03201) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.03206) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03211) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.03215) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03220) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.03226) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03231) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.03236) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03240) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.03244) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03248) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.03253) strncmp("__got", "__objc_msgrefs", 16, ) = -8
(78391) (0.03259) strncmp("__nl_symbol_ptr", "__objc_msgrefs", 16, ) = -1
(78391) (0.03264) strncmp("__la_symbol_ptr", "__objc_msgrefs", 16, ) = -3
(78391) (0.03269) strncmp("__const", "__objc_msgrefs", 16, ) = -12
(78391) (0.03274) strncmp("__objc_classlist[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.03281) strncmp("__objc_nlclslist[SNIP]", "__objc_msgrefs", 16, ) = 1
(78391) (0.03287) strncmp("__objc_protolist[SNIP]", "__objc_msgrefs", 16, ) = 3
(78391) (0.03294) strncmp("__objc_imageinfo[SNIP]", "__objc_msgrefs", 16, ) = -4
(78391) (0.03302) strncmp("__objc_const", "__objc_msgrefs", 16, ) = -10
(78391) (0.03310) strncmp("__objc_selrefs", "__objc_msgrefs", 16, ) = 6
(78391) (0.03318) strncmp("__objc_classrefs[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.03326) strncmp("__objc_superrefs[SNIP]", "__objc_msgrefs", 16, ) = 6
(78391) (0.03334) strncmp("__objc_data", "__objc_msgrefs", 16, ) = -9
(78391) (0.03342) strncmp("__data", "__objc_msgrefs", 16, ) = -11
(78391) (0.03349) strncmp("__crash_info", "__objc_msgrefs", 16, ) = -12
(78391) (0.03356) strncmp("__bss", "__objc_msgrefs", 16, ) = -13
(78391) (0.03365) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03371) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.03380) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03386) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.03393) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03400) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.03407) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03415) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.03421) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03430) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16 [took: 0.00010]
(78391) (0.03442) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03450) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95 [took: 0.00011]
(78391) (0.03463) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03472) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.03483) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03505) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.03511) strcmp("__DATA", "__TEXT", ) = -16 [took: 0.00110]
(78391) (0.03624) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.03629) strncmp("__nl_symbol_ptr", "__objc_msgrefs", 16, ) = -1
(78391) (0.03639) strncmp("__got", "__objc_msgrefs", 16, ) = -8
(78391) (0.03643) strncmp("__la_symbol_ptr", "__objc_msgrefs", 16, ) = -3
(78391) (0.03647) strncmp("__const", "__objc_msgrefs", 16, ) = -12
(78391) (0.03651) strncmp("__objc_classlist[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.03655) strncmp("__objc_nlclslist[SNIP]", "__objc_msgrefs", 16, ) = 1
(78391) (0.03659) strncmp("__objc_protolist[SNIP]", "__objc_msgrefs", 16, ) = 3
(78391) (0.03664) strncmp("__objc_imageinfo[SNIP]", "__objc_msgrefs", 16, ) = -4
(78391) (0.03668) strncmp("__objc_const", "__objc_msgrefs", 16, ) = -10
(78391) (0.03673) strncmp("__objc_selrefs", "__objc_msgrefs", 16, ) = 6
(78391) (0.03690) strncmp("__objc_classrefs[SNIP]", "__objc_msgrefs", 16, ) = -10 [took: 0.00017]
(78391) (0.03697) strncmp("__objc_superrefs[SNIP]", "__objc_msgrefs", 16, ) = 6
(78391) (0.03701) strncmp("__objc_ivar", "__objc_msgrefs", 16, ) = -4 [took: 0.00022]
(78391) (0.03725) strncmp("__objc_data", "__objc_msgrefs", 16, ) = -9 [took: 0.00011]
(78391) (0.03737) strncmp("__data", "__objc_msgrefs", 16, ) = -11
(78391) (0.03742) strncmp("__crash_info", "__objc_msgrefs", 16, ) = -12
(78391) (0.03746) strncmp("__bss", "__objc_msgrefs", 16, ) = -13
(78391) (0.03751) strncmp("__common", "__objc_msgrefs", 16, ) = -12
(78391) (0.03755) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03759) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.03764) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03768) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.03772) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03776) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.03780) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03784) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.03789) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03793) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.03797) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03801) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.03806) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03810) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.03814) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03819) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.03823) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03827) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.03831) strncmp("__got", "__objc_msgrefs", 16, ) = -8
(78391) (0.03836) strncmp("__nl_symbol_ptr", "__objc_msgrefs", 16, ) = -1
(78391) (0.03841) strncmp("__la_symbol_ptr", "__objc_msgrefs", 16, ) = -3
(78391) (0.03846) strncmp("__const", "__objc_msgrefs", 16, ) = -12
(78391) (0.03850) strncmp("__objc_classlist[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.03855) strncmp("__objc_protolist[SNIP]", "__objc_msgrefs", 16, ) = 3
(78391) (0.03860) strncmp("__objc_imageinfo[SNIP]", "__objc_msgrefs", 16, ) = -4
(78391) (0.03865) strncmp("__objc_const", "__objc_msgrefs", 16, ) = -10
(78391) (0.03870) strncmp("__objc_selrefs", "__objc_msgrefs", 16, ) = 6
(78391) (0.03874) strncmp("__objc_classrefs[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.03879) strncmp("__objc_superrefs[SNIP]", "__objc_msgrefs", 16, ) = 6
(78391) (0.03883) strncmp("__objc_ivar", "__objc_msgrefs", 16, ) = -4
(78391) (0.03888) strncmp("__objc_data", "__objc_msgrefs", 16, ) = -9
(78391) (0.03893) strncmp("__data", "__objc_msgrefs", 16, ) = -11
(78391) (0.03897) strncmp("__common", "__objc_msgrefs", 16, ) = -12
(78391) (0.03902) strncmp("__bss", "__objc_msgrefs", 16, ) = -13
(78391) (0.03907) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03911) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.03918) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03922) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.03926) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03931) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.03935) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03939) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.03944) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03948) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.03952) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03957) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.03962) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.03966) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.03971) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.03975) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.03979) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.03984) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.03988) strncmp("__got", "__objc_msgrefs", 16, ) = -8
(78391) (0.03993) strncmp("__nl_symbol_ptr", "__objc_msgrefs", 16, ) = -1
(78391) (0.03998) strncmp("__la_symbol_ptr", "__objc_msgrefs", 16, ) = -3
(78391) (0.04003) strncmp("__objc_init_func[SNIP]", "__objc_msgrefs", 16, ) = -4
(78391) (0.04008) strncmp("__const", "__objc_msgrefs", 16, ) = -12
(78391) (0.04012) strncmp("__objc_classlist[SNIP]", "__objc_msgrefs", 16, ) = -10
(78391) (0.04017) strncmp("__objc_nlclslist[SNIP]", "__objc_msgrefs", 16, ) = 1
(78391) (0.04021) strncmp("__objc_protolist[SNIP]", "__objc_msgrefs", 16, ) = 3
(78391) (0.04026) strncmp("__objc_imageinfo[SNIP]", "__objc_msgrefs", 16, ) = -4
(78391) (0.04030) strncmp("__objc_const", "__objc_msgrefs", 16, ) = -10
(78391) (0.04035) strncmp("__objc_selrefs", "__objc_msgrefs", 16, ) = 6
(78391) (0.04039) strncmp("__objc_ivar", "__objc_msgrefs", 16, ) = -4
(78391) (0.04043) strncmp("__objc_data", "__objc_msgrefs", 16, ) = -9
(78391) (0.04048) strncmp("__data", "__objc_msgrefs", 16, ) = -11
(78391) (0.04052) strncmp("__objc_msg_break[SNIP]", "__objc_msgrefs", 16, ) = -19
(78391) (0.04056) strncmp("__objc_opt_rw", "__objc_msgrefs", 16, ) = 2
(78391) (0.04061) strncmp("__objc_opt_ptrs", "__objc_msgrefs", 16, ) = 2 [took: 0.00025]
(78391) (0.04087) strncmp("__crash_info", "__objc_msgrefs", 16, ) = -12
(78391) (0.04092) strncmp("__bss", "__objc_msgrefs", 16, ) = -13
(78391) (0.04096) strncmp("__common", "__objc_msgrefs", 16, ) = -12
(78391) (0.04100) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.04104) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.04108) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.04112) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.04116) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.04120) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.04125) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.04129) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.04133) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.04137) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.04142) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.04146) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.04151) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.04156) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.04172) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.04176) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.04181) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.04185) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.04190) strncmp("__got", "__objc_protolist", 16, ) = -8
(78391) (0.04195) strncmp("__nl_symbol_ptr", "__objc_protolist", 16, ) = -1
(78391) (0.04200) strncmp("__la_symbol_ptr", "__objc_protolist", 16, ) = -3
(78391) (0.04205) strncmp("__const", "__objc_protolist", 16, ) = -12
(78391) (0.04211) strncmp("__objc_classlist[SNIP]", "__objc_protolist", 16, ) = -13
(78391) (0.04216) strncmp("__objc_nlclslist[SNIP]", "__objc_protolist", 16, ) = -2
(78391) (0.04222) strncmp("__objc_protolist[SNIP]", "__objc_protolist", 16, ) = 0
(78391) (0.04228) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.04234) strlen("NSObject", ) = 8
(78391) (0.04242) strcmp("NSObject", "NSObject", ) = 0
(78391) (0.04248) strlen("OS_object", ) = 9
(78391) (0.04251) strcmp("OS_object", "OS_object", ) = 0
(78391) (0.04256) strlen("OS_dispatch_object", ) = 18
(78391) (0.04260) strcmp("OS_dispatch_object", "OS_dispatch_object", ) = 0
(78391) (0.04265) strlen("OS_dispatch_queue", ) = 17
(78391) (0.04269) strcmp("OS_dispatch_queue", "OS_dispatch_queue", ) = 0
(78391) (0.04273) strlen("OS_dispatch_source", ) = 18
(78391) (0.04277) strcmp("OS_dispatch_source", "OS_dispatch_source", ) = 0
(78391) (0.04281) strlen("OS_dispatch_source_interval", ) = 27
(78391) (0.04286) strcmp("OS_dispatch_source_interval", "OS_dispatch_source_interval", ) = 0
(78391) (0.04290) strlen("OS_dispatch_source_timer_with_aggregate", ) = 39
(78391) (0.04293) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_dispatch_source_timer_with_aggregate", ) = 0
(78391) (0.04297) strlen("OS_dispatch_source_write", ) = 24
(78391) (0.04301) strcmp("OS_dispatch_source_write", "OS_dispatch_source_write", ) = 0
(78391) (0.04305) strcmp("OS_dispatch_object", "OS_dispatch_source_vnode", ) = -4
(78391) (0.04309) strlen("OS_dispatch_source_vnode", ) = 24
(78391) (0.04313) strcmp("OS_dispatch_source_vnode", "OS_dispatch_source_vnode", ) = 0
(78391) (0.04321) strcmp("OS_dispatch_object", "OS_dispatch_source_vnode", ) = -4
(78391) (0.04326) strlen("OS_dispatch_source_timer", ) = 24
(78391) (0.04330) strcmp("OS_dispatch_source_timer", "OS_dispatch_source_timer", ) = 0
(78391) (0.04337) strlen("OS_dispatch_source_signal", ) = 25
(78391) (0.04340) strcmp("OS_dispatch_source_signal", "OS_dispatch_source_signal", ) = 0
(78391) (0.04344) strlen("OS_dispatch_source_read", ) = 23
(78391) (0.04347) strcmp("OS_dispatch_source_read", "OS_dispatch_source_read", ) = 0
(78391) (0.04352) strlen("OS_dispatch_source_proc", ) = 23
(78391) (0.04355) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_proc", ) = 0
(78391) (0.04360) strlen("OS_dispatch_source_memorypressure", ) = 33
(78391) (0.04363) strcmp("OS_dispatch_source_memorypressure", "OS_dispatch_source_memorypressure", ) = 0
(78391) (0.04367) strcmp("OS_dispatch_source_interval", "OS_dispatch_source_mach_recv", ) = -4
(78391) (0.04373) strlen("OS_dispatch_source_mach_recv", ) = 28
(78391) (0.04377) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_source_mach_recv", ) = 0
(78391) (0.04381) strcmp("OS_dispatch_source_interval", "OS_dispatch_source_mach_recv", ) = -4
(78391) (0.04386) strlen("OS_dispatch_source_mach_send", ) = 28
(78391) (0.04389) strcmp("OS_dispatch_source_mach_send", "OS_dispatch_source_mach_send", ) = 0
(78391) (0.04394) strcmp("OS_object", "OS_dispatch_source_data_or", ) = 11
(78391) (0.04397) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_data_or", ) = 12
(78391) (0.04401) strlen("OS_dispatch_source_data_or", ) = 26
(78391) (0.04405) strcmp("OS_dispatch_source_data_or", "OS_dispatch_source_data_or", ) = 0
(78391) (0.04409) strcmp("OS_object", "OS_dispatch_source_data_or", ) = 11
(78391) (0.04412) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_data_or", ) = 12
(78391) (0.04417) strcmp("OS_object", "OS_dispatch_source_data_add", ) = 11
(78391) (0.04421) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_data_add", ) = 12
(78391) (0.04426) strcmp("OS_dispatch_source_data_or", "OS_dispatch_source_data_add", ) = 14
(78391) (0.04431) strlen("OS_dispatch_source_data_add", ) = 27
(78391) (0.04434) strcmp("OS_dispatch_source_data_add", "OS_dispatch_source_data_add", ) = 0
(78391) (0.04438) strcmp("OS_object", "OS_dispatch_source_data_add", ) = 11
(78391) (0.04442) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_data_add", ) = 12
(78391) (0.04444) strcmp("OS_dispatch_source_data_or", "OS_dispatch_source_data_add", ) = 14
(78391) (0.04446) strcmp("OS_dispatch_queue", "OS_dispatch_mach", ) = 4
(78391) (0.04450) strcmp("OS_dispatch_source_signal", "OS_dispatch_mach", ) = 6
(78391) (0.04455) strcmp("OS_object", "OS_dispatch_mach", ) = 11
(78391) (0.04459) strcmp("OS_dispatch_source_proc", "OS_dispatch_mach", ) = 6
(78391) (0.04464) strcmp("OS_dispatch_source_data_or", "OS_dispatch_mach", ) = 6
(78391) (0.04469) strcmp("OS_dispatch_source_data_add", "OS_dispatch_mach", ) = 6
(78391) (0.04472) strlen("OS_dispatch_mach", ) = 16
(78391) (0.04474) strcmp("OS_dispatch_mach", "OS_dispatch_mach", ) = 0
(78391) (0.04478) strcmp("OS_dispatch_queue", "OS_dispatch_mach", ) = 4
(78391) (0.04482) strcmp("OS_dispatch_source_signal", "OS_dispatch_mach", ) = 6
(78391) (0.04486) strcmp("OS_object", "OS_dispatch_mach", ) = 11
(78391) (0.04490) strcmp("OS_dispatch_source_proc", "OS_dispatch_mach", ) = 6
(78391) (0.04495) strcmp("OS_dispatch_source_data_or", "OS_dispatch_mach", ) = 6
(78391) (0.04499) strcmp("OS_dispatch_source_data_add", "OS_dispatch_mach", ) = 6
(78391) (0.04504) strcmp("OS_dispatch_source_data_or", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.04509) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.04514) strcmp("OS_dispatch_mach", "OS_dispatch_queue_runloop", ) = -4
(78391) (0.04519) strcmp("OS_dispatch_source", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.04523) strlen("OS_dispatch_queue_runloop", ) = 25
(78391) (0.04525) strcmp("OS_dispatch_queue_runloop", "OS_dispatch_queue_runloop", ) = 0
(78391) (0.04529) strcmp("OS_dispatch_source_data_or", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.04533) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.04538) strcmp("OS_dispatch_mach", "OS_dispatch_queue_runloop", ) = -4
(78391) (0.04541) strcmp("OS_dispatch_source", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.04546) strcmp("OS_dispatch_source_read", "OS_dispatch_semaphore", ) = 10
(78391) (0.04550) strlen("OS_dispatch_semaphore", ) = 21
(78391) (0.04554) strcmp("OS_dispatch_semaphore", "OS_dispatch_semaphore", ) = 0
(78391) (0.04562) strcmp("OS_dispatch_source_read", "OS_dispatch_semaphore", ) = 10
(78391) (0.04567) strcmp("OS_dispatch_source_vnode", "OS_dispatch_group", ) = 12
(78391) (0.04571) strlen("OS_dispatch_group", ) = 17
(78391) (0.04574) strcmp("OS_dispatch_group", "OS_dispatch_group", ) = 0
(78391) (0.04579) strcmp("OS_dispatch_source_vnode", "OS_dispatch_group", ) = 12
(78391) (0.04583) strcmp("OS_dispatch_source_interval", "OS_dispatch_queue_serial", ) = 2
(78391) (0.04586) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_queue_serial", ) = 2
(78391) (0.04591) strlen("OS_dispatch_queue_serial", ) = 24
(78391) (0.04594) strcmp("OS_dispatch_queue_serial", "OS_dispatch_queue_serial", ) = 0
(78391) (0.04598) strcmp("OS_dispatch_source_interval", "OS_dispatch_queue_serial", ) = 2
(78391) (0.04602) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_queue_serial", ) = 2
(78391) (0.04607) strcmp("OS_dispatch_queue_serial", "OS_dispatch_queue_concurrent", ) = 16
(78391) (0.04613) strcmp("OS_dispatch_source_mach_send", "OS_dispatch_queue_concurrent", ) = 2
(78391) (0.04618) strlen("OS_dispatch_queue_concurrent", ) = 28
(78391) (0.04622) strcmp("OS_dispatch_queue_concurrent", "OS_dispatch_queue_concurrent", ) = 0
(78391) (0.04626) strcmp("OS_dispatch_queue_serial", "OS_dispatch_queue_concurrent", ) = 16
(78391) (0.04630) strcmp("OS_dispatch_source_mach_send", "OS_dispatch_queue_concurrent", ) = 2
(78391) (0.04634) strcmp("OS_dispatch_source_data_or", "OS_dispatch_queue_main", ) = 2
(78391) (0.04638) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_main", ) = 2
(78391) (0.04642) strcmp("OS_dispatch_mach", "OS_dispatch_queue_main", ) = -4
(78391) (0.04647) strcmp("OS_dispatch_source", "OS_dispatch_queue_main", ) = 2
(78391) (0.04651) strcmp("OS_dispatch_queue_runloop", "OS_dispatch_queue_main", ) = 5
(78391) (0.04655) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_dispatch_queue_main", ) = 2
(78391) (0.04660) strcmp("OS_dispatch_source_read", "OS_dispatch_queue_main", ) = 2
(78391) (0.04665) strcmp("OS_dispatch_semaphore", "OS_dispatch_queue_main", ) = 2
(78391) (0.04669) strlen("OS_dispatch_queue_main", ) = 22
(78391) (0.04672) strcmp("OS_dispatch_queue_main", "OS_dispatch_queue_main", ) = 0
(78391) (0.04678) strcmp("OS_dispatch_source_data_or", "OS_dispatch_queue_main", ) = 2
(78391) (0.04682) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_main", ) = 2
(78391) (0.04686) strcmp("OS_dispatch_mach", "OS_dispatch_queue_main", ) = -4
(78391) (0.04691) strcmp("OS_dispatch_source", "OS_dispatch_queue_main", ) = 2
(78391) (0.04695) strcmp("OS_dispatch_queue_runloop", "OS_dispatch_queue_main", ) = 5
(78391) (0.04700) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_dispatch_queue_main", ) = 2
(78391) (0.04704) strcmp("OS_dispatch_source_read", "OS_dispatch_queue_main", ) = 2
(78391) (0.04708) strcmp("OS_dispatch_semaphore", "OS_dispatch_queue_main", ) = 2
(78391) (0.04716) strcmp("OS_object", "OS_dispatch_source_data_or", ) = 11
(78391) (0.04719) strcmp("OS_object", "OS_dispatch_source_data_add", ) = 11
(78391) (0.04721) strcmp("OS_dispatch_source_data_or", "OS_dispatch_source_data_add", ) = 14
(78391) (0.04724) strcmp("OS_dispatch_source_proc", "OS_dispatch_source_data_add", ) = 12
(78391) (0.04728) strcmp("OS_dispatch_queue", "OS_dispatch_mach", ) = 4
(78391) (0.04731) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_runloop", ) = 2
(78391) (0.04734) strcmp("OS_dispatch_source_data_add", "OS_dispatch_queue_main", ) = 2
(78391) (0.04737) strcmp("OS_dispatch_queue_runloop", "OS_dispatch_queue_main", ) = 5
(78391) (0.04741) strcmp("OS_dispatch_source_interval", "OS_dispatch_queue_serial", ) = 2
(78391) (0.04745) free(0x7fff4be00020, )
(78391) (0.04748) strlen("OS_dispatch_queue_root", ) = 22
(78391) (0.04751) strcmp("OS_dispatch_queue_root", "OS_dispatch_queue_root", ) = 0
(78391) (0.04755) strlen("OS_dispatch_queue_mgr", ) = 21
(78391) (0.04758) strcmp("OS_dispatch_queue_mgr", "OS_dispatch_queue_mgr", ) = 0
(78391) (0.04762) strlen("OS_dispatch_queue_attr", ) = 22
(78391) (0.04765) strcmp("OS_dispatch_queue_attr", "OS_dispatch_queue_attr", ) = 0
(78391) (0.04770) strlen("OS_dispatch_mach_msg", ) = 20
(78391) (0.04774) strcmp("OS_dispatch_mach_msg", "OS_dispatch_mach_msg", ) = 0
(78391) (0.04779) strlen("OS_dispatch_io", ) = 14
(78391) (0.04782) strcmp("OS_dispatch_io", "OS_dispatch_io", ) = 0
(78391) (0.04786) strcmp("OS_dispatch_source_mach_send", "OS_dispatch_operation", ) = 4
(78391) (0.04791) strlen("OS_dispatch_operation", ) = 21
(78391) (0.04794) strcmp("OS_dispatch_operation", "OS_dispatch_operation", ) = 0
(78391) (0.04801) strcmp("OS_dispatch_source_mach_send", "OS_dispatch_operation", ) = 4
(78391) (0.04805) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_disk", ) = 15
(78391) (0.04810) strlen("OS_dispatch_disk", ) = 16
(78391) (0.04814) strcmp("OS_dispatch_disk", "OS_dispatch_disk", ) = 0
(78391) (0.04820) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_disk", ) = 15
(78391) (0.04824) strcmp("OS_dispatch_mach", "OS_dispatch_data", ) = 9
(78391) (0.04828) strlen("OS_dispatch_data", ) = 16
(78391) (0.04831) strcmp("OS_dispatch_data", "OS_dispatch_data", ) = 0
(78391) (0.04835) strcmp("OS_dispatch_mach", "OS_dispatch_data", ) = 9
(78391) (0.04838) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.04843) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.04850) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.04857) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.04863) strncmp("__got", "__objc_protolist", 16, ) = -8
(78391) (0.04869) strncmp("__nl_symbol_ptr", "__objc_protolist", 16, ) = -1
(78391) (0.04875) strncmp("__la_symbol_ptr", "__objc_protolist", 16, ) = -3
(78391) (0.04881) strncmp("__const", "__objc_protolist", 16, ) = -12
(78391) (0.04887) strncmp("__objc_classlist[SNIP]", "__objc_protolist", 16, ) = -13
(78391) (0.04892) strncmp("__objc_nlclslist[SNIP]", "__objc_protolist", 16, ) = -2
(78391) (0.04896) strncmp("__objc_protolist[SNIP]", "__objc_protolist", 16, ) = 0
(78391) (0.04900) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.04906) strcmp("NSObject", "NSObject", ) = 0
(78391) (0.04909) strcmp("OS_dispatch_source_read", "OS_xpc_object", ) = -20
(78391) (0.04913) strlen("OS_xpc_object", ) = 13
(78391) (0.04916) strcmp("OS_xpc_object", "OS_xpc_object", ) = 0
(78391) (0.04919) strcmp("OS_dispatch_source_read", "OS_xpc_object", ) = -20
(78391) (0.04924) strlen("OS_xpc_connection", ) = 17
(78391) (0.04927) strcmp("OS_xpc_connection", "OS_xpc_connection", ) = 0
(78391) (0.04930) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_service", ) = -20
(78391) (0.04934) strcmp("OS_dispatch_disk", "OS_xpc_service", ) = -20
(78391) (0.04938) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_service", ) = -20
(78391) (0.04942) strcmp("OS_dispatch_source_mach_send", "OS_xpc_service", ) = -20
(78391) (0.04946) strcmp("OS_dispatch_operation", "OS_xpc_service", ) = -20
(78391) (0.04950) strlen("OS_xpc_service", ) = 14
(78391) (0.04953) strcmp("OS_xpc_service", "OS_xpc_service", ) = 0
(78391) (0.04957) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_service", ) = -20
(78391) (0.04961) strcmp("OS_dispatch_disk", "OS_xpc_service", ) = -20
(78391) (0.04966) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_service", ) = -20
(78391) (0.04970) strcmp("OS_dispatch_source_mach_send", "OS_xpc_service", ) = -20
(78391) (0.04975) strcmp("OS_dispatch_operation", "OS_xpc_service", ) = -20
(78391) (0.04979) strcmp("OS_dispatch_queue_runloop", "OS_xpc_null", ) = -20
(78391) (0.04984) strcmp("OS_dispatch_queue_main", "OS_xpc_null", ) = -20
(78391) (0.04988) strcmp("OS_dispatch_queue_root", "OS_xpc_null", ) = -20
(78391) (0.04992) strcmp("OS_dispatch_queue_attr", "OS_xpc_null", ) = -20
(78391) (0.04996) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_xpc_null", ) = -20
(78391) (0.05001) strcmp("OS_dispatch_semaphore", "OS_xpc_null", ) = -20
(78391) (0.05005) strlen("OS_xpc_null", ) = 11
(78391) (0.05009) strcmp("OS_xpc_null", "OS_xpc_null", ) = 0
(78391) (0.05013) strcmp("OS_dispatch_queue_runloop", "OS_xpc_null", ) = -20
(78391) (0.05018) strcmp("OS_dispatch_queue_main", "OS_xpc_null", ) = -20
(78391) (0.05023) strcmp("OS_dispatch_queue_root", "OS_xpc_null", ) = -20
(78391) (0.05026) strcmp("OS_dispatch_queue_attr", "OS_xpc_null", ) = -20
(78391) (0.05029) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_xpc_null", ) = -20
(78391) (0.05033) strcmp("OS_dispatch_semaphore", "OS_xpc_null", ) = -20
(78391) (0.05036) strcmp("OS_object", "OS_xpc_bool", ) = -9
(78391) (0.05041) strcmp("OS_dispatch_source_data_or", "OS_xpc_bool", ) = -20
(78391) (0.05045) strcmp("OS_dispatch_source_proc", "OS_xpc_bool", ) = -20
(78391) (0.05048) strcmp("OS_dispatch_source_data_add", "OS_xpc_bool", ) = -20
(78391) (0.05051) strcmp("OS_dispatch_queue_runloop", "OS_xpc_bool", ) = -20
(78391) (0.05055) strcmp("OS_dispatch_queue_main", "OS_xpc_bool", ) = -20
(78391) (0.05058) strcmp("OS_dispatch_queue_root", "OS_xpc_bool", ) = -20
(78391) (0.05062) strcmp("OS_dispatch_queue_attr", "OS_xpc_bool", ) = -20
(78391) (0.05066) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_xpc_bool", ) = -20
(78391) (0.05070) strcmp("OS_dispatch_semaphore", "OS_xpc_bool", ) = -20
(78391) (0.05074) strcmp("OS_xpc_null", "OS_xpc_bool", ) = 12
(78391) (0.05078) strcmp("OS_xpc_connection", "OS_xpc_bool", ) = 1
(78391) (0.05082) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_bool", ) = -20
(78391) (0.05098) strcmp("OS_dispatch_disk", "OS_xpc_bool", ) = -20 [took: 0.00017]
(78391) (0.05104) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_bool", ) = -20
(78391) (0.05107) strcmp("OS_dispatch_source_mach_send", "OS_xpc_bool", ) = -20
(78391) (0.05111) strcmp("OS_dispatch_operation", "OS_xpc_bool", ) = -20
(78391) (0.05115) strcmp("OS_xpc_service", "OS_xpc_bool", ) = 17
(78391) (0.05119) strcmp("OS_dispatch_source_timer", "OS_xpc_bool", ) = -20
(78391) (0.05123) strlen("OS_xpc_bool", ) = 11
(78391) (0.05126) strcmp("OS_xpc_bool", "OS_xpc_bool", ) = 0
(78391) (0.05130) strcmp("OS_object", "OS_xpc_bool", ) = -9
(78391) (0.05134) strcmp("OS_dispatch_source_data_or", "OS_xpc_bool", ) = -20
(78391) (0.05138) strcmp("OS_dispatch_source_proc", "OS_xpc_bool", ) = -20
(78391) (0.05142) strcmp("OS_dispatch_source_data_add", "OS_xpc_bool", ) = -20
(78391) (0.05146) strcmp("OS_dispatch_queue_runloop", "OS_xpc_bool", ) = -20
(78391) (0.05150) strcmp("OS_dispatch_queue_main", "OS_xpc_bool", ) = -20
(78391) (0.05154) strcmp("OS_dispatch_queue_root", "OS_xpc_bool", ) = -20
(78391) (0.05158) strcmp("OS_dispatch_queue_attr", "OS_xpc_bool", ) = -20
(78391) (0.05161) strcmp("OS_dispatch_source_timer_with_aggregate", "OS_xpc_bool", ) = -20
(78391) (0.05165) strcmp("OS_dispatch_semaphore", "OS_xpc_bool", ) = -20
(78391) (0.05169) strcmp("OS_xpc_null", "OS_xpc_bool", ) = 12
(78391) (0.05173) strcmp("OS_xpc_connection", "OS_xpc_bool", ) = 1
(78391) (0.05177) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_bool", ) = -20
(78391) (0.05181) strcmp("OS_dispatch_disk", "OS_xpc_bool", ) = -20
(78391) (0.05185) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_bool", ) = -20
(78391) (0.05189) strcmp("OS_dispatch_source_mach_send", "OS_xpc_bool", ) = -20
(78391) (0.05193) strcmp("OS_dispatch_operation", "OS_xpc_bool", ) = -20
(78391) (0.05196) strcmp("OS_xpc_service", "OS_xpc_bool", ) = 17
(78391) (0.05200) strcmp("OS_dispatch_source_timer", "OS_xpc_bool", ) = -20
(78391) (0.05204) strlen("OS_xpc_int64", ) = 12
(78391) (0.05208) strcmp("OS_xpc_int64", "OS_xpc_int64", ) = 0 [took: 0.00012]
(78391) (0.05222) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uint64", ) = -20
(78391) (0.05226) strcmp("OS_dispatch_disk", "OS_xpc_uint64", ) = -20 [took: 0.00019]
(78391) (0.05246) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_uint64", ) = -20
(78391) (0.05250) strcmp("OS_dispatch_source_mach_send", "OS_xpc_uint64", ) = -20
(78391) (0.05255) strcmp("OS_dispatch_operation", "OS_xpc_uint64", ) = -20
(78391) (0.05259) strcmp("OS_xpc_service", "OS_xpc_uint64", ) = -2
(78391) (0.05263) strcmp("OS_dispatch_source_timer", "OS_xpc_uint64", ) = -20
(78391) (0.05268) strcmp("OS_xpc_bool", "OS_xpc_uint64", ) = -19
(78391) (0.05272) strlen("OS_xpc_uint64", ) = 13
(78391) (0.05275) strcmp("OS_xpc_uint64", "OS_xpc_uint64", ) = 0
(78391) (0.05280) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uint64", ) = -20 [took: 0.00648]
(78391) (0.05930) strcmp("OS_dispatch_disk", "OS_xpc_uint64", ) = -20
(78391) (0.05934) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_uint64", ) = -20
(78391) (0.05938) strcmp("OS_dispatch_source_mach_send", "OS_xpc_uint64", ) = -20
(78391) (0.05941) strcmp("OS_dispatch_operation", "OS_xpc_uint64", ) = -20
(78391) (0.05950) strcmp("OS_xpc_service", "OS_xpc_uint64", ) = -2
(78391) (0.05954) strcmp("OS_dispatch_source_timer", "OS_xpc_uint64", ) = -20
(78391) (0.05957) strcmp("OS_xpc_bool", "OS_xpc_uint64", ) = -19
(78391) (0.05963) strcmp("OS_dispatch_operation", "OS_xpc_double", ) = -20
(78391) (0.05967) strcmp("OS_xpc_service", "OS_xpc_double", ) = 15
(78391) (0.05971) strcmp("OS_dispatch_source_timer", "OS_xpc_double", ) = -20
(78391) (0.05975) strcmp("OS_xpc_bool", "OS_xpc_double", ) = -2
(78391) (0.05979) strcmp("OS_xpc_uint64", "OS_xpc_double", ) = 17
(78391) (0.05987) strcmp("OS_dispatch_object", "OS_xpc_double", ) = -20
(78391) (0.05991) strcmp("OS_dispatch_group", "OS_xpc_double", ) = -20
(78391) (0.05996) strlen("OS_xpc_double", ) = 13
(78391) (0.06000) strcmp("OS_xpc_double", "OS_xpc_double", ) = 0
(78391) (0.06008) strcmp("OS_dispatch_operation", "OS_xpc_double", ) = -20
(78391) (0.06013) strcmp("OS_xpc_service", "OS_xpc_double", ) = 15
(78391) (0.06017) strcmp("OS_dispatch_source_timer", "OS_xpc_double", ) = -20
(78391) (0.06021) strcmp("OS_xpc_bool", "OS_xpc_double", ) = -2
(78391) (0.06024) strcmp("OS_xpc_uint64", "OS_xpc_double", ) = 17
(78391) (0.06029) strcmp("OS_dispatch_object", "OS_xpc_double", ) = -20
(78391) (0.06039) strcmp("OS_dispatch_group", "OS_xpc_double", ) = -20 [took: 0.00011]
(78391) (0.06053) strcmp("OS_xpc_uint64", "OS_xpc_pointer", ) = 5 [took: 0.00012]
(78391) (0.06068) strcmp("OS_dispatch_object", "OS_xpc_pointer", ) = -20 [took: 0.00012]
(78391) (0.06082) strcmp("OS_dispatch_group", "OS_xpc_pointer", ) = -20 [took: 0.00012]
(78391) (0.06097) strcmp("OS_xpc_double", "OS_xpc_pointer", ) = -12 [took: 0.00012]
(78391) (0.06113) strlen("OS_xpc_pointer", ) = 14
(78391) (0.06123) strcmp("OS_xpc_pointer", "OS_xpc_pointer", ) = 0 [took: 0.00014]
(78391) (0.06145) strcmp("OS_xpc_uint64", "OS_xpc_pointer", ) = 5 [took: 0.00016]
(78391) (0.06163) strcmp("OS_dispatch_object", "OS_xpc_pointer", ) = -20 [took: 0.00015]
(78391) (0.06179) strcmp("OS_dispatch_group", "OS_xpc_pointer", ) = -20
(78391) (0.06185) strcmp("OS_xpc_double", "OS_xpc_pointer", ) = -12
(78391) (0.06192) strlen("OS_xpc_date", ) = 11
(78391) (0.06198) strcmp("OS_xpc_date", "OS_xpc_date", ) = 0
(78391) (0.06208) strcmp("OS_dispatch_data", "OS_xpc_data", ) = -20
(78391) (0.06215) strlen("OS_xpc_data", ) = 11
(78391) (0.06221) strcmp("OS_xpc_data", "OS_xpc_data", ) = 0
(78391) (0.06229) strcmp("OS_dispatch_data", "OS_xpc_data", ) = -20
(78391) (0.06236) strcmp("OS_dispatch_object", "OS_xpc_string", ) = -20
(78391) (0.06244) strcmp("OS_dispatch_group", "OS_xpc_string", ) = -20 [took: 0.00030]
(78391) (0.06276) strcmp("OS_xpc_double", "OS_xpc_string", ) = -15
(78391) (0.06284) strcmp("OS_xpc_pointer", "OS_xpc_string", ) = -3 [took: 0.00023]
(78391) (0.06309) strlen("OS_xpc_string", ) = 13
(78391) (0.06315) strcmp("OS_xpc_string", "OS_xpc_string", ) = 0
(78391) (0.06324) strcmp("OS_dispatch_object", "OS_xpc_string", ) = -20 [took: 0.00035]
(78391) (0.06364) strcmp("OS_dispatch_group", "OS_xpc_string", ) = -20
(78391) (0.06373) strcmp("OS_xpc_double", "OS_xpc_string", ) = -15
(78391) (0.06378) strcmp("OS_xpc_pointer", "OS_xpc_string", ) = -3
(78391) (0.06383) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uuid", ) = -20
(78391) (0.06388) strcmp("OS_dispatch_disk", "OS_xpc_uuid", ) = -20
(78391) (0.06394) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_uuid", ) = -20
(78391) (0.06401) strcmp("OS_dispatch_source_mach_send", "OS_xpc_uuid", ) = -20
(78391) (0.06409) strcmp("OS_dispatch_operation", "OS_xpc_uuid", ) = -20
(78391) (0.06415) strcmp("OS_xpc_service", "OS_xpc_uuid", ) = -2
(78391) (0.06423) strcmp("OS_dispatch_source_timer", "OS_xpc_uuid", ) = -20
(78391) (0.06429) strcmp("OS_xpc_bool", "OS_xpc_uuid", ) = -19
(78391) (0.06434) strcmp("OS_xpc_uint64", "OS_xpc_uuid", ) = -12
(78391) (0.06441) strcmp("OS_dispatch_object", "OS_xpc_uuid", ) = -20
(78391) (0.06451) strcmp("OS_dispatch_group", "OS_xpc_uuid", ) = -20
(78391) (0.06457) strcmp("OS_xpc_double", "OS_xpc_uuid", ) = -17
(78391) (0.06461) strcmp("OS_xpc_pointer", "OS_xpc_uuid", ) = -5
(78391) (0.06466) strcmp("OS_xpc_string", "OS_xpc_uuid", ) = -2
(78391) (0.06471) strlen("OS_xpc_uuid", ) = 11
(78391) (0.06477) strcmp("OS_xpc_uuid", "OS_xpc_uuid", ) = 0
(78391) (0.06482) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uuid", ) = -20
(78391) (0.06489) strcmp("OS_dispatch_disk", "OS_xpc_uuid", ) = -20
(78391) (0.06494) strcmp("OS_dispatch_queue_concurrent", "OS_xpc_uuid", ) = -20
(78391) (0.06498) strcmp("OS_dispatch_source_mach_send", "OS_xpc_uuid", ) = -20
(78391) (0.06503) strcmp("OS_dispatch_operation", "OS_xpc_uuid", ) = -20
(78391) (0.06508) strcmp("OS_xpc_service", "OS_xpc_uuid", ) = -2
(78391) (0.06512) strcmp("OS_dispatch_source_timer", "OS_xpc_uuid", ) = -20 [took: 0.00019]
(78391) (0.06532) strcmp("OS_xpc_bool", "OS_xpc_uuid", ) = -19
(78391) (0.06536) strcmp("OS_xpc_uint64", "OS_xpc_uuid", ) = -12
(78391) (0.06540) strcmp("OS_dispatch_object", "OS_xpc_uuid", ) = -20
(78391) (0.06544) strcmp("OS_dispatch_group", "OS_xpc_uuid", ) = -20
(78391) (0.06548) strcmp("OS_xpc_double", "OS_xpc_uuid", ) = -17
(78391) (0.06553) strcmp("OS_xpc_pointer", "OS_xpc_uuid", ) = -5
(78391) (0.06557) strcmp("OS_xpc_string", "OS_xpc_uuid", ) = -2
(78391) (0.06561) strlen("OS_xpc_fd", ) = 9
(78391) (0.06565) strcmp("OS_xpc_fd", "OS_xpc_fd", ) = 0
(78391) (0.06569) strcmp("OS_xpc_date", "OS_xpc_shmem", ) = -15
(78391) (0.06572) strcmp("OS_dispatch_queue", "OS_xpc_shmem", ) = -20
(78391) (0.06576) strcmp("OS_dispatch_mach", "OS_xpc_shmem", ) = -20
(78391) (0.06581) strcmp("OS_dispatch_data", "OS_xpc_shmem", ) = -20
(78391) (0.06585) strcmp("OS_xpc_data", "OS_xpc_shmem", ) = -15
(78391) (0.06589) strlen("OS_xpc_shmem", ) = 12
(78391) (0.06592) strcmp("OS_xpc_shmem", "OS_xpc_shmem", ) = 0
(78391) (0.06597) strcmp("OS_xpc_date", "OS_xpc_shmem", ) = -15
(78391) (0.06601) strcmp("OS_dispatch_queue", "OS_xpc_shmem", ) = -20
(78391) (0.06605) strcmp("OS_dispatch_mach", "OS_xpc_shmem", ) = -20
(78391) (0.06610) strcmp("OS_dispatch_data", "OS_xpc_shmem", ) = -20
(78391) (0.06614) strcmp("OS_xpc_data", "OS_xpc_shmem", ) = -15
(78391) (0.06619) strlen("OS_xpc_mach_send", ) = 16
(78391) (0.06622) strcmp("OS_xpc_mach_send", "OS_xpc_mach_send", ) = 0
(78391) (0.06628) strcmp("OS_object", "OS_dispatch_source_data_or", ) = 11
(78391) (0.06632) strcmp("OS_dispatch_source_mach_recv", "OS_dispatch_disk", ) = 15
(78391) (0.06637) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_service", ) = -20
(78391) (0.06642) strcmp("OS_dispatch_disk", "OS_xpc_service", ) = -20
(78391) (0.06646) strcmp("OS_dispatch_source_data_add", "OS_xpc_bool", ) = -20
(78391) (0.06650) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uint64", ) = -20
(78391) (0.06654) strcmp("OS_dispatch_disk", "OS_xpc_uint64", ) = -20
(78391) (0.06659) strcmp("OS_xpc_service", "OS_xpc_uint64", ) = -2
(78391) (0.06663) strcmp("OS_dispatch_operation", "OS_xpc_uint64", ) = -20
(78391) (0.06667) strcmp("OS_xpc_uint64", "OS_xpc_double", ) = 17
(78391) (0.06671) strcmp("OS_dispatch_object", "OS_xpc_string", ) = -20
(78391) (0.06675) strcmp("OS_dispatch_source_mach_recv", "OS_xpc_uuid", ) = -20
(78391) (0.06680) strcmp("OS_dispatch_disk", "OS_xpc_uuid", ) = -20
(78391) (0.06684) strcmp("OS_xpc_service", "OS_xpc_uuid", ) = -2
(78391) (0.06688) strcmp("OS_dispatch_operation", "OS_xpc_uuid", ) = -20
(78391) (0.06692) strcmp("OS_xpc_uint64", "OS_xpc_uuid", ) = -12
(78391) (0.06697) strcmp("OS_xpc_double", "OS_xpc_uuid", ) = -17
(78391) (0.06701) strcmp("OS_dispatch_source_timer", "OS_xpc_uuid", ) = -20
(78391) (0.06706) strcmp("OS_xpc_date", "OS_xpc_shmem", ) = -15
(78391) (0.06710) strcmp("OS_dispatch_queue", "OS_xpc_shmem", ) = -20
(78391) (0.06714) strcmp("OS_dispatch_data", "OS_xpc_shmem", ) = -20
(78391) (0.06719) free(0x7fff51000000, )
(78391) (0.06721) strlen("OS_xpc_array", ) = 12
(78391) (0.06724) strcmp("OS_xpc_array", "OS_xpc_array", ) = 0
(78391) (0.06730) strcmp("OS_dispatch_source_memorypressure", "OS_xpc_dictionary", ) = -20
(78391) (0.06734) strlen("OS_xpc_dictionary", ) = 17
(78391) (0.06738) strcmp("OS_xpc_dictionary", "OS_xpc_dictionary", ) = 0
(78391) (0.06744) strcmp("OS_dispatch_source_memorypressure", "OS_xpc_dictionary", ) = -20
(78391) (0.06748) strcmp("OS_dispatch_queue_runloop", "OS_xpc_error", ) = -20
(78391) (0.06752) strlen("OS_xpc_error", ) = 12
(78391) (0.06755) strcmp("OS_xpc_error", "OS_xpc_error", ) = 0
(78391) (0.06759) strcmp("OS_dispatch_queue_runloop", "OS_xpc_error", ) = -20
(78391) (0.06763) strlen("OS_xpc_endpoint", ) = 15
(78391) (0.06766) strcmp("OS_xpc_endpoint", "OS_xpc_endpoint", ) = 0
(78391) (0.06770) strlen("OS_xpc_serializer", ) = 17
(78391) (0.06773) strcmp("OS_xpc_serializer", "OS_xpc_serializer", ) = 0
(78391) (0.06777) strlen("OS_xpc_pipe", ) = 11
(78391) (0.06780) strcmp("OS_xpc_pipe", "OS_xpc_pipe", ) = 0
(78391) (0.06791) strlen("OS_xpc_mach_recv", ) = 16
(78391) (0.06796) strcmp("OS_xpc_mach_recv", "OS_xpc_mach_recv", ) = 0
(78391) (0.06803) strlen("OS_xpc_bundle", ) = 13
(78391) (0.06806) strcmp("OS_xpc_bundle", "OS_xpc_bundle", ) = 0
(78391) (0.06810) strcmp("OS_dispatch_mach", "OS_xpc_service_instance", ) = -20
(78391) (0.06814) strcmp("OS_xpc_serializer", "OS_xpc_service_instance", ) = -13
(78391) (0.06819) strcmp("OS_xpc_data", "OS_xpc_service_instance", ) = -15
(78391) (0.06824) strlen("OS_xpc_service_instance", ) = 23
(78391) (0.06828) strcmp("OS_xpc_service_instance", "OS_xpc_service_instance", ) = 0
(78391) (0.06832) strcmp("OS_dispatch_mach", "OS_xpc_service_instance", ) = -20
(78391) (0.06836) strcmp("OS_xpc_serializer", "OS_xpc_service_instance", ) = -13
(78391) (0.06841) strcmp("OS_xpc_data", "OS_xpc_service_instance", ) = -15
(78391) (0.06845) strlen("OS_xpc_activity", ) = 15
(78391) (0.06849) strcmp("OS_xpc_activity", "OS_xpc_activity", ) = 0
(78391) (0.06854) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06858) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.06863) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06868) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06874) strncmp("__nl_symbol_ptr", "__objc_protolist", 16, ) = -1
(78391) (0.06878) strncmp("__got", "__objc_protolist", 16, ) = -8
(78391) (0.06883) strncmp("__la_symbol_ptr", "__objc_protolist", 16, ) = -3
(78391) (0.06887) strncmp("__const", "__objc_protolist", 16, ) = -12
(78391) (0.06893) strncmp("__objc_classlist[SNIP]", "__objc_protolist", 16, ) = -13
(78391) (0.06898) strncmp("__objc_nlclslist[SNIP]", "__objc_protolist", 16, ) = -2
(78391) (0.06902) strncmp("__objc_protolist[SNIP]", "__objc_protolist", 16, ) = 0
(78391) (0.06907) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06913) strcmp("OS_dispatch_source_mach_send", "OSLogCoder", ) = 19
(78391) (0.06918) strlen("OSLogCoder", ) = 10
(78391) (0.06921) strcmp("OSLogCoder", "OSLogCoder", ) = 0
(78391) (0.06931) strcmp("OS_dispatch_source_mach_send", "OSLogCoder", ) = 19
(78391) (0.06936) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.06939) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.06944) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.06949) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06953) strncmp("__got", "__objc_protolist", 16, ) = -8
(78391) (0.06958) strncmp("__nl_symbol_ptr", "__objc_protolist", 16, ) = -1
(78391) (0.06962) strncmp("__la_symbol_ptr", "__objc_protolist", 16, ) = -3
(78391) (0.06968) strncmp("__const", "__objc_protolist", 16, ) = -12
(78391) (0.06973) strncmp("__objc_classlist[SNIP]", "__objc_protolist", 16, ) = -13
(78391) (0.06978) strncmp("__objc_protolist[SNIP]", "__objc_protolist", 16, ) = 0
(78391) (0.06983) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.06989) strcmp("NSObject", "NSObject", ) = 0
(78391) (0.06993) strcmp("OS_xpc_data", "OS_nw_resolver", ) = 10
(78391) (0.06998) strcmp("OS_xpc_service_instance", "OS_nw_resolver", ) = 10
(78391) (0.07002) strlen("OS_nw_resolver", ) = 14
(78391) (0.07005) strcmp("OS_nw_resolver", "OS_nw_resolver", ) = 0
(78391) (0.07009) strcmp("OS_xpc_data", "OS_nw_resolver", ) = 10
(78391) (0.07014) strcmp("OS_xpc_service_instance", "OS_nw_resolver", ) = 10
(78391) (0.07018) strlen("OS_nw_fd_wrapper", ) = 16
(78391) (0.07021) strcmp("OS_nw_fd_wrapper", "OS_nw_fd_wrapper", ) = 0
(78391) (0.07026) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07030) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07035) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07039) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07044) strncmp("__got", "__objc_protolist", 16, ) = -8
(78391) (0.07049) strncmp("__nl_symbol_ptr", "__objc_protolist", 16, ) = -1
(78391) (0.07054) strncmp("__la_symbol_ptr", "__objc_protolist", 16, ) = -3
(78391) (0.07059) strncmp("__objc_init_func[SNIP]", "__objc_protolist", 16, ) = -7
(78391) (0.07064) strncmp("__const", "__objc_protolist", 16, ) = -12
(78391) (0.07069) strncmp("__objc_classlist[SNIP]", "__objc_protolist", 16, ) = -13
(78391) (0.07074) strncmp("__objc_nlclslist[SNIP]", "__objc_protolist", 16, ) = -2
(78391) (0.07079) strncmp("__objc_protolist[SNIP]", "__objc_protolist", 16, ) = 0
(78391) (0.07084) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07089) strcmp("NSObject", "NSObject", ) = 0
(78391) (0.07094) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07098) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07103) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07107) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07112) strncmp("__got", "__objc_protorefs", 16, ) = -8
(78391) (0.07118) strncmp("__nl_symbol_ptr", "__objc_protorefs", 16, ) = -1
(78391) (0.07123) strncmp("__la_symbol_ptr", "__objc_protorefs", 16, ) = -3
(78391) (0.07127) strncmp("__const", "__objc_protorefs", 16, ) = -12
(78391) (0.07132) strncmp("__objc_classlist[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.07137) strncmp("__objc_nlclslist[SNIP]", "__objc_protorefs", 16, ) = -2
(78391) (0.07142) strncmp("__objc_protolist[SNIP]", "__objc_protorefs", 16, ) = -6
(78391) (0.07147) strncmp("__objc_imageinfo[SNIP]", "__objc_protorefs", 16, ) = -7
(78391) (0.07152) strncmp("__objc_const", "__objc_protorefs", 16, ) = -13
(78391) (0.07157) strncmp("__objc_selrefs", "__objc_protorefs", 16, ) = 3
(78391) (0.07162) strncmp("__objc_classrefs[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.07167) strncmp("__objc_superrefs[SNIP]", "__objc_protorefs", 16, ) = 3
(78391) (0.07172) strncmp("__objc_data", "__objc_protorefs", 16, ) = -12
(78391) (0.07177) strncmp("__data", "__objc_protorefs", 16, ) = -11
(78391) (0.07182) strncmp("__crash_info", "__objc_protorefs", 16, ) = -12
(78391) (0.07187) strncmp("__common", "__objc_protorefs", 16, ) = -12
(78391) (0.07192) strncmp("__bss", "__objc_protorefs", 16, ) = -13
(78391) (0.07197) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07202) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.07207) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07211) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.07216) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07220) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.07226) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07230) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.07235) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07239) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.07244) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07248) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.07253) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07257) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.07262) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07267) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07272) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07276) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07281) strncmp("__got", "__objc_protorefs", 16, ) = -8
(78391) (0.07286) strncmp("__nl_symbol_ptr", "__objc_protorefs", 16, ) = -1
(78391) (0.07291) strncmp("__la_symbol_ptr", "__objc_protorefs", 16, ) = -3
(78391) (0.07296) strncmp("__const", "__objc_protorefs", 16, ) = -12
(78391) (0.07301) strncmp("__objc_classlist[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.07306) strncmp("__objc_nlclslist[SNIP]", "__objc_protorefs", 16, ) = -2
(78391) (0.07311) strncmp("__objc_protolist[SNIP]", "__objc_protorefs", 16, ) = -6
(78391) (0.07316) strncmp("__objc_imageinfo[SNIP]", "__objc_protorefs", 16, ) = -7
(78391) (0.07321) strncmp("__objc_const", "__objc_protorefs", 16, ) = -13
(78391) (0.07326) strncmp("__objc_selrefs", "__objc_protorefs", 16, ) = 3
(78391) (0.07332) strncmp("__objc_classrefs[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.07336) strncmp("__objc_superrefs[SNIP]", "__objc_protorefs", 16, ) = 3
(78391) (0.07341) strncmp("__objc_data", "__objc_protorefs", 16, ) = -12
(78391) (0.07346) strncmp("__data", "__objc_protorefs", 16, ) = -11
(78391) (0.07351) strncmp("__crash_info", "__objc_protorefs", 16, ) = -12
(78391) (0.07356) strncmp("__bss", "__objc_protorefs", 16, ) = -13
(78391) (0.07361) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07365) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.07370) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07375) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.07379) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07388) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.07393) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07397) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.07402) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07407) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.07412) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07416) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.07421) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07425) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.07430) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07435) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07440) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07444) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07449) strncmp("__nl_symbol_ptr", "__objc_protorefs", 16, ) = -1
(78391) (0.07454) strncmp("__got", "__objc_protorefs", 16, ) = -8
(78391) (0.07459) strncmp("__la_symbol_ptr", "__objc_protorefs", 16, ) = -3
(78391) (0.07464) strncmp("__const", "__objc_protorefs", 16, ) = -12
(78391) (0.07468) strncmp("__objc_classlist[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.07474) strncmp("__objc_nlclslist[SNIP]", "__objc_protorefs", 16, ) = -2
(78391) (0.07479) strncmp("__objc_protolist[SNIP]", "__objc_protorefs", 16, ) = -6
(78391) (0.07484) strncmp("__objc_imageinfo[SNIP]", "__objc_protorefs", 16, ) = -7
(78391) (0.07489) strncmp("__objc_const", "__objc_protorefs", 16, ) = -13
(78391) (0.07494) strncmp("__objc_selrefs", "__objc_protorefs", 16, ) = 3
(78391) (0.07498) strncmp("__objc_classrefs[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.07503) strncmp("__objc_superrefs[SNIP]", "__objc_protorefs", 16, ) = 3
(78391) (0.07508) strncmp("__objc_ivar", "__objc_protorefs", 16, ) = -7
(78391) (0.07513) strncmp("__objc_data", "__objc_protorefs", 16, ) = -12
(78391) (0.07518) strncmp("__data", "__objc_protorefs", 16, ) = -11
(78391) (0.07524) strncmp("__crash_info", "__objc_protorefs", 16, ) = -12
(78391) (0.07529) strncmp("__bss", "__objc_protorefs", 16, ) = -13
(78391) (0.07534) strncmp("__common", "__objc_protorefs", 16, ) = -12
(78391) (0.07538) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07543) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.07548) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07552) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.07557) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07561) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.07566) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07570) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.07575) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07580) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.07584) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07589) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.07594) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07598) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.07603) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07607) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07613) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07617) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07622) strncmp("__got", "__objc_protorefs", 16, ) = -8
(78391) (0.07627) strncmp("__nl_symbol_ptr", "__objc_protorefs", 16, ) = -1
(78391) (0.07632) strncmp("__la_symbol_ptr", "__objc_protorefs", 16, ) = -3
(78391) (0.07637) strncmp("__const", "__objc_protorefs", 16, ) = -12
(78391) (0.07642) strncmp("__objc_classlist[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.07647) strncmp("__objc_protolist[SNIP]", "__objc_protorefs", 16, ) = -6
(78391) (0.07652) strncmp("__objc_imageinfo[SNIP]", "__objc_protorefs", 16, ) = -7
(78391) (0.07657) strncmp("__objc_const", "__objc_protorefs", 16, ) = -13
(78391) (0.07662) strncmp("__objc_selrefs", "__objc_protorefs", 16, ) = 3
(78391) (0.07667) strncmp("__objc_classrefs[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.07672) strncmp("__objc_superrefs[SNIP]", "__objc_protorefs", 16, ) = 3
(78391) (0.07677) strncmp("__objc_ivar", "__objc_protorefs", 16, ) = -7
(78391) (0.07682) strncmp("__objc_data", "__objc_protorefs", 16, ) = -12
(78391) (0.07686) strncmp("__data", "__objc_protorefs", 16, ) = -11
(78391) (0.07692) strncmp("__common", "__objc_protorefs", 16, ) = -12
(78391) (0.07697) strncmp("__bss", "__objc_protorefs", 16, ) = -13
(78391) (0.07702) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07706) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.07711) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07715) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.07720) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07725) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.07730) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07734) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.07739) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07744) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.07749) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07753) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.07758) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07762) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.07767) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07772) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07777) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07781) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07786) strncmp("__got", "__objc_protorefs", 16, ) = -8
(78391) (0.07791) strncmp("__nl_symbol_ptr", "__objc_protorefs", 16, ) = -1
(78391) (0.07796) strncmp("__la_symbol_ptr", "__objc_protorefs", 16, ) = -3
(78391) (0.07801) strncmp("__objc_init_func[SNIP]", "__objc_protorefs", 16, ) = -7
(78391) (0.07806) strncmp("__const", "__objc_protorefs", 16, ) = -12
(78391) (0.07811) strncmp("__objc_classlist[SNIP]", "__objc_protorefs", 16, ) = -13
(78391) (0.07816) strncmp("__objc_nlclslist[SNIP]", "__objc_protorefs", 16, ) = -2
(78391) (0.07821) strncmp("__objc_protolist[SNIP]", "__objc_protorefs", 16, ) = -6
(78391) (0.07826) strncmp("__objc_imageinfo[SNIP]", "__objc_protorefs", 16, ) = -7
(78391) (0.07831) strncmp("__objc_const", "__objc_protorefs", 16, ) = -13
(78391) (0.07836) strncmp("__objc_selrefs", "__objc_protorefs", 16, ) = 3
(78391) (0.07841) strncmp("__objc_ivar", "__objc_protorefs", 16, ) = -7
(78391) (0.07846) strncmp("__objc_data", "__objc_protorefs", 16, ) = -12
(78391) (0.07851) strncmp("__data", "__objc_protorefs", 16, ) = -11
(78391) (0.07856) strncmp("__objc_msg_break[SNIP]", "__objc_protorefs", 16, ) = -3
(78391) (0.07862) strncmp("__objc_opt_rw", "__objc_protorefs", 16, ) = -1
(78391) (0.07867) strncmp("__objc_opt_ptrs", "__objc_protorefs", 16, ) = -1
(78391) (0.07871) strncmp("__crash_info", "__objc_protorefs", 16, ) = -12
(78391) (0.07876) strncmp("__bss", "__objc_protorefs", 16, ) = -13
(78391) (0.07881) strncmp("__common", "__objc_protorefs", 16, ) = -12
(78391) (0.07886) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07890) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.07895) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07899) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.07904) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07909) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.07914) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07918) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.07923) strcmp("__TEXT", "__TEXT", ) = 0 [took: 0.00011]
(78391) (0.07935) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.07940) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07944) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.07949) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.07954) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.07959) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.07963) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.07968) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.07972) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.07978) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.07983) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.07987) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.07992) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.07997) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.08002) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0
(78391) (0.08007) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.08015) calloc(64, 1, ) = 0x7fff4bf00000
(78391) (0.08020) calloc(64, 1, ) = 0x7fff4bf00040
(78391) (0.08023) calloc(64, 1, ) = 0x7fff4bf00080
(78391) (0.08027) calloc(64, 1, ) = 0x7fff4bf000c0
(78391) (0.08032) calloc(64, 1, ) = 0x7fff4bf00100
(78391) (0.08036) malloc(32, ) = 0x7fff4bf00160
(78391) (0.08039) free(0x7fff4bf00180, )
(78391) (0.08041) free(0x7fff4bc00260, )
(78391) (0.08043) free(0x7fff4bf001a0, )
(78391) (0.08046) strcmp("NSObject", "OS_object", ) = -1
(78391) (0.08050) calloc(64, 1, ) = 0x7fff4bf00400
(78391) (0.08054) strcmp("OS_object", "OS_object", ) = 0
(78391) (0.08060) calloc(64, 1, ) = 0x7fff4bf00440
(78391) (0.08064) calloc(64, 1, ) = 0x7fff4bf00480
(78391) (0.08068) calloc(64, 1, ) = 0x7fff4bf004c0
(78391) (0.08071) calloc(64, 1, ) = 0x7fff4bf00500
(78391) (0.08075) calloc(64, 1, ) = 0x7fff4bf00540
(78391) (0.08079) calloc(64, 1, ) = 0x7fff4bf00580
(78391) (0.08083) calloc(64, 1, ) = 0x7fff4bf005c0
(78391) (0.08087) calloc(64, 1, ) = 0x7fff4bf00600
(78391) (0.08090) calloc(64, 1, ) = 0x7fff4bf00640
(78391) (0.08094) calloc(64, 1, ) = 0x7fff4bf00680
(78391) (0.08098) calloc(64, 1, ) = 0x7fff4bf006c0
(78391) (0.08101) calloc(64, 1, ) = 0x7fff4bf00700
(78391) (0.08105) calloc(64, 1, ) = 0x7fff4bf00740
(78391) (0.08109) calloc(64, 1, ) = 0x7fff4bf00780
(78391) (0.08112) calloc(64, 1, ) = 0x7fff4bf007c0
(78391) (0.08116) calloc(64, 1, ) = 0x7fff4bf00800
(78391) (0.08120) calloc(64, 1, ) = 0x7fff4bf00840
(78391) (0.08123) calloc(64, 1, ) = 0x7fff4bf00880
(78391) (0.08127) calloc(64, 1, ) = 0x7fff4bf008c0
(78391) (0.08131) calloc(64, 1, ) = 0x7fff4bf00900
(78391) (0.08135) calloc(64, 1, ) = 0x7fff4bf00940
(78391) (0.08139) calloc(64, 1, ) = 0x7fff4bf00980
(78391) (0.08142) calloc(64, 1, ) = 0x7fff4bf009c0
(78391) (0.08146) calloc(64, 1, ) = 0x7fff4bf00a00
(78391) (0.08150) calloc(64, 1, ) = 0x7fff4bf00a40
(78391) (0.08154) calloc(64, 1, ) = 0x7fff4bf00a80
(78391) (0.08158) calloc(64, 1, ) = 0x7fff4bf00ac0
(78391) (0.08161) calloc(64, 1, ) = 0x7fff4bf00b00
(78391) (0.08165) calloc(64, 1, ) = 0x7fff4bf00b40
(78391) (0.08169) calloc(64, 1, ) = 0x7fff4bf00b80
(78391) (0.08173) calloc(64, 1, ) = 0x7fff4bf00bc0
(78391) (0.08177) calloc(64, 1, ) = 0x7fff4bf00c00
(78391) (0.08181) calloc(64, 1, ) = 0x7fff4bf00c40
(78391) (0.08184) calloc(64, 1, ) = 0x7fff4bf00c80
(78391) (0.08188) calloc(64, 1, ) = 0x7fff4bf00cc0
(78391) (0.08192) calloc(64, 1, ) = 0x7fff4bf00d00
(78391) (0.08196) calloc(64, 1, ) = 0x7fff4bf00d40
(78391) (0.08199) calloc(64, 1, ) = 0x7fff4bf00d80
(78391) (0.08203) calloc(64, 1, ) = 0x7fff4bf00dc0
(78391) (0.08207) calloc(64, 1, ) = 0x7fff4bf00e00
(78391) (0.08210) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.08215) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.08219) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.08224) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.08229) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.08234) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.08239) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.08244) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.08249) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.08254) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0
(78391) (0.08259) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.08264) calloc(64, 1, ) = 0x7fff4bf00e40
(78391) (0.08269) calloc(64, 1, ) = 0x7fff4bf00e80
(78391) (0.08273) calloc(64, 1, ) = 0x7fff4bf00ec0
(78391) (0.08277) calloc(64, 1, ) = 0x7fff4bf00f00
(78391) (0.08281) calloc(64, 1, ) = 0x7fff4bf00f40
(78391) (0.08284) calloc(64, 1, ) = 0x7fff4bf00f80
(78391) (0.08289) calloc(64, 1, ) = 0x7fff4bf00fc0
(78391) (0.08293) calloc(64, 1, ) = 0x7fff4bf01000
(78391) (0.08297) calloc(64, 1, ) = 0x7fff4bf01040
(78391) (0.08301) calloc(64, 1, ) = 0x7fff4bf01080
(78391) (0.08304) calloc(64, 1, ) = 0x7fff4bf010c0
(78391) (0.08308) calloc(64, 1, ) = 0x7fff4bf01100
(78391) (0.08312) calloc(64, 1, ) = 0x7fff4bf01140
(78391) (0.08315) calloc(64, 1, ) = 0x7fff4bf01180
(78391) (0.08319) calloc(64, 1, ) = 0x7fff4bf011c0
(78391) (0.08323) calloc(64, 1, ) = 0x7fff4bf01200
(78391) (0.08326) calloc(64, 1, ) = 0x7fff4bf01240
(78391) (0.08330) calloc(64, 1, ) = 0x7fff4bf01280
(78391) (0.08334) calloc(64, 1, ) = 0x7fff4bf012c0
(78391) (0.08337) calloc(64, 1, ) = 0x7fff4bf01300
(78391) (0.08341) calloc(64, 1, ) = 0x7fff4bf01340
(78391) (0.08344) calloc(64, 1, ) = 0x7fff4bf01380
(78391) (0.08348) calloc(64, 1, ) = 0x7fff4bf013c0
(78391) (0.08351) calloc(64, 1, ) = 0x7fff4bf01400
(78391) (0.08355) calloc(64, 1, ) = 0x7fff4bf01440
(78391) (0.08358) calloc(64, 1, ) = 0x7fff4bf01480
(78391) (0.08362) calloc(64, 1, ) = 0x7fff4bf014c0
(78391) (0.08365) calloc(64, 1, ) = 0x7fff4bf01500
(78391) (0.08369) calloc(64, 1, ) = 0x7fff4bf01540
(78391) (0.08372) calloc(64, 1, ) = 0x7fff4bf01580
(78391) (0.08376) calloc(64, 1, ) = 0x7fff4bf015c0
(78391) (0.08379) calloc(64, 1, ) = 0x7fff4bf01600
(78391) (0.08383) calloc(64, 1, ) = 0x7fff4bf01640
(78391) (0.08387) calloc(64, 1, ) = 0x7fff4bf01680
(78391) (0.08390) calloc(64, 1, ) = 0x7fff4bf016c0
(78391) (0.08394) calloc(64, 1, ) = 0x7fff4bf01700
(78391) (0.08398) calloc(64, 1, ) = 0x7fff4bf01740
(78391) (0.08401) calloc(64, 1, ) = 0x7fff4bf01780
(78391) (0.08405) calloc(64, 1, ) = 0x7fff4bf017c0
(78391) (0.08409) calloc(64, 1, ) = 0x7fff4bf01800
(78391) (0.08413) calloc(64, 1, ) = 0x7fff4bf01840
(78391) (0.08416) calloc(64, 1, ) = 0x7fff4bf01880
(78391) (0.08420) calloc(64, 1, ) = 0x7fff4bf018c0
(78391) (0.08424) calloc(64, 1, ) = 0x7fff4bf01900
(78391) (0.08427) calloc(64, 1, ) = 0x7fff4bf01940
(78391) (0.08431) calloc(64, 1, ) = 0x7fff4bf01980
(78391) (0.08434) calloc(64, 1, ) = 0x7fff4bf019c0
(78391) (0.08437) calloc(64, 1, ) = 0x7fff4bf01a00
(78391) (0.08441) calloc(64, 1, ) = 0x7fff4bf01a40
(78391) (0.08445) calloc(64, 1, ) = 0x7fff4bf01a80
(78391) (0.08449) calloc(64, 1, ) = 0x7fff4bf01ac0
(78391) (0.08452) calloc(64, 1, ) = 0x7fff4bf01b00
(78391) (0.08455) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.08460) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.08464) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.08468) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.08473) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.08478) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.08483) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.08488) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.08493) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.08497) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0
(78391) (0.08501) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.08507) calloc(64, 1, ) = 0x7fff4bf01b40
(78391) (0.08512) calloc(64, 1, ) = 0x7fff4bf01b80
(78391) (0.08516) calloc(64, 1, ) = 0x7fff4bf01bc0
(78391) (0.08519) calloc(64, 1, ) = 0x7fff4bf01c00
(78391) (0.08523) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.08528) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.08533) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.08537) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.08542) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.08547) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.08552) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.08557) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.08562) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.08567) strncmp("__objc_protolist[SNIP]", "__objc_nlclslist", 16, ) = 2
(78391) (0.08572) strncmp("__objc_imageinfo[SNIP]", "__objc_nlclslist", 16, ) = -5
(78391) (0.08577) strncmp("__objc_const", "__objc_nlclslist", 16, ) = -11
(78391) (0.08582) strncmp("__objc_selrefs", "__objc_nlclslist", 16, ) = 5
(78391) (0.08587) strncmp("__objc_classrefs[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.08591) strncmp("__objc_superrefs[SNIP]", "__objc_nlclslist", 16, ) = 5
(78391) (0.08596) strncmp("__objc_ivar", "__objc_nlclslist", 16, ) = -5
(78391) (0.08601) strncmp("__objc_data", "__objc_nlclslist", 16, ) = -10
(78391) (0.08606) strncmp("__data", "__objc_nlclslist", 16, ) = -11
(78391) (0.08611) strncmp("__common", "__objc_nlclslist", 16, ) = -12
(78391) (0.08616) strncmp("__bss", "__objc_nlclslist", 16, ) = -13
(78391) (0.08621) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.08625) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.08630) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.08634) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.08639) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.08644) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.08649) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.08653) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.08658) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.08663) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.08668) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.08672) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.08677) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.08681) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.08686) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.08691) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.08695) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.08699) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.08704) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.08709) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.08714) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.08719) strncmp("__objc_init_func[SNIP]", "__objc_nlclslist", 16, ) = -5
(78391) (0.08724) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.08729) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.08734) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0
(78391) (0.08739) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.08744) calloc(64, 1, ) = 0x7fff4bf01c40
(78391) (0.08748) calloc(64, 1, ) = 0x7fff4bf01c80
(78391) (0.08751) calloc(64, 1, ) = 0x7fff4bf01cc0
(78391) (0.08756) calloc(64, 1, ) = 0x7fff4bf01d00
(78391) (0.08760) calloc(64, 1, ) = 0x7fff4bf01d40
(78391) (0.08763) calloc(64, 1, ) = 0x7fff4bf01d80
(78391) (0.08767) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.08772) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.08777) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.08781) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.08786) strncmp("__got", "__objc_catlist", 16, ) = -8
(78391) (0.08791) strncmp("__nl_symbol_ptr", "__objc_catlist", 16, ) = -1
(78391) (0.08796) strncmp("__la_symbol_ptr", "__objc_catlist", 16, ) = -3
(78391) (0.08801) strncmp("__const", "__objc_catlist", 16, ) = -12
(78391) (0.08806) strncmp("__objc_classlist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.08811) strncmp("__objc_nlclslist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.08816) strncmp("__objc_protolist[SNIP]", "__objc_catlist", 16, ) = 13
(78391) (0.08820) strncmp("__objc_imageinfo[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.08825) strncmp("__objc_const", "__objc_catlist", 16, ) = 14
(78391) (0.08830) strncmp("__objc_selrefs", "__objc_catlist", 16, ) = 16
(78391) (0.08835) strncmp("__objc_classrefs[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.08840) strncmp("__objc_superrefs[SNIP]", "__objc_catlist", 16, ) = 16
(78391) (0.08845) strncmp("__objc_data", "__objc_catlist", 16, ) = 1
(78391) (0.08850) strncmp("__data", "__objc_catlist", 16, ) = -11
(78391) (0.08855) strncmp("__crash_info", "__objc_catlist", 16, ) = -12
(78391) (0.08860) strncmp("__common", "__objc_catlist", 16, ) = -12
(78391) (0.08865) strncmp("__bss", "__objc_catlist", 16, ) = -13
(78391) (0.08870) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.08875) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.08880) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.08884) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.08889) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.08893) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.08898) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.08903) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.08908) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.08912) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.08917) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.08921) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.08926) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.08930) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.08938) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.08942) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.08947) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.08952) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.08956) strncmp("__got", "__objc_catlist", 16, ) = -8
(78391) (0.08962) strncmp("__nl_symbol_ptr", "__objc_catlist", 16, ) = -1
(78391) (0.08967) strncmp("__la_symbol_ptr", "__objc_catlist", 16, ) = -3
(78391) (0.08972) strncmp("__const", "__objc_catlist", 16, ) = -12
(78391) (0.08977) strncmp("__objc_classlist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.08982) strncmp("__objc_nlclslist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.08987) strncmp("__objc_protolist[SNIP]", "__objc_catlist", 16, ) = 13
(78391) (0.08992) strncmp("__objc_imageinfo[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.08997) strncmp("__objc_const", "__objc_catlist", 16, ) = 14
(78391) (0.09002) strncmp("__objc_selrefs", "__objc_catlist", 16, ) = 16
(78391) (0.09007) strncmp("__objc_classrefs[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.09012) strncmp("__objc_superrefs[SNIP]", "__objc_catlist", 16, ) = 16
(78391) (0.09017) strncmp("__objc_data", "__objc_catlist", 16, ) = 1
(78391) (0.09021) strncmp("__data", "__objc_catlist", 16, ) = -11
(78391) (0.09026) strncmp("__crash_info", "__objc_catlist", 16, ) = -12
(78391) (0.09031) strncmp("__bss", "__objc_catlist", 16, ) = -13
(78391) (0.09036) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09040) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.09045) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09050) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.09054) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09059) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.09064) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09068) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.09073) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09077) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.09082) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09087) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.09092) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09096) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.09101) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09105) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.09110) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09114) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.09119) strncmp("__nl_symbol_ptr", "__objc_catlist", 16, ) = -1
(78391) (0.09124) strncmp("__got", "__objc_catlist", 16, ) = -8
(78391) (0.09129) strncmp("__la_symbol_ptr", "__objc_catlist", 16, ) = -3
(78391) (0.09134) strncmp("__const", "__objc_catlist", 16, ) = -12
(78391) (0.09139) strncmp("__objc_classlist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.09144) strncmp("__objc_nlclslist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.09149) strncmp("__objc_protolist[SNIP]", "__objc_catlist", 16, ) = 13
(78391) (0.09154) strncmp("__objc_imageinfo[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.09159) strncmp("__objc_const", "__objc_catlist", 16, ) = 14
(78391) (0.09164) strncmp("__objc_selrefs", "__objc_catlist", 16, ) = 16
(78391) (0.09169) strncmp("__objc_classrefs[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.09174) strncmp("__objc_superrefs[SNIP]", "__objc_catlist", 16, ) = 16
(78391) (0.09179) strncmp("__objc_ivar", "__objc_catlist", 16, ) = 6
(78391) (0.09184) strncmp("__objc_data", "__objc_catlist", 16, ) = 1
(78391) (0.09189) strncmp("__data", "__objc_catlist", 16, ) = -11
(78391) (0.09194) strncmp("__crash_info", "__objc_catlist", 16, ) = -12
(78391) (0.09199) strncmp("__bss", "__objc_catlist", 16, ) = -13
(78391) (0.09204) strncmp("__common", "__objc_catlist", 16, ) = -12
(78391) (0.09209) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09213) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.09218) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09222) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.09227) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09232) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.09237) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09241) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.09246) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09250) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.09255) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09260) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.09265) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09269) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.09274) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09279) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.09283) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09288) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.09293) strncmp("__got", "__objc_catlist", 16, ) = -8
(78391) (0.09298) strncmp("__nl_symbol_ptr", "__objc_catlist", 16, ) = -1
(78391) (0.09302) strncmp("__la_symbol_ptr", "__objc_catlist", 16, ) = -3
(78391) (0.09307) strncmp("__const", "__objc_catlist", 16, ) = -12
(78391) (0.09312) strncmp("__objc_classlist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.09317) strncmp("__objc_protolist[SNIP]", "__objc_catlist", 16, ) = 13
(78391) (0.09322) strncmp("__objc_imageinfo[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.09327) strncmp("__objc_const", "__objc_catlist", 16, ) = 14
(78391) (0.09332) strncmp("__objc_selrefs", "__objc_catlist", 16, ) = 16
(78391) (0.09337) strncmp("__objc_classrefs[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.09342) strncmp("__objc_superrefs[SNIP]", "__objc_catlist", 16, ) = 16
(78391) (0.09347) strncmp("__objc_ivar", "__objc_catlist", 16, ) = 6
(78391) (0.09352) strncmp("__objc_data", "__objc_catlist", 16, ) = 1
(78391) (0.09357) strncmp("__data", "__objc_catlist", 16, ) = -11
(78391) (0.09362) strncmp("__common", "__objc_catlist", 16, ) = -12
(78391) (0.09367) strncmp("__bss", "__objc_catlist", 16, ) = -13
(78391) (0.09372) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09377) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.09382) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09386) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.09390) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09393) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.09399) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09403) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.09407) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09411) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.09416) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09421) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.09426) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09431) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.09436) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09440) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.09445) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09449) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.09454) strncmp("__got", "__objc_catlist", 16, ) = -8
(78391) (0.09459) strncmp("__nl_symbol_ptr", "__objc_catlist", 16, ) = -1 [took: 0.00011]
(78391) (0.09471) strncmp("__la_symbol_ptr", "__objc_catlist", 16, ) = -3
(78391) (0.09476) strncmp("__objc_init_func[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.09481) strncmp("__const", "__objc_catlist", 16, ) = -12
(78391) (0.09488) strncmp("__objc_classlist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.09493) strncmp("__objc_nlclslist[SNIP]", "__objc_catlist", 16, ) = 11
(78391) (0.09498) strncmp("__objc_protolist[SNIP]", "__objc_catlist", 16, ) = 13
(78391) (0.09503) strncmp("__objc_imageinfo[SNIP]", "__objc_catlist", 16, ) = 6
(78391) (0.09508) strncmp("__objc_const", "__objc_catlist", 16, ) = 14
(78391) (0.09513) strncmp("__objc_selrefs", "__objc_catlist", 16, ) = 16
(78391) (0.09518) strncmp("__objc_ivar", "__objc_catlist", 16, ) = 6
(78391) (0.09523) strncmp("__objc_data", "__objc_catlist", 16, ) = 1
(78391) (0.09528) strncmp("__data", "__objc_catlist", 16, ) = -11
(78391) (0.09533) strncmp("__objc_msg_break[SNIP]", "__objc_catlist", 16, ) = 10
(78391) (0.09539) strncmp("__objc_opt_rw", "__objc_catlist", 16, ) = 12
(78391) (0.09544) strncmp("__objc_opt_ptrs", "__objc_catlist", 16, ) = 12
(78391) (0.09549) strncmp("__crash_info", "__objc_catlist", 16, ) = -12
(78391) (0.09554) strncmp("__bss", "__objc_catlist", 16, ) = -13
(78391) (0.09559) strncmp("__common", "__objc_catlist", 16, ) = -12
(78391) (0.09564) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09568) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.09573) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09578) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.09583) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09587) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.09592) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09596) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.09602) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.09606) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.09611) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.09615) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.09620) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.09625) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.09631) getenv("OBJC_DEBUG_MISSING_POOLS", ) = (nil)
(78391) (0.09636) getpid() = 78391
(78391) (0.09639) calloc(1, 40, ) = 0x7fff4bf01dc0
(78391) (0.09643) calloc(64, 1, ) = 0x7fff4bf01df0
(78391) (0.09647) getenv("XPC_FLAGS", ) = (nil)
(78391) (0.09650) getenv("XPC_NULL_BOOTSTRAP", ) = (nil)
(78391) (0.09653) getenv("XBS_IS_CHROOTED", ) = (nil)
(78391) (0.09657) stat("/AppleInternal/XBS/.isChrooted", 0x7fff50c05058, ) = -1
(78391) (0.09662) getenv("XPC_SERVICES_UNAVAILABLE", ) = (nil)
(78391) (0.09665) strncmp("__PAGEZERO", "__TEXT", 16, ) = -4
(78391) (0.09670) strncmp("__TEXT", "__TEXT", 16, ) = 0
(78391) (0.09675) strncmp("__text", "__launchd", 16, ) = 8
(78391) (0.09680) strncmp("__stubs", "__launchd", 16, ) = 7
(78391) (0.09685) strncmp("__stub_helper", "__launchd", 16, ) = 7
(78391) (0.09690) strncmp("__cstring", "__launchd", 16, ) = -9
(78391) (0.09695) strncmp("__unwind_info", "__launchd", 16, ) = 9
(78391) (0.09699) strncmp("__DATA", "__TEXT", 16, ) = -16
(78391) (0.09704) strncmp("__LINKEDIT", "__TEXT", 16, ) = -8
(78391) (0.09710) strncmp("__PAGEZERO", "__TEXT", 16, ) = -4
(78391) (0.09715) strncmp("__TEXT", "__TEXT", 16, ) = 0
(78391) (0.09721) strncmp("__text", "__xpcproxy", 16, ) = -4
(78391) (0.09725) strncmp("__stubs", "__xpcproxy", 16, ) = -5
(78391) (0.09729) strncmp("__stub_helper", "__xpcproxy", 16, ) = -5
(78391) (0.09734) strncmp("__cstring", "__xpcproxy", 16, ) = -21
(78391) (0.09738) strncmp("__unwind_info", "__xpcproxy", 16, ) = -3
(78391) (0.09743) strncmp("__DATA", "__TEXT", 16, ) = -16
(78391) (0.09748) strncmp("__LINKEDIT", "__TEXT", 16, ) = -8
(78391) (0.09754) strncmp("__PAGEZERO", "__TEXT", 16, ) = -4
(78391) (0.09759) strncmp("__TEXT", "__TEXT", 16, ) = 0
(78391) (0.09764) strncmp("__text", "__launchctl", 16, ) = 8
(78391) (0.09768) strncmp("__stubs", "__launchctl", 16, ) = 7
(78391) (0.09772) strncmp("__stub_helper", "__launchctl", 16, ) = 7
(78391) (0.09777) strncmp("__cstring", "__launchctl", 16, ) = -9
(78391) (0.09783) strncmp("__unwind_info", "__launchctl", 16, ) = 9
(78391) (0.09788) strncmp("__DATA", "__TEXT", 16, ) = -16
(78391) (0.09793) strncmp("__LINKEDIT", "__TEXT", 16, ) = -8
(78391) (0.09800) stat("/AppleInternal", 0x7fff50c050f0, ) = -1
(78391) (0.09806) calloc(1, 56, ) = 0x7fff4bf01e30
(78391) (0.09810) calloc(1, 176, ) = 0x7fff4bf01e70
(78391) (0.09815) getenv("HOME", ) = "/"
(78391) (0.09818) malloc(2, ) = 0x7fff4bf00180
(78391) (0.09821) memcpy(0x7fff4bf00180, 0x7fff50c06f00, 2, ) = 0x7fff4bf00180
(78391) (0.09825) strlen("/", ) = 1
(78391) (0.09827) calloc(1, 40, ) = 0x7fff4bf01f20
(78391) (0.09831) strcmp("HOME", "XPCErrorDescription", ) = -16
(78391) (0.09834) strlen("HOME", ) = 4 [took: 0.00019]
(78391) (0.09855) malloc(45, ) = 0x7fff4bd00080
(78391) (0.09858) memcpy(0x7fff4bd000a0, 0x7fffaeb8be2c, 5, ) = 0x7fff4bd000a0
(78391) (0.09862) strcpy("HOME", "HOME", ) = "HOME"
(78391) (0.09867) getenv("PATH", ) = (nil)
(78391) (0.09870) getenv("TMPDIR", ) = (nil)
(78391) (0.09873) getenv("__CF_USER_TEXT_ENCODING", ) = (nil)
(78391) (0.09876) getenv("CFFIXED_USER_HOME", ) = (nil)
(78391) (0.09880) getenv("Apple_PubSub_Socket_Render", ) = (nil)
(78391) (0.09883) getenv("SSH_AUTH_SOCK", ) = (nil)
(78391) (0.09886) getenv("LANG", ) = (nil)
(78391) (0.09890) strlen("__XPC_", ) = 6
(78391) (0.09893) strncmp("HOME=/", "__XPC_", 6, ) = -23
(78391) (0.09898) strlen("__XPC_", ) = 6
(78391) (0.09901) strncmp("DYLD_I[SNIP]", "__XPC_", 6, ) = -27
(78391) (0.09906) strlen("__XPC_", ) = 6
(78391) (0.09910) strncmp("RETRAC[SNIP]", "__XPC_", 6, ) = -13
(78391) (0.09914) getpid() = 78391
(78391) (0.09917) calloc(1, 32, ) = 0x7fff4bd000b0
(78391) (0.09922) calloc(1, 176, ) = 0x7fff4bd000d0
(78391) (0.09926) strlen("/usr/lib", ) = 8
(78391) (0.09929) strncmp("/Users/c[SNIP]", "/usr/lib", 8, ) = -32
(78391) (0.09933) strlen("/usr/local/lib", ) = 14
(78391) (0.09937) strncmp("/Users/catap/D[SNIP]", "/usr/local/lib", 14, ) = -32
(78391) (0.09941) strlen("/Users/catap/Documents/Riboseinc/retrace[SNIP]", ) = 63
(78391) (0.09945) strlen(".dylib", ) = 6
(78391) (0.09948) strcmp(".dylib", ".dylib", ) = 0
(78391) (0.09952) strlen("/usr/lib", ) = 8
(78391) (0.09956) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09961) strlen("/usr/lib", ) = 8
(78391) (0.09964) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09969) strlen("/usr/lib", ) = 8
(78391) (0.09973) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09978) strlen("/usr/lib", ) = 8
(78391) (0.09981) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09986) strlen("/usr/lib", ) = 8
(78391) (0.09989) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.09994) strlen("/usr/lib", ) = 8
(78391) (0.09998) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10003) strlen("/usr/lib", ) = 8
(78391) (0.10006) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10011) strlen("/usr/lib", ) = 8
(78391) (0.10014) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10019) strlen("/usr/lib", ) = 8
(78391) (0.10023) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10028) strlen("/usr/lib", ) = 8
(78391) (0.10031) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10036) strlen("/usr/lib", ) = 8
(78391) (0.10039) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10044) strlen("/usr/lib", ) = 8
(78391) (0.10047) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10052) strlen("/usr/lib", ) = 8
(78391) (0.10055) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10060) strlen("/usr/lib", ) = 8
(78391) (0.10064) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10069) strlen("/usr/lib", ) = 8
(78391) (0.10072) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10077) strlen("/usr/lib", ) = 8
(78391) (0.10080) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10085) strlen("/usr/lib", ) = 8
(78391) (0.10088) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10094) strlen("/usr/lib", ) = 8
(78391) (0.10097) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10102) strlen("/usr/lib", ) = 8
(78391) (0.10105) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10110) strlen("/usr/lib", ) = 8
(78391) (0.10114) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10119) strlen("/usr/lib", ) = 8
(78391) (0.10122) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10127) strlen("/usr/lib", ) = 8
(78391) (0.10130) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10135) strlen("/usr/lib", ) = 8
(78391) (0.10138) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10143) strlen("/usr/lib", ) = 8
(78391) (0.10146) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10151) strlen("/usr/lib", ) = 8
(78391) (0.10154) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10159) strlen("/usr/lib", ) = 8
(78391) (0.10163) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10168) strlen("/usr/lib", ) = 8
(78391) (0.10171) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10176) strlen("/usr/lib", ) = 8
(78391) (0.10179) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10184) strlen("/usr/lib", ) = 8
(78391) (0.10187) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10193) strlen("/usr/lib", ) = 8
(78391) (0.10196) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10201) strlen("/usr/lib", ) = 8
(78391) (0.10204) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10209) strlen("/usr/lib", ) = 8
(78391) (0.10212) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10217) strlen("/usr/lib", ) = 8
(78391) (0.10221) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10226) strlen("/usr/lib", ) = 8
(78391) (0.10229) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10234) strlen("/usr/lib", ) = 8
(78391) (0.10238) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10243) strlen("/usr/lib", ) = 8
(78391) (0.10246) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10251) strlen("/usr/lib", ) = 8
(78391) (0.10254) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10259) strlen("/usr/lib", ) = 8
(78391) (0.10262) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10267) strlen("/usr/lib", ) = 8
(78391) (0.10270) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10275) strlen("/usr/lib", ) = 8
(78391) (0.10278) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10283) strlen("/usr/lib", ) = 8
(78391) (0.10287) strncmp("/System/[SNIP]", "/usr/lib", 8, ) = -34
(78391) (0.10291) strlen("/usr/local/lib", ) = 14
(78391) (0.10295) strncmp("/System/Librar[SNIP]", "/usr/local/lib", 14, ) = -34
(78391) (0.10300) strlen("/System/Library/PrivateFrameworks/TrustE[SNIP]", ) = 96
(78391) (0.10303) strlen(".dylib", ) = 6
(78391) (0.10306) strcmp("nAgent", ".dylib", ) = 64
(78391) (0.10311) strcmp("/System/Library/PrivateFrameworks/TrustE[SNIP]", "XPCErrorDescription", ) = -41
(78391) (0.10315) strlen("/System/Library/PrivateFrameworks/TrustE[SNIP]", ) = 96
(78391) (0.10318) malloc(137, ) = 0x7fff4bd00180
(78391) (0.10321) strcpy("/System/Library/PrivateFrameworks/TrustE[SNIP]", "/System/Library/PrivateFrameworks/TrustE[SNIP]", ) = "/System/Library/PrivateFrameworks/TrustE[SNIP]"
(78391) (0.10326) strlen("/usr/lib", ) = 8
(78391) (0.10329) strncmp("/usr/lib[SNIP]", "/usr/lib", 8, ) = 0
(78391) (0.10334) getpid() = 78391
(78391) (0.10337) getenv("XPC_SERVICE_FORCE_EARLY_INIT", ) = (nil)
(78391) (0.10340) getpid() = 78391
(78391) (0.10344) getpid() = 78391
(78391) (0.10351) getenv("XPC_FLAGS", ) = (nil)
(78391) (0.10355) getpid() = 78391
(78391) (0.10358) getenv("XBS_IS_CHROOTED", ) = (nil)
(78391) (0.10361) getpid() = 78391
(78391) (0.10364) strlen("com.apple.libtrace.state.block-list", ) = 35
(78391) (0.10368) calloc(1, 124, ) = 0x7fff4bd00210
(78391) (0.10375) getpid() = 78391
(78391) (0.10377) getenv("APP_SANDBOX_EXIT_AFTER_INIT", ) = (nil)
(78391) (0.10387) memcpy(0x7fffb75d2b11, 0x7fffad50671d, 1, ) = 0x7fffb75d2b11
(78391) (0.10396) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.10401) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.10406) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.10410) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.10415) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.10420) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.10425) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.10431) strncmp("__objc_init_func[SNIP]", "__objc_nlclslist", 16, ) = -5
(78391) (0.10436) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.10441) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.10445) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0
(78391) (0.10451) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.10456) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.10460) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.10465) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.10469) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.10474) strncmp("__got", "__objc_nlclslist", 16, ) = -8
(78391) (0.10479) strncmp("__nl_symbol_ptr", "__objc_nlclslist", 16, ) = -1
(78391) (0.10484) strncmp("__la_symbol_ptr", "__objc_nlclslist", 16, ) = -3
(78391) (0.10488) strncmp("__objc_init_func[SNIP]", "__objc_nlclslist", 16, ) = -5
(78391) (0.10493) strncmp("__const", "__objc_nlclslist", 16, ) = -12
(78391) (0.10497) strncmp("__objc_classlist[SNIP]", "__objc_nlclslist", 16, ) = -11
(78391) (0.10502) strncmp("__objc_nlclslist[SNIP]", "__objc_nlclslist", 16, ) = 0
(78391) (0.10507) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.10511) strcmp("alloc", "load", ) = -11
(78391) (0.10515) strcmp("mutableCopy", "load", ) = 1
(78391) (0.10519) strcmp("release", "load", ) = 6
(78391) (0.10523) strcmp("init", "load", ) = -3
(78391) (0.10530) strcmp("isEqual:", "load", ) = -3
(78391) (0.10534) strcmp("class", "load", ) = -9
(78391) (0.10538) strcmp("self", "load", ) = 7
(78391) (0.10543) strcmp("performSelector:", "load", ) = 4
(78391) (0.10547) strcmp("performSelector:withObject:", "load", ) = 4
(78391) (0.10551) strcmp("performSelector:withObject:withObject:", "load", ) = 4
(78391) (0.10556) strcmp("isProxy", "load", ) = -3
(78391) (0.10560) strcmp("isKindOfClass:", "load", ) = -3
(78391) (0.10565) strcmp("isMemberOfClass:", "load", ) = -3
(78391) (0.10569) strcmp("conformsToProtocol:", "load", ) = -9
(78391) (0.10574) strcmp("respondsToSelector:", "load", ) = 6
(78391) (0.10578) strcmp("retain", "load", ) = 6
(78391) (0.10582) strcmp("autorelease", "load", ) = -11
(78391) (0.10586) strcmp("retainCount", "load", ) = 6
(78391) (0.10590) strcmp("zone", "load", ) = 14
(78391) (0.10595) strcmp("hash", "load", ) = -4
(78391) (0.10599) strcmp("superclass", "load", ) = 7
(78391) (0.10603) strcmp("description", "load", ) = -8
(78391) (0.10607) strcmp("debugDescription", "load", ) = -8
(78391) (0.10611) strcmp("copy", "load", ) = -9
(78391) (0.10616) strcmp("allocWithZone:", "load", ) = -11
(78391) (0.10620) strcmp("dealloc", "load", ) = -8
(78391) (0.10624) strcmp("new", "load", ) = 2
(78391) (0.10629) strcmp("copyWithZone:", "load", ) = -9
(78391) (0.10634) strcmp("methodForSelector:", "load", ) = 1
(78391) (0.10638) strcmp("initialize", "load", ) = -3
(78391) (0.10643) strcmp("instanceMethodSignatureForSelector:", "load", ) = -3
(78391) (0.10647) strcmp("load", "load", ) = 0
(78391) (0.10652) realloc(0x0, 256, ) = 0x7fff4bc00300
(78391) (0.10655) strcmp("load", "load", ) = 0
(78391) (0.10660) strcmp("load", "load", ) = 0
(78391) (0.10664) strcmp("load", "load", ) = 0
(78391) (0.10669) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.10673) strncmp("__TEXT", "__DATA", 16, ) = 16
(78391) (0.10678) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.10683) strncmp("__DATA", "__DATA", 16, ) = 0
(78391) (0.10688) strncmp("__got", "__objc_nlcatlist", 16, ) = -8
(78391) (0.10693) strncmp("__nl_symbol_ptr", "__objc_nlcatlist", 16, ) = -1
(78391) (0.10698) strncmp("__la_symbol_ptr", "__objc_nlcatlist", 16, ) = -3 [took: 0.00012]
(78391) (0.10711) strncmp("__objc_init_func[SNIP]", "__objc_nlcatlist", 16, ) = -5
(78391) (0.10716) strncmp("__const", "__objc_nlcatlist", 16, ) = -12
(78391) (0.10720) strncmp("__objc_classlist[SNIP]", "__objc_nlcatlist", 16, ) = -11
(78391) (0.10725) strncmp("__objc_nlclslist[SNIP]", "__objc_nlcatlist", 16, ) = 11
(78391) (0.10730) strncmp("__objc_protolist[SNIP]", "__objc_nlcatlist", 16, ) = 2
(78391) (0.10734) strncmp("__objc_imageinfo[SNIP]", "__objc_nlcatlist", 16, ) = -5
(78391) (0.10739) strncmp("__objc_const", "__objc_nlcatlist", 16, ) = -11
(78391) (0.10743) strncmp("__objc_selrefs", "__objc_nlcatlist", 16, ) = 5
(78391) (0.10748) strncmp("__objc_ivar", "__objc_nlcatlist", 16, ) = -5
(78391) (0.10752) strncmp("__objc_data", "__objc_nlcatlist", 16, ) = -10
(78391) (0.10757) strncmp("__data", "__objc_nlcatlist", 16, ) = -11
(78391) (0.10762) strncmp("__objc_msg_break[SNIP]", "__objc_nlcatlist", 16, ) = -1
(78391) (0.10766) strncmp("__objc_opt_rw", "__objc_nlcatlist", 16, ) = 1
(78391) (0.10771) strncmp("__objc_opt_ptrs", "__objc_nlcatlist", 16, ) = 1
(78391) (0.10775) strncmp("__crash_info", "__objc_nlcatlist", 16, ) = -12
(78391) (0.10780) strncmp("__bss", "__objc_nlcatlist", 16, ) = -13
(78391) (0.10785) strncmp("__common", "__objc_nlcatlist", 16, ) = -12
(78391) (0.10789) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.10793) strncmp("__LINKEDIT", "__DATA", 16, ) = 8
(78391) (0.10798) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.10802) strncmp("__TEXT", "__DATA_CONST", 16, ) = 16
(78391) (0.10807) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.10810) strncmp("__DATA", "__DATA_CONST", 16, ) = -95
(78391) (0.10815) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.10819) strncmp("__LINKEDIT", "__DATA_CONST", 16, ) = 8
(78391) (0.10824) strcmp("__TEXT", "__TEXT", ) = 0
(78391) (0.10827) strncmp("__TEXT", "__DATA_DIRTY", 16, ) = 16
(78391) (0.10832) strcmp("__DATA", "__TEXT", ) = -16
(78391) (0.10836) strncmp("__DATA", "__DATA_DIRTY", 16, ) = -95
(78391) (0.10841) strcmp("__LINKEDIT", "__TEXT", ) = -8
(78391) (0.10844) strncmp("__LINKEDIT", "__DATA_DIRTY", 16, ) = 8
(78391) (0.10850) free(0x7fff4bc00300, )
(78391) (0.10859) malloc(4096, ) = 0x7fff51800000
(78391) (0.10862) memcpy(0x7fff51800000, 0x10eff9faa, 13, ) = 0x7fff51800000
test2 output
(78391) (0.10867) free(0x0, )
(78391) (0.10869) printf("test2 output\n" -> "test2 output\n", ) = 13 [took: 0.00016]
(78391) (0.10874) fwrite(0x7fff50c06cf8, 1, 0, 0x7fffb781f1a8 [fd 1], ) = 0
(78391) (0.10881) fwrite(0x7fff50c06cf8, 1, 0, 0x7fffb781f1a8 [fd 1], ) = 0
(78391) (0.10886) fwrite(0x7fff50c06cf8, 1, 0, 0x7fffb781f240 [fd 2], ) = 0
(78391) (0.10891) fwrite(0x7fff50c06cf8, 1, 0, 0x7fffb781f240 [fd 2], ) = 0
➜  retrace git:(master) ✗ 
pablo-mendoza commented 7 years ago

The problem is that if successful the exec() calls never return.

I have a branch where I print a line before calling the function and one after. That would solve this. https://github.com/riataman/retrace/tree/treeformat

The other option would be to introduce a EVENT_FLAGS_PRINT_ONBEFORE to force certain functions to print on the "before" event.

exit() has the same problem right now.

catap commented 7 years ago

I think that the way with flag is better, isn't it?

pablo-mendoza commented 7 years ago

I like the idea of printing in and out calls and show the calls indented to clearly show which calls are made as a result of other calls.

Having say that, that probably should be an alternative view controlled by an option so we can actually implement both ways.