From ats at acm.org Wed May 7 22:41:28 2014 From: ats at acm.org (Alan Shutko) Date: Wed, 7 May 2014 21:41:28 -0500 Subject: [Unison-hackers] Seeking to bring Mac support up to date In-Reply-To: References: Message-ID: As promised, here is my work-in-progress, ready for review and beta testing. A version of the app, compiled with Xcode 5.1 (although it also builds with Xcode 3) is at https://dl.dropboxusercontent.com/u/9371330/Unison.zip I've put my source tree on Github at https://github.com/alanshutko/unison I've begun using it myself. It has worked at least twice, so it should be somewhat ready for testing. Noted changes required: Conflicts are now associated within a reason, so the uimacbridgenew.ml code needed to accommodate it. Mac build switched from -lstr to -lcamlstr Removed BWToolkit. Most of the UI should look pretty close to the same. Changed use of (IBAction *) in some arguments, as the #define for IBAction changed and broke it. I have not yet fixed the bug expanding a folder while syncing yet. That will come next. I'd like to get this stable and working and have a final version supporting Snow Leopard, then break compatibility for the next changes. On Apr 28, 2014, at 7:25 PM, Alan Shutko wrote: > Yep, it works on Xcode 5 and Mavericks. I mentioned Xcode 4 since that is when interface builder plugins went away. > > I could continue building it with an older OS if we want to support folks who have not upgraded, or I could upgrade the project files to require Xcode 5 (Mountain Lion and Mavericks only). > > On Apr 28, 2014, at 7:00 PM, Christopher Vance wrote: > >> Any reason to avoid Xcode 5? Will your Xcode 4 build run on Mavericks? >> >> >> On Tue, Apr 29, 2014 at 7:34 AM, Alan Shutko wrote: >> I'm interested in getting the UI working again on Mac. As mentioned in https://groups.yahoo.com/neo/groups/unison-users/conversations/topics/10918 , Unison currently does not build on OS X 10.7 or higher, because it uses the BWToolkit and Interface Builder plugin, which are no longer supported in Xcode 4. >> >> I currently have a visually unappealing codebase which will build and run on both Xcode 3 and 4. I'm working to clean it up for submission. After that, I am going to investigate some UI improvements: more clear display of conflicts in packages and the ability to click on a growl notification to open Unison. >> >> Are there any other items that should be fixed for OS X? What is the oldest version of OS X that we should retain support for? >> _______________________________________________ >> Unison-hackers mailing list >> Unison-hackers at lists.seas.upenn.edu >> http://lists.seas.upenn.edu/mailman/listinfo/unison-hackers >> >> >> >> -- >> Christopher Vance >> _______________________________________________ >> Unison-hackers mailing list >> Unison-hackers at lists.seas.upenn.edu >> http://lists.seas.upenn.edu/mailman/listinfo/unison-hackers > _______________________________________________ > Unison-hackers mailing list > Unison-hackers at lists.seas.upenn.edu > http://lists.seas.upenn.edu/mailman/listinfo/unison-hackers -------------- next part -------------- An HTML attachment was scrubbed... URL: From ats at acm.org Thu May 8 22:06:00 2014 From: ats at acm.org (Alan Shutko) Date: Thu, 8 May 2014 21:06:00 -0500 Subject: [Unison-hackers] Seeking to bring Mac support up to date In-Reply-To: References: Message-ID: <2DE7E137-D2C8-4D57-AC67-50D136599829@acm.org> I've fixed the disclosure triangle crash while syncing, and updated the below. Fun problem. It was actually caused by the ProgressCell release/retain changes from Onne Gorter a few years back (to resolve a different bug). Long story short, NSOutlineView does a lot of copying behind the scenes, so NSCell descendants need to override copyWithZone _and_ do the proper memory management in their init and dealloc methods. On May 7, 2014, at 9:41 PM, Alan Shutko wrote: > As promised, here is my work-in-progress, ready for review and beta testing. > > A version of the app, compiled with Xcode 5.1 (although it also builds with Xcode 3) is at https://dl.dropboxusercontent.com/u/9371330/Unison.zip > > I've put my source tree on Github at https://github.com/alanshutko/unison -------------- next part -------------- An HTML attachment was scrubbed... URL: From bcpierce at cis.upenn.edu Fri May 9 10:58:28 2014 From: bcpierce at cis.upenn.edu (Benjamin C. Pierce) Date: Fri, 9 May 2014 10:58:28 -0400 Subject: [Unison-hackers] Seeking to bring Mac support up to date In-Reply-To: <2DE7E137-D2C8-4D57-AC67-50D136599829@acm.org> References: <2DE7E137-D2C8-4D57-AC67-50D136599829@acm.org> Message-ID: <633620C1-9F5D-4D21-A6A0-0E37FAEFFE32@cis.upenn.edu> Seems to run well for me. I noticed that we forgot to bump the minor version number when the maxsizethreshold flag was added. We should do that soon, but I?ll hold off doing it now so that we don?t get too many changes going in parallel. We should update the copyright notice ? it says 2006 at the moment! (Is there a way to get it from someplace that?s easy to remember to update later?) It seems that the same path can occur multiple times in the GUI ? do you understand why? - B On May 8, 2014, at 10:06 PM, Alan Shutko wrote: > I've fixed the disclosure triangle crash while syncing, and updated the below. > > Fun problem. It was actually caused by the ProgressCell release/retain changes from Onne Gorter a few years back (to resolve a different bug). Long story short, NSOutlineView does a lot of copying behind the scenes, so NSCell descendants need to override copyWithZone _and_ do the proper memory management in their init and dealloc methods. > > On May 7, 2014, at 9:41 PM, Alan Shutko wrote: > >> As promised, here is my work-in-progress, ready for review and beta testing. >> >> A version of the app, compiled with Xcode 5.1 (although it also builds with Xcode 3) is at https://dl.dropboxusercontent.com/u/9371330/Unison.zip >> >> I've put my source tree on Github at https://github.com/alanshutko/unison > > _______________________________________________ > Unison-hackers mailing list > Unison-hackers at lists.seas.upenn.edu > http://lists.seas.upenn.edu/mailman/listinfo/unison-hackers -------------- next part -------------- An HTML attachment was scrubbed... URL: From ats at acm.org Fri May 9 12:30:21 2014 From: ats at acm.org (Alan Shutko) Date: Fri, 9 May 2014 11:30:21 -0500 Subject: [Unison-hackers] Seeking to bring Mac support up to date In-Reply-To: <633620C1-9F5D-4D21-A6A0-0E37FAEFFE32@cis.upenn.edu> References: <2DE7E137-D2C8-4D57-AC67-50D136599829@acm.org> <633620C1-9F5D-4D21-A6A0-0E37FAEFFE32@cis.upenn.edu> Message-ID: <11486304-5C2C-4BBC-810E-B1943CED027C@acm.org> Good point, Emacs has been updating the copyright for files as I change them, but I'll update the UI too. The paths can appear multiple times in the UI and have for ages... I suspect it sorts somewhere by recommendation (copy to remote, copy to local, unsure). It drives me crazy. I'll look into it. On May 9, 2014, at 9:58 AM, Benjamin C. Pierce wrote: > Seems to run well for me. > > I noticed that we forgot to bump the minor version number when the maxsizethreshold flag was added. We should do that soon, but I?ll hold off doing it now so that we don?t get too many changes going in parallel. > > We should update the copyright notice ? it says 2006 at the moment! (Is there a way to get it from someplace that?s easy to remember to update later?) > > It seems that the same path can occur multiple times in the GUI ? do you understand why? > > - B > > > On May 8, 2014, at 10:06 PM, Alan Shutko wrote: > >> I've fixed the disclosure triangle crash while syncing, and updated the below. >> >> Fun problem. It was actually caused by the ProgressCell release/retain changes from Onne Gorter a few years back (to resolve a different bug). Long story short, NSOutlineView does a lot of copying behind the scenes, so NSCell descendants need to override copyWithZone _and_ do the proper memory management in their init and dealloc methods. >> >> On May 7, 2014, at 9:41 PM, Alan Shutko wrote: >> >>> As promised, here is my work-in-progress, ready for review and beta testing. >>> >>> A version of the app, compiled with Xcode 5.1 (although it also builds with Xcode 3) is at https://dl.dropboxusercontent.com/u/9371330/Unison.zip >>> >>> I've put my source tree on Github at https://github.com/alanshutko/unison >> >> _______________________________________________ >> Unison-hackers mailing list >> Unison-hackers at lists.seas.upenn.edu >> http://lists.seas.upenn.edu/mailman/listinfo/unison-hackers > > _______________________________________________ > Unison-hackers mailing list > Unison-hackers at lists.seas.upenn.edu > http://lists.seas.upenn.edu/mailman/listinfo/unison-hackers -------------- next part -------------- An HTML attachment was scrubbed... URL: From alan.schmitt at polytechnique.org Sat May 10 08:30:24 2014 From: alan.schmitt at polytechnique.org (Alan Schmitt) Date: Sat, 10 May 2014 14:30:24 +0200 Subject: [Unison-hackers] Seeking to bring Mac support up to date In-Reply-To: <633620C1-9F5D-4D21-A6A0-0E37FAEFFE32@cis.upenn.edu> (Benjamin C. Pierce's message of "Fri, 9 May 2014 10:58:28 -0400") References: <2DE7E137-D2C8-4D57-AC67-50D136599829@acm.org> <633620C1-9F5D-4D21-A6A0-0E37FAEFFE32@cis.upenn.edu> Message-ID: On 2014-05-09 16:58, "Benjamin C. Pierce" writes: > Seems to run well for me. I just gave it a try, and it's working great for me too. Thanks a lot! Alan From ats at acm.org Mon May 12 23:55:23 2014 From: ats at acm.org (Alan Shutko) Date: Mon, 12 May 2014 22:55:23 -0500 Subject: [Unison-hackers] Seeking to bring Mac support up to date In-Reply-To: <633620C1-9F5D-4D21-A6A0-0E37FAEFFE32@cis.upenn.edu> References: <2DE7E137-D2C8-4D57-AC67-50D136599829@acm.org> <633620C1-9F5D-4D21-A6A0-0E37FAEFFE32@cis.upenn.edu> Message-ID: I think I've figured this out, but I need to set up a good test scenario to be sure. The initial sort is set to be by file size first and then path. If all the items beneath a path have a file size, no problem, it sorts right. If none of the items have a size (seen in cases where you've got a file on one side but not the other), it sorts right. If you have a bit of both, it sorts items in the same hierarchy away from each other, and then the grouping makes things show up differently. I should get time to build a test scenario in the next day or so. With luck, I'll just automate setup and check that in too, so we'll have it handy. On May 9, 2014, at 9:58 AM, Benjamin C. Pierce wrote: > It seems that the same path can occur multiple times in the GUI ? do you understand why? From crestani at informatik.uni-tuebingen.de Thu May 15 02:00:37 2014 From: crestani at informatik.uni-tuebingen.de (Marcus Crestani) Date: Thu, 15 May 2014 08:00:37 +0200 Subject: [Unison-hackers] Seeking to bring Mac support up to date In-Reply-To: (Alan Shutko's message of "Wed, 7 May 2014 21:41:28 -0500") References: Message-ID: Alan, thank you so much for your great work on updating the OS X client. >>>>>"AS" == Alan Shutko writes: AS> As promised, here is my work-in-progress, ready for review and beta testing. I've been using your latest version the last couple of days and it worked perfectly --- until today. Today I tried to synchronize a rather large set (a texlive-2013 installation, around 4GB). Your Unison build syncs about one third of the set and then crashes. I've attached two crash reports, one is a report where I ran your improved OS X GUI, the other one is a report where I ran your build with "-ui text" from the command line. With the text UI I could see that it crashed reproducibly when trying to sync the same file (at least the three times I tried it). The sync works with a "UISTYLE=text" version that I've just build myself from the sources in the svn repository (https://webdav.seas.upenn.edu/svn/unison) with latest ocaml. Do you have any idea what causes the problem I am seeing? I am happy to help debugging the problem, please let me know if and how I can provide more debugging information. -- Marcus -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: unison-crash-report-osx-gui.txt URL: -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: unison-crash-report-osx-text.txt URL: From ats at acm.org Thu May 15 13:09:52 2014 From: ats at acm.org (Alan Shutko) Date: Thu, 15 May 2014 12:09:52 -0500 Subject: [Unison-hackers] Seeking to bring Mac support up to date In-Reply-To: References: Message-ID: I'll take a look at this. I built things with "The OCaml toplevel, version 4.01.0". I think that's the latest version. I did have to change uimacbridgenew.ml which might affect the text UI. That could cause it, maybe. For your sync, was it a local tl2013 sync, or remote over an ssh connection? Which file was it failing on? I've got tl2013 here as well, so I can try to reproduce. On May 15, 2014, at 1:00 AM, Marcus Crestani wrote: > Alan, > > thank you so much for your great work on updating the OS X client. > >>>>>> "AS" == Alan Shutko writes: > AS> As promised, here is my work-in-progress, ready for review and beta testing. > > I've been using your latest version the last couple of days and it > worked perfectly --- until today. Today I tried to synchronize a rather > large set (a texlive-2013 installation, around 4GB). > > Your Unison build syncs about one third of the set and then crashes. > I've attached two crash reports, one is a report where I ran your > improved OS X GUI, the other one is a report where I ran your build with > "-ui text" from the command line. With the text UI I could see that it > crashed reproducibly when trying to sync the same file (at least the > three times I tried it). > > The sync works with a "UISTYLE=text" version that I've just build > myself from the sources in the svn repository > (https://webdav.seas.upenn.edu/svn/unison) with latest ocaml. > > Do you have any idea what causes the problem I am seeing? I am happy > to help debugging the problem, please let me know if and how I can > provide more debugging information. > > -- > Marcus > > Process: Unison [72413] > Path: /Applications/Unison.app/Contents/MacOS/Unison > Identifier: edu.upenn.cis.Unison > Version: ??? > Code Type: X86-64 (Native) > Parent Process: launchd [252] > Responsible: Unison [72413] > User ID: 501 > > Date/Time: 2014-05-14 17:53:38.034 +0200 > OS Version: Mac OS X 10.9.2 (13C1021) > Report Version: 11 > Anonymous UUID: 6DD29D4A-D622-0A75-72FA-4CA1808E699B > > Sleep/Wake UUID: ECD2FFB2-6FD1-4F30-8047-7518E071DE2A > > Crashed Thread: 0 Dispatch queue: com.apple.main-thread > > Exception Type: EXC_CRASH (SIGILL) > Exception Codes: 0x0000000000000000, 0x0000000000000000 > > Thread 0 Crashed:: Dispatch queue: com.apple.main-thread > 0 libsystem_kernel.dylib 0x00007fff8c072a1a mach_msg_trap + 10 > 1 libsystem_kernel.dylib 0x00007fff8c071d18 mach_msg + 64 > 2 com.apple.CoreFoundation 0x00007fff9267ffc5 __CFRunLoopServiceMachPort + 181 > 3 com.apple.CoreFoundation 0x00007fff9267f5e9 __CFRunLoopRun + 1161 > 4 com.apple.CoreFoundation 0x00007fff9267ef25 CFRunLoopRunSpecific + 309 > 5 com.apple.HIToolbox 0x00007fff8dbc4a0d RunCurrentEventLoopInMode + 226 > 6 com.apple.HIToolbox 0x00007fff8dbc47b7 ReceiveNextEventCommon + 479 > 7 com.apple.HIToolbox 0x00007fff8dbc45bc _BlockUntilNextEventMatchingListInModeWithFilter + 65 > 8 com.apple.AppKit 0x00007fff939e63de _DPSNextEvent + 1434 > 9 com.apple.AppKit 0x00007fff939e5a2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122 > 10 com.apple.AppKit 0x00007fff939d9b2c -[NSApplication run] + 553 > 11 com.apple.AppKit 0x00007fff939c4913 NSApplicationMain + 940 > 12 edu.upenn.cis.Unison 0x0000000100001984 start + 52 > > Thread 1:: Dispatch queue: com.apple.libdispatch-manager > 0 libsystem_kernel.dylib 0x00007fff8c077662 kevent64 + 10 > 1 libdispatch.dylib 0x00007fff8b74f43d _dispatch_mgr_invoke + 239 > 2 libdispatch.dylib 0x00007fff8b74f152 _dispatch_mgr_thread + 52 > > Thread 2: > 0 libsystem_kernel.dylib 0x00007fff8c076716 __psynch_cvwait + 10 > 1 libsystem_pthread.dylib 0x00007fff901f2c3b _pthread_cond_wait + 727 > 2 edu.upenn.cis.Unison 0x000000010001326c caml_thread_join + 111 > 3 edu.upenn.cis.Unison 0x000000010002dc2a .L304 + 15 > 4 com.apple.Foundation 0x00007fff906f776b __NSThread__main__ + 1318 > 5 libsystem_pthread.dylib 0x00007fff901f0899 _pthread_body + 138 > 6 libsystem_pthread.dylib 0x00007fff901f072a _pthread_start + 137 > 7 libsystem_pthread.dylib 0x00007fff901f4fc9 thread_start + 13 > > Thread 3: > 0 libsystem_kernel.dylib 0x00007fff8c076716 __psynch_cvwait + 10 > 1 libsystem_pthread.dylib 0x00007fff901f2c3b _pthread_cond_wait + 727 > 2 edu.upenn.cis.Unison 0x000000010000aeb9 bridgeThreadWait + 125 > 3 edu.upenn.cis.Unison 0x000000010002cd57 .L137 + 19 > 4 libsystem_pthread.dylib 0x00007fff901f0899 _pthread_body + 138 > 5 libsystem_pthread.dylib 0x00007fff901f072a _pthread_start + 137 > 6 libsystem_pthread.dylib 0x00007fff901f4fc9 thread_start + 13 > > Thread 4: > 0 libsystem_kernel.dylib 0x00007fff8c0769aa __select + 10 > 1 edu.upenn.cis.Unison 0x00000001000127fe caml_thread_tick + 97 > 2 libsystem_pthread.dylib 0x00007fff901f0899 _pthread_body + 138 > 3 libsystem_pthread.dylib 0x00007fff901f072a _pthread_start + 137 > 4 libsystem_pthread.dylib 0x00007fff901f4fc9 thread_start + 13 > > Thread 5: > 0 libsystem_kernel.dylib 0x00007fff8c076716 __psynch_cvwait + 10 > 1 libsystem_pthread.dylib 0x00007fff901f2c3b _pthread_cond_wait + 727 > 2 edu.upenn.cis.Unison 0x000000010000aeb9 bridgeThreadWait + 125 > 3 edu.upenn.cis.Unison 0x000000010002cd57 .L137 + 19 > 4 libsystem_pthread.dylib 0x00007fff901f0899 _pthread_body + 138 > 5 libsystem_pthread.dylib 0x00007fff901f072a _pthread_start + 137 > 6 libsystem_pthread.dylib 0x00007fff901f4fc9 thread_start + 13 > > Thread 6: > 0 libsystem_kernel.dylib 0x00007fff8c076716 __psynch_cvwait + 10 > 1 libsystem_pthread.dylib 0x00007fff901f2c3b _pthread_cond_wait + 727 > 2 edu.upenn.cis.Unison 0x000000010000aeb9 bridgeThreadWait + 125 > 3 edu.upenn.cis.Unison 0x000000010002cd57 .L137 + 19 > 4 libsystem_pthread.dylib 0x00007fff901f0899 _pthread_body + 138 > 5 libsystem_pthread.dylib 0x00007fff901f072a _pthread_start + 137 > 6 libsystem_pthread.dylib 0x00007fff901f4fc9 thread_start + 13 > > Thread 7: > 0 libsystem_kernel.dylib 0x00007fff8c072a1a mach_msg_trap + 10 > 1 libsystem_kernel.dylib 0x00007fff8c071d18 mach_msg + 64 > 2 com.apple.CoreFoundation 0x00007fff9267ffc5 __CFRunLoopServiceMachPort + 181 > 3 com.apple.CoreFoundation 0x00007fff9267f5e9 __CFRunLoopRun + 1161 > 4 com.apple.CoreFoundation 0x00007fff9267ef25 CFRunLoopRunSpecific + 309 > 5 com.apple.AppKit 0x00007fff93b8616e _NSEventThread + 144 > 6 libsystem_pthread.dylib 0x00007fff901f0899 _pthread_body + 138 > 7 libsystem_pthread.dylib 0x00007fff901f072a _pthread_start + 137 > 8 libsystem_pthread.dylib 0x00007fff901f4fc9 thread_start + 13 > > Thread 8: > 0 edu.upenn.cis.Unison 0x0000000100028ab1 caml_c_call + 33 > 1 ??? 0x000000011258be58 0 + 4602773080 > > Thread 9:: com.apple.appkit-heartbeat > 0 libsystem_kernel.dylib 0x00007fff8c076a3a __semwait_signal + 10 > 1 libsystem_c.dylib 0x00007fff8ea6bdc0 nanosleep + 200 > 2 libsystem_c.dylib 0x00007fff8ea6bcb2 usleep + 54 > 3 com.apple.AppKit 0x00007fff93c4a21d -[NSUIHeartBeat _heartBeatThread:] + 2132 > 4 com.apple.Foundation 0x00007fff906f776b __NSThread__main__ + 1318 > 5 libsystem_pthread.dylib 0x00007fff901f0899 _pthread_body + 138 > 6 libsystem_pthread.dylib 0x00007fff901f072a _pthread_start + 137 > 7 libsystem_pthread.dylib 0x00007fff901f4fc9 thread_start + 13 > > Thread 10: > 0 libsystem_kernel.dylib 0x00007fff8c076e6a __workq_kernreturn + 10 > 1 libsystem_pthread.dylib 0x00007fff901f1f08 _pthread_wqthread + 330 > 2 libsystem_pthread.dylib 0x00007fff901f4fb9 start_wqthread + 13 > > Thread 0 crashed with X86 Thread State (64-bit): > rax: 0x0000000010004005 rbx: 0x0000000007000006 rcx: 0x00007fff5fbfe468 rdx: 0x0000000000000000 > rdi: 0x00007fff5fbfe5a0 rsi: 0x0000000007000006 rbp: 0x00007fff5fbfe4b0 rsp: 0x00007fff5fbfe468 > r8: 0x0000000000002b03 r9: 0x00000000ffffffff r10: 0x0000000000000c00 r11: 0x0000000000000206 > r12: 0x0000000000000c00 r13: 0x0000000000000000 r14: 0x00007fff5fbfe5a0 r15: 0x0000000000002b03 > rip: 0x00007fff8c072a1a rfl: 0x0000000000000206 cr2: 0x000000010a7e1000 > > Logical CPU: 0 > Error Code: 0x0100001f > Trap Number: 133 > > > Binary Images: > 0x100000000 - 0x10010bfef +edu.upenn.cis.Unison (???) <30D7E340-56D7-5B1E-3A00-80DFE3067998> /Applications/Unison.app/Contents/MacOS/Unison > 0x100368000 - 0x100374ff7 +com.growl.growlframework (1.2.1 - 1.2.1) <40462CEC-EE57-4FAD-A138-221D365DC5E4> /Applications/Unison.app/Contents/Frameworks/Growl.framework/Versions/A/Growl > 0x1007f0000 - 0x1007f8ff3 libCGCMS.A.dylib (599.21.1) <84C6C6F3-AD75-3120-A86F-8AE1005A0ECE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib > 0x104584000 - 0x104587ffa libCGXType.A.dylib (599.21.1) <0F364FEE-105D-329D-B823-082AA45E6AFD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib > 0x105020000 - 0x105020ffd +cl_kernels (???) cl_kernels > 0x1052c5000 - 0x1052edffb libRIP.A.dylib (599.21.1) <994C1D46-A532-3361-8C20-11778DC12040> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib > 0x1052fd000 - 0x1052fdfff +cl_kernels (???) <8F9987ED-5866-41B5-9990-DD52DA770BFA> cl_kernels > 0x1071d9000 - 0x1071dfff7 libCGXCoreImage.A.dylib (599.21.1) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib > 0x10b839000 - 0x10b91ffef unorm8_bgra.dylib (2.3.58) <6E7397EF-CC78-3C15-8B21-05E7FB47F645> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib > 0x7fff67220000 - 0x7fff67253817 dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld > 0x7fff8b740000 - 0x7fff8b74bff7 com.apple.NetAuth (5.0 - 5.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth > 0x7fff8b74c000 - 0x7fff8b766fff libdispatch.dylib (339.90.1) /usr/lib/system/libdispatch.dylib > 0x7fff8c02b000 - 0x7fff8c060ffc com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP > 0x7fff8c061000 - 0x7fff8c07dff7 libsystem_kernel.dylib (2422.92.1) <3F649963-7FA1-3201-8FF6-8438A52B9973> /usr/lib/system/libsystem_kernel.dylib > 0x7fff8c5f8000 - 0x7fff8c611ff7 com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos > 0x7fff8c863000 - 0x7fff8c864ff7 libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib > 0x7fff8c865000 - 0x7fff8c870ff7 com.apple.DirectoryService.Framework (10.9 - 173.90.1) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService > 0x7fff8c898000 - 0x7fff8d1b768f com.apple.CoreGraphics (1.600.0 - 599.21.1) <23BCDB0F-4E60-31BA-859C-820351D50111> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics > 0x7fff8d1b8000 - 0x7fff8d1d4fff libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib > 0x7fff8d1d5000 - 0x7fff8d23fff7 com.apple.framework.IOKit (2.0.1 - 907.90.2) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit > 0x7fff8d240000 - 0x7fff8d24aff7 com.apple.CrashReporterSupport (10.9 - 538) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport > 0x7fff8db40000 - 0x7fff8db48ff7 com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition > 0x7fff8db62000 - 0x7fff8db63fff liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib > 0x7fff8db96000 - 0x7fff8de40ff5 com.apple.HIToolbox (2.1 - 697.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox > 0x7fff8de56000 - 0x7fff8df1ffff com.apple.LaunchServices (572.26 - 572.26) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices > 0x7fff8df76000 - 0x7fff8df9dffb libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib > 0x7fff8dfdd000 - 0x7fff8e024fff libFontRegistry.dylib (127) <401FA61F-4276-3296-9BFF-EC6EA7D7EDDE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib > 0x7fff8e1a8000 - 0x7fff8e47cfc7 com.apple.vImage (7.0 - 7.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage > 0x7fff8e47d000 - 0x7fff8e506fff com.apple.ColorSync (4.9.0 - 4.9.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync > 0x7fff8e507000 - 0x7fff8e507ff7 libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib > 0x7fff8e508000 - 0x7fff8e50efff com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification > 0x7fff8e8d8000 - 0x7fff8e8d8fff com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon > 0x7fff8e8d9000 - 0x7fff8e8e2ffd com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth > 0x7fff8e8e3000 - 0x7fff8e8f2ff8 com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis > 0x7fff8e9f0000 - 0x7fff8ea79ff7 libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib > 0x7fff8ea7a000 - 0x7fff8ea7affd libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib > 0x7fff8eb22000 - 0x7fff8eb2dfff libGL.dylib (9.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib > 0x7fff8eb2e000 - 0x7fff8eb92fff com.apple.datadetectorscore (5.0 - 354.3) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore > 0x7fff8ebd4000 - 0x7fff8ec03ff9 com.apple.GSS (4.0 - 2.0) <1B71A3E1-E31D-32CC-A733-ED155CC4A6A2> /System/Library/Frameworks/GSS.framework/Versions/A/GSS > 0x7fff8ec04000 - 0x7fff8ec04fff com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib > 0x7fff8ec07000 - 0x7fff8ec14ff0 libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib > 0x7fff8ec67000 - 0x7fff8ecd6ff1 com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS > 0x7fff8ecda000 - 0x7fff8ece1ff8 liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib > 0x7fff8ed9c000 - 0x7fff8ee60ff7 com.apple.backup.framework (1.5.2 - 1.5.2) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup > 0x7fff8ee61000 - 0x7fff8ee62ff7 com.apple.print.framework.Print (9.0 - 260) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print > 0x7fff8eeb9000 - 0x7fff8eebaff7 libsystem_blocks.dylib (63) /usr/lib/system/libsystem_blocks.dylib > 0x7fff8eebe000 - 0x7fff8eec0ffb libutil.dylib (34) /usr/lib/libutil.dylib > 0x7fff8eeca000 - 0x7fff8f123ff9 com.apple.security (7.0 - 55471.14.1) /System/Library/Frameworks/Security.framework/Versions/A/Security > 0x7fff8f2ae000 - 0x7fff8f2c6ff7 com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage > 0x7fff8f2c7000 - 0x7fff8f2c8ff7 libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib > 0x7fff8f2c9000 - 0x7fff8f379ff7 libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib > 0x7fff8f37d000 - 0x7fff8f384ff3 libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib > 0x7fff8f385000 - 0x7fff8f387fff libRadiance.dylib (1042.2) <63C92F09-F862-3303-9EF6-55A80B48F2CF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib > 0x7fff8f696000 - 0x7fff8f69fffb libCGInterfaces.dylib (271) <68EFBEFE-7506-3235-99A2-5B69EDBFD7B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Resources/libCGInterfaces.dylib > 0x7fff8f6ef000 - 0x7fff8f7c0ff1 com.apple.DiskImagesFramework (10.9 - 371.1) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages > 0x7fff8f7c1000 - 0x7fff8faabfff com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore > 0x7fff8fd4e000 - 0x7fff8fda0fff libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib > 0x7fff8fece000 - 0x7fff8ff06ff7 com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices > 0x7fff8ff07000 - 0x7fff8ff40ff7 com.apple.QD (3.50 - 298) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD > 0x7fff8ff41000 - 0x7fff8ff6afff com.apple.DictionaryServices (1.2 - 208) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices > 0x7fff8ffde000 - 0x7fff9005efff com.apple.CoreSymbolication (3.0 - 141) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication > 0x7fff9005f000 - 0x7fff9018fff7 com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv > 0x7fff901ef000 - 0x7fff901f6ff7 libsystem_pthread.dylib (53.1.4) /usr/lib/system/libsystem_pthread.dylib > 0x7fff901f7000 - 0x7fff9026afff com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation > 0x7fff9026b000 - 0x7fff9026dff7 com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI > 0x7fff902af000 - 0x7fff90690ffe libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib > 0x7fff90691000 - 0x7fff9098ffff com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation > 0x7fff90990000 - 0x7fff9099cff7 com.apple.OpenDirectory (10.9 - 173.90.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory > 0x7fff90a8a000 - 0x7fff90aaeff7 libJPEG.dylib (1042.2) <0AFE20D1-F24D-3548-A562-DB8FA7995655> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib > 0x7fff90d73000 - 0x7fff90d73ffd com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit > 0x7fff90d74000 - 0x7fff90d77fff libCoreVMClient.dylib (58.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib > 0x7fff90daa000 - 0x7fff90dadfff com.apple.help (1.3.3 - 46) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help > 0x7fff90dae000 - 0x7fff90dfbff2 com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore > 0x7fff90dfc000 - 0x7fff90f98ff3 com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore > 0x7fff911a2000 - 0x7fff911b2fff libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib > 0x7fff911b3000 - 0x7fff91243fff com.apple.Metadata (10.7.0 - 800.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata > 0x7fff91244000 - 0x7fff91248ff7 libheimdal-asn1.dylib (323.92.1) /usr/lib/libheimdal-asn1.dylib > 0x7fff912a2000 - 0x7fff912c7ff7 com.apple.ChunkingLibrary (2.0 - 155.1) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary > 0x7fff912c8000 - 0x7fff912ccfff com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels > 0x7fff912cd000 - 0x7fff91515ff7 com.apple.CoreData (107 - 481.01) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData > 0x7fff91ad7000 - 0x7fff91b08fff com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit > 0x7fff91b09000 - 0x7fff91b6cff7 com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration > 0x7fff91b6d000 - 0x7fff91b6fff3 libsystem_configuration.dylib (596.13) /usr/lib/system/libsystem_configuration.dylib > 0x7fff91e02000 - 0x7fff91e04fff libCVMSPluginSupport.dylib (9.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib > 0x7fff92329000 - 0x7fff92382fff libTIFF.dylib (1042.2) <1C80C3FD-639C-3781-8A30-265410DD444F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib > 0x7fff92383000 - 0x7fff92384fff com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent > 0x7fff9260f000 - 0x7fff927f4fff com.apple.CoreFoundation (6.9 - 855.16) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation > 0x7fff9287a000 - 0x7fff928f1fff com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices > 0x7fff928f2000 - 0x7fff92919ff7 libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib > 0x7fff9291a000 - 0x7fff9291eff7 libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib > 0x7fff9291f000 - 0x7fff9294efd2 libsystem_m.dylib (3047.16) /usr/lib/system/libsystem_m.dylib > 0x7fff92953000 - 0x7fff92960ff7 libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib > 0x7fff92961000 - 0x7fff92a52ff9 libiconv.2.dylib (41) /usr/lib/libiconv.2.dylib > 0x7fff92a54000 - 0x7fff92b16ff5 com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText > 0x7fff939c2000 - 0x7fff94538fff com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit > 0x7fff94750000 - 0x7fff948c0ff4 com.apple.CFNetwork (673.4 - 673.4) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork > 0x7fff948c1000 - 0x7fff948c8fff com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS > 0x7fff948c9000 - 0x7fff948c9fff com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate > 0x7fff94a28000 - 0x7fff94b07fff libcrypto.0.9.8.dylib (50) /usr/lib/libcrypto.0.9.8.dylib > 0x7fff94b08000 - 0x7fff94b11ff3 libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib > 0x7fff94b1e000 - 0x7fff94b63ffe com.apple.HIServices (1.22 - 467.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices > 0x7fff94b8e000 - 0x7fff94bb7ff7 libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib > 0x7fff94c27000 - 0x7fff94d15fff libJP2.dylib (1042.2) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib > 0x7fff94d16000 - 0x7fff94d1aff7 libGIF.dylib (1042.2) <0A9267FF-D93A-36DF-87B9-BA34C1166C0C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib > 0x7fff94dd8000 - 0x7fff9520bffb com.apple.vision.FaceCore (3.0.0 - 3.0.0) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore > 0x7fff95246000 - 0x7fff95284ff7 libGLImage.dylib (9.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib > 0x7fff952d0000 - 0x7fff952ddff4 com.apple.Librarian (1.2 - 1) /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian > 0x7fff952de000 - 0x7fff952e1ff7 libdyld.dylib (239.4) /usr/lib/system/libdyld.dylib > 0x7fff952e2000 - 0x7fff952ebff7 libcldcpuengine.dylib (2.3.58) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib > 0x7fff9538e000 - 0x7fff953b2fff libxpc.dylib (300.90.2) /usr/lib/system/libxpc.dylib > 0x7fff953b3000 - 0x7fff953cbff7 com.apple.openscripting (1.4 - 157) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting > 0x7fff95451000 - 0x7fff95456ff7 libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib > 0x7fff95457000 - 0x7fff95472ff7 libsystem_malloc.dylib (23.10.1) /usr/lib/system/libsystem_malloc.dylib > 0x7fff95473000 - 0x7fff9547fff3 com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression > 0x7fff95480000 - 0x7fff954bbfff com.apple.bom (14.0 - 193.1) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom > 0x7fff954bc000 - 0x7fff955a3ff7 libxml2.2.dylib (26) /usr/lib/libxml2.2.dylib > 0x7fff955a4000 - 0x7fff95630ff7 com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink > 0x7fff95631000 - 0x7fff958c2fff com.apple.RawCamera.bundle (5.04 - 736) <0C8A3629-BEAC-34A7-A3A3-B9AF4B3AB4B4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera > 0x7fff958ea000 - 0x7fff958f4fff libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib > 0x7fff958f5000 - 0x7fff958f6fff libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib > 0x7fff9594f000 - 0x7fff9594ffff com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices > 0x7fff95950000 - 0x7fff95950fff com.apple.Cocoa (6.8 - 20) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa > 0x7fff95951000 - 0x7fff95952ff7 libodfde.dylib (20) /usr/lib/libodfde.dylib > 0x7fff95d92000 - 0x7fff95d96fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib > 0x7fff95dc5000 - 0x7fff95df1ff7 com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration > 0x7fff95df2000 - 0x7fff95e0bff7 com.apple.Ubiquity (1.3 - 289) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity > 0x7fff95e0c000 - 0x7fff95e38fff com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal > 0x7fff95e39000 - 0x7fff95e54ff7 libCRFSuite.dylib (34) /usr/lib/libCRFSuite.dylib > 0x7fff95e55000 - 0x7fff95e89fff libssl.0.9.8.dylib (50) /usr/lib/libssl.0.9.8.dylib > 0x7fff95e8a000 - 0x7fff95ed8fff com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL > 0x7fff95f82000 - 0x7fff95f83ffb libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib > 0x7fff95f84000 - 0x7fff95f89fff libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib > 0x7fff95fa2000 - 0x7fff960a8fff com.apple.ImageIO.framework (3.3.0 - 1042) /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO > 0x7fff960ea000 - 0x7fff96129fff libGLU.dylib (9.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib > 0x7fff9614c000 - 0x7fff96151fff com.apple.DiskArbitration (2.6 - 2.6) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration > 0x7fff96489000 - 0x7fff96496fff com.apple.Sharing (132.2 - 132.2) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing > 0x7fff96873000 - 0x7fff968b8fff libcurl.4.dylib (78.92.2) <548E2D61-103F-3737-9C7C-0C26246CD4C8> /usr/lib/libcurl.4.dylib > 0x7fff96c3e000 - 0x7fff96c48ff7 com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement > 0x7fff96c49000 - 0x7fff96ca1ff7 com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication > 0x7fff96f08000 - 0x7fff96f0ffff libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib > 0x7fff96f36000 - 0x7fff97020fff libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib > 0x7fff97021000 - 0x7fff9718fff7 libBLAS.dylib (1094.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib > 0x7fff9719d000 - 0x7fff971aeff7 libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib > 0x7fff971d4000 - 0x7fff971d8ff7 libcache.dylib (62) /usr/lib/system/libcache.dylib > 0x7fff971d9000 - 0x7fff971f4ff7 libPng.dylib (1042.2) <103F76EB-0FB7-320E-822F-53483CCB7299> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib > 0x7fff971f5000 - 0x7fff971fbff7 libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib > 0x7fff97285000 - 0x7fff9729cff7 com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory > 0x7fff9729d000 - 0x7fff972abfff com.apple.CommerceCore (1.0 - 42) /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore > 0x7fff972ac000 - 0x7fff972d1ff7 com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo > 0x7fff973a5000 - 0x7fff973a6ff7 libSystem.B.dylib (1197.1.1) /usr/lib/libSystem.B.dylib > 0x7fff973a7000 - 0x7fff9745fff7 com.apple.DiscRecording (8.0 - 8000.4.6) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording > 0x7fff97460000 - 0x7fff97470ffb libsasl2.2.dylib (170) /usr/lib/libsasl2.2.dylib > 0x7fff974a4000 - 0x7fff974a7ff7 com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore > 0x7fff974ba000 - 0x7fff974e2ffb libxslt.1.dylib (13) /usr/lib/libxslt.1.dylib > 0x7fff974e3000 - 0x7fff974f5fff com.apple.ImageCapture (9.0 - 9.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture > 0x7fff97546000 - 0x7fff97594fff libcorecrypto.dylib (161.1) /usr/lib/system/libcorecrypto.dylib > 0x7fff9762c000 - 0x7fff9762fffc com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface > 0x7fff97861000 - 0x7fff978cefff com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit > 0x7fff978e3000 - 0x7fff978f5ff7 com.apple.MultitouchSupport.framework (245.13 - 245.13) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport > 0x7fff979ac000 - 0x7fff979bafff com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL > 0x7fff97a33000 - 0x7fff97a3bffc libGFXShared.dylib (9.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib > 0x7fff97a3c000 - 0x7fff97a8dff3 com.apple.audio.CoreAudio (4.2.0 - 4.2.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio > 0x7fff97a8e000 - 0x7fff97a90fff com.apple.ExceptionHandling (1.5 - 10) <0DD670E1-08D5-3570-BE98-19030BEA9845> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling > 0x7fff97a92000 - 0x7fff97ad9ff7 libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib > 0x7fff97c68000 - 0x7fff97cf3fff libCoreStorage.dylib (380) /usr/lib/libCoreStorage.dylib > 0x7fff97d51000 - 0x7fff97e1cfff libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib > 0x7fff9837c000 - 0x7fff98387fff libkxld.dylib (2422.92.1) /usr/lib/system/libkxld.dylib > 0x7fff98388000 - 0x7fff983edffb com.apple.Heimdal (4.0 - 2.0) <1560A2CC-2C0C-3F7B-868C-BD5ADB241F5A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal > 0x7fff98504000 - 0x7fff98526fff com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls > 0x7fff98550000 - 0x7fff9857ffff com.apple.DebugSymbols (106 - 106) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols > 0x7fff98580000 - 0x7fff98589fff com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis > 0x7fff985f6000 - 0x7fff98626fff com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices > 0x7fff986bc000 - 0x7fff9898cffc com.apple.CoreImage (9.2.7) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage > 0x7fff9898d000 - 0x7fff98995fff libsystem_dnssd.dylib (522.90.2) /usr/lib/system/libsystem_dnssd.dylib > 0x7fff98996000 - 0x7fff98b43f27 libobjc.A.dylib (551.1) /usr/lib/libobjc.A.dylib > 0x7fff98b44000 - 0x7fff98b47fff com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC > 0x7fff98b64000 - 0x7fff98b66ff7 libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib > 0x7fff98b67000 - 0x7fff98b67fff com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices > 0x7fff98b6c000 - 0x7fff98b7dff7 libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib > 0x7fff98b7e000 - 0x7fff98cd1ff7 com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox > 0x7fff98cd2000 - 0x7fff98db6fff com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI > 0x7fff98db7000 - 0x7fff98df8fff com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis > 0x7fff98e8c000 - 0x7fff99044ff3 libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib > 0x7fff9904c000 - 0x7fff99056ff7 libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib > 0x7fff99057000 - 0x7fff99059fff com.apple.EFILogin (2.0 - 2) /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin > 0x7fff99061000 - 0x7fff99150fff libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib > 0x7fff99151000 - 0x7fff991a4fff com.apple.ScalableUserInterface (1.0 - 1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface > 0x7fff99202000 - 0x7fff99244ff7 libauto.dylib (185.5) /usr/lib/libauto.dylib > 0x7fff99409000 - 0x7fff99464ffb com.apple.AE (665.5 - 665.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE > > External Modification Summary: > Calls made by other processes targeting this process: > task_for_pid: 2 > thread_create: 0 > thread_set_state: 0 > Calls made by this process: > task_for_pid: 0 > thread_create: 0 > thread_set_state: 0 > Calls made by all processes on this machine: > task_for_pid: 221992 > thread_create: 1 > thread_set_state: 0 > > VM Region Summary: > ReadOnly portion of Libraries: Total=164.0M resident=95.8M(58%) swapped_out_or_unallocated=68.3M(42%) > Writable regions: Total=520.0M written=260.3M(50%) resident=399.8M(77%) swapped_out=2340K(0%) unallocated=120.2M(23%) > > REGION TYPE VIRTUAL > =========== ======= > CG backing stores 7984K > CG image 864K > CG raster data 668K > CG shared images 244K > CoreImage 24K > CoreServices 308K > Image IO 88K > Kernel Alloc Once 8K > MALLOC 481.4M > MALLOC (admin) 32K > Memory Tag 242 12K > OpenCL 16K > STACK GUARD 56.0M > Stack 12.6M > VM_ALLOCATE 16.4M > __DATA 21.0M > __IMAGE 528K > __LINKEDIT 67.3M > __TEXT 96.7M > __UNICODE 544K > mapped file 67.7M > shared memory 4K > =========== ======= > TOTAL 830.2M > > Model: MacBookPro11,2, BootROM MBP112.0138.B02, 4 processors, Intel Core i7, 2.6 GHz, 16 GB, SMC 2.18f6 > Graphics: Intel Iris Pro, Intel Iris Pro, Built-In, 1024 MB > Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x02FE, 0x000000000000000000000000000000000000 > Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x02FE, 0x000000000000000000000000000000000000 > AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (6.30.223.154.63) > Bluetooth: Version 4.2.3f10 13477, 3 services, 15 devices, 1 incoming serial ports > Network Service: Thunderbolt Ethernet, Ethernet, en3 > Network Service: Wi-Fi, Ethernet, en0 > PCI Card: Apple 57762-A0, Ethernet Controller, Thunderbolt at 195,0,0 > Serial ATA Device: APPLE SSD SM0256F, 251 GB > USB Device: Internal Memory Card Reader > USB Device: Apple Internal Keyboard / Trackpad > USB Device: BRCM20702 Hub > USB Device: Bluetooth USB Host Controller > Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1 > Thunderbolt Device: Thunderbolt to Gigabit Ethernet Adapter, Apple Inc., 1, 5.5 > Process: Unison [72492] > Path: /Applications/Unison.app/Contents/MacOS/Unison > Identifier: Unison > Version: ??? > Code Type: X86-64 (Native) > Parent Process: tcsh [70538] > Responsible: launchd_startx [685] > User ID: 501 > > Date/Time: 2014-05-14 17:59:55.702 +0200 > OS Version: Mac OS X 10.9.2 (13C1021) > Report Version: 11 > Anonymous UUID: 6DD29D4A-D622-0A75-72FA-4CA1808E699B > > Sleep/Wake UUID: ECD2FFB2-6FD1-4F30-8047-7518E071DE2A > > Crashed Thread: 0 Dispatch queue: com.apple.main-thread > > Exception Type: EXC_CRASH (SIGILL) > Exception Codes: 0x0000000000000000, 0x0000000000000000 > > Thread 0 Crashed:: Dispatch queue: com.apple.main-thread > 0 libsystem_kernel.dylib 0x00007fff8c076716 __psynch_cvwait + 10 > 1 libsystem_pthread.dylib 0x00007fff901f2c3b _pthread_cond_wait + 727 > 2 unison 0x000000010000acbd _passCall + 88 > 3 unison 0x000000010000ae3a ocamlCall + 190 > 4 unison 0x0000000100001ab2 main + 294 > 5 unison 0x0000000100001984 start + 52 > > Thread 1:: Dispatch queue: com.apple.libdispatch-manager > 0 libsystem_kernel.dylib 0x00007fff8c077662 kevent64 + 10 > 1 libdispatch.dylib 0x00007fff8b74f43d _dispatch_mgr_invoke + 239 > 2 libdispatch.dylib 0x00007fff8b74f152 _dispatch_mgr_thread + 52 > > Thread 2: > 0 libsystem_kernel.dylib 0x00007fff8c076716 __psynch_cvwait + 10 > 1 libsystem_pthread.dylib 0x00007fff901f2c3b _pthread_cond_wait + 727 > 2 unison 0x000000010001326c caml_thread_join + 111 > 3 unison 0x000000010002dc2a .L304 + 15 > 4 com.apple.Foundation 0x00007fff906f776b __NSThread__main__ + 1318 > 5 libsystem_pthread.dylib 0x00007fff901f0899 _pthread_body + 138 > 6 libsystem_pthread.dylib 0x00007fff901f072a _pthread_start + 137 > 7 libsystem_pthread.dylib 0x00007fff901f4fc9 thread_start + 13 > > Thread 3: > 0 libsystem_kernel.dylib 0x00007fff8c076716 __psynch_cvwait + 10 > 1 libsystem_pthread.dylib 0x00007fff901f2c3b _pthread_cond_wait + 727 > 2 unison 0x000000010000aeb9 bridgeThreadWait + 125 > 3 unison 0x000000010002cd57 .L137 + 19 > 4 libsystem_pthread.dylib 0x00007fff901f0899 _pthread_body + 138 > 5 libsystem_pthread.dylib 0x00007fff901f072a _pthread_start + 137 > 6 libsystem_pthread.dylib 0x00007fff901f4fc9 thread_start + 13 > > Thread 4: > 0 libsystem_kernel.dylib 0x00007fff8c0769aa __select + 10 > 1 unison 0x00000001000127fe caml_thread_tick + 97 > 2 libsystem_pthread.dylib 0x00007fff901f0899 _pthread_body + 138 > 3 libsystem_pthread.dylib 0x00007fff901f072a _pthread_start + 137 > 4 libsystem_pthread.dylib 0x00007fff901f4fc9 thread_start + 13 > > Thread 5: > 0 libsystem_kernel.dylib 0x00007fff8c076716 __psynch_cvwait + 10 > 1 libsystem_pthread.dylib 0x00007fff901f2c3b _pthread_cond_wait + 727 > 2 unison 0x000000010000aeb9 bridgeThreadWait + 125 > 3 unison 0x000000010002cd57 .L137 + 19 > 4 libsystem_pthread.dylib 0x00007fff901f0899 _pthread_body + 138 > 5 libsystem_pthread.dylib 0x00007fff901f072a _pthread_start + 137 > 6 libsystem_pthread.dylib 0x00007fff901f4fc9 thread_start + 13 > > Thread 6: > 0 unison 0x0000000100028ab1 caml_c_call + 33 > 1 ??? 0x000000010be0ae78 0 + 4494241400 > > Thread 0 crashed with X86 Thread State (64-bit): > rax: 0x0000000000000104 rbx: 0x0000000000000000 rcx: 0x00007fff5fbfe858 rdx: 0x0000000000000000 > rdi: 0x0000000100112c80 rsi: 0x0000000100000100 rbp: 0x00007fff5fbfe910 rsp: 0x00007fff5fbfe858 > r8: 0x0000000000000000 r9: 0x0000000000000060 r10: 0x0000000000000000 r11: 0x0000000000000202 > r12: 0x00007fff7c06b310 r13: 0x0000000000000016 r14: 0x0000000000000001 r15: 0x0000000000000000 > rip: 0x00007fff8c076716 rfl: 0x0000000000000203 cr2: 0x0000000100504000 > > Logical CPU: 0 > Error Code: 0x02000131 > Trap Number: 133 > > > Binary Images: > 0x100000000 - 0x10010bfef +unison (???) <30D7E340-56D7-5B1E-3A00-80DFE3067998> /home/*/unison > 0x100368000 - 0x100374ff7 +com.growl.growlframework (1.2.1 - 1.2.1) <40462CEC-EE57-4FAD-A138-221D365DC5E4> /Applications/Unison.app/Contents/Frameworks/Growl.framework/Versions/A/Growl > 0x7fff60bf2000 - 0x7fff60c25817 dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld > 0x7fff8b740000 - 0x7fff8b74bff7 com.apple.NetAuth (5.0 - 5.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth > 0x7fff8b74c000 - 0x7fff8b766fff libdispatch.dylib (339.90.1) /usr/lib/system/libdispatch.dylib > 0x7fff8c061000 - 0x7fff8c07dff7 libsystem_kernel.dylib (2422.92.1) <3F649963-7FA1-3201-8FF6-8438A52B9973> /usr/lib/system/libsystem_kernel.dylib > 0x7fff8c5f8000 - 0x7fff8c611ff7 com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos > 0x7fff8c863000 - 0x7fff8c864ff7 libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib > 0x7fff8c898000 - 0x7fff8d1b768f com.apple.CoreGraphics (1.600.0 - 599.21.1) <23BCDB0F-4E60-31BA-859C-820351D50111> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics > 0x7fff8d1b8000 - 0x7fff8d1d4fff libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib > 0x7fff8d1d5000 - 0x7fff8d23fff7 com.apple.framework.IOKit (2.0.1 - 907.90.2) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit > 0x7fff8d240000 - 0x7fff8d24aff7 com.apple.CrashReporterSupport (10.9 - 538) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport > 0x7fff8db40000 - 0x7fff8db48ff7 com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition > 0x7fff8db62000 - 0x7fff8db63fff liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib > 0x7fff8db96000 - 0x7fff8de40ff5 com.apple.HIToolbox (2.1 - 697.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox > 0x7fff8de56000 - 0x7fff8df1ffff com.apple.LaunchServices (572.26 - 572.26) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices > 0x7fff8df76000 - 0x7fff8df9dffb libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib > 0x7fff8dfdd000 - 0x7fff8e024fff libFontRegistry.dylib (127) <401FA61F-4276-3296-9BFF-EC6EA7D7EDDE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib > 0x7fff8e1a8000 - 0x7fff8e47cfc7 com.apple.vImage (7.0 - 7.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage > 0x7fff8e47d000 - 0x7fff8e506fff com.apple.ColorSync (4.9.0 - 4.9.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync > 0x7fff8e507000 - 0x7fff8e507ff7 libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib > 0x7fff8e8d8000 - 0x7fff8e8d8fff com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon > 0x7fff8e8d9000 - 0x7fff8e8e2ffd com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth > 0x7fff8e8e3000 - 0x7fff8e8f2ff8 com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis > 0x7fff8e9f0000 - 0x7fff8ea79ff7 libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib > 0x7fff8ea7a000 - 0x7fff8ea7affd libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib > 0x7fff8eb22000 - 0x7fff8eb2dfff libGL.dylib (9.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib > 0x7fff8eb2e000 - 0x7fff8eb92fff com.apple.datadetectorscore (5.0 - 354.3) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore > 0x7fff8ebd4000 - 0x7fff8ec03ff9 com.apple.GSS (4.0 - 2.0) <1B71A3E1-E31D-32CC-A733-ED155CC4A6A2> /System/Library/Frameworks/GSS.framework/Versions/A/GSS > 0x7fff8ec04000 - 0x7fff8ec04fff com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib > 0x7fff8ec07000 - 0x7fff8ec14ff0 libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib > 0x7fff8ec67000 - 0x7fff8ecd6ff1 com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS > 0x7fff8ecda000 - 0x7fff8ece1ff8 liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib > 0x7fff8ed9c000 - 0x7fff8ee60ff7 com.apple.backup.framework (1.5.2 - 1.5.2) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup > 0x7fff8ee61000 - 0x7fff8ee62ff7 com.apple.print.framework.Print (9.0 - 260) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print > 0x7fff8eeb9000 - 0x7fff8eebaff7 libsystem_blocks.dylib (63) /usr/lib/system/libsystem_blocks.dylib > 0x7fff8eeca000 - 0x7fff8f123ff9 com.apple.security (7.0 - 55471.14.1) /System/Library/Frameworks/Security.framework/Versions/A/Security > 0x7fff8f2ae000 - 0x7fff8f2c6ff7 com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage > 0x7fff8f2c7000 - 0x7fff8f2c8ff7 libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib > 0x7fff8f2c9000 - 0x7fff8f379ff7 libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib > 0x7fff8f37d000 - 0x7fff8f384ff3 libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib > 0x7fff8f385000 - 0x7fff8f387fff libRadiance.dylib (1042.2) <63C92F09-F862-3303-9EF6-55A80B48F2CF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib > 0x7fff8f7c1000 - 0x7fff8faabfff com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore > 0x7fff8fd4e000 - 0x7fff8fda0fff libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib > 0x7fff8fece000 - 0x7fff8ff06ff7 com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices > 0x7fff8ff07000 - 0x7fff8ff40ff7 com.apple.QD (3.50 - 298) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD > 0x7fff8ff41000 - 0x7fff8ff6afff com.apple.DictionaryServices (1.2 - 208) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices > 0x7fff8ffde000 - 0x7fff9005efff com.apple.CoreSymbolication (3.0 - 141) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication > 0x7fff9005f000 - 0x7fff9018fff7 com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv > 0x7fff901ef000 - 0x7fff901f6ff7 libsystem_pthread.dylib (53.1.4) /usr/lib/system/libsystem_pthread.dylib > 0x7fff901f7000 - 0x7fff9026afff com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation > 0x7fff9026b000 - 0x7fff9026dff7 com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI > 0x7fff902af000 - 0x7fff90690ffe libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib > 0x7fff90691000 - 0x7fff9098ffff com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation > 0x7fff90990000 - 0x7fff9099cff7 com.apple.OpenDirectory (10.9 - 173.90.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory > 0x7fff90a8a000 - 0x7fff90aaeff7 libJPEG.dylib (1042.2) <0AFE20D1-F24D-3548-A562-DB8FA7995655> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib > 0x7fff90d73000 - 0x7fff90d73ffd com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit > 0x7fff90d74000 - 0x7fff90d77fff libCoreVMClient.dylib (58.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib > 0x7fff90daa000 - 0x7fff90dadfff com.apple.help (1.3.3 - 46) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help > 0x7fff90dae000 - 0x7fff90dfbff2 com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore > 0x7fff90dfc000 - 0x7fff90f98ff3 com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore > 0x7fff911a2000 - 0x7fff911b2fff libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib > 0x7fff911b3000 - 0x7fff91243fff com.apple.Metadata (10.7.0 - 800.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata > 0x7fff91244000 - 0x7fff91248ff7 libheimdal-asn1.dylib (323.92.1) /usr/lib/libheimdal-asn1.dylib > 0x7fff912a2000 - 0x7fff912c7ff7 com.apple.ChunkingLibrary (2.0 - 155.1) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary > 0x7fff912c8000 - 0x7fff912ccfff com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels > 0x7fff912cd000 - 0x7fff91515ff7 com.apple.CoreData (107 - 481.01) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData > 0x7fff91b09000 - 0x7fff91b6cff7 com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration > 0x7fff91b6d000 - 0x7fff91b6fff3 libsystem_configuration.dylib (596.13) /usr/lib/system/libsystem_configuration.dylib > 0x7fff91e02000 - 0x7fff91e04fff libCVMSPluginSupport.dylib (9.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib > 0x7fff92329000 - 0x7fff92382fff libTIFF.dylib (1042.2) <1C80C3FD-639C-3781-8A30-265410DD444F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib > 0x7fff92383000 - 0x7fff92384fff com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent > 0x7fff9260f000 - 0x7fff927f4fff com.apple.CoreFoundation (6.9 - 855.16) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation > 0x7fff9287a000 - 0x7fff928f1fff com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices > 0x7fff928f2000 - 0x7fff92919ff7 libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib > 0x7fff9291a000 - 0x7fff9291eff7 libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib > 0x7fff9291f000 - 0x7fff9294efd2 libsystem_m.dylib (3047.16) /usr/lib/system/libsystem_m.dylib > 0x7fff92953000 - 0x7fff92960ff7 libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib > 0x7fff92961000 - 0x7fff92a52ff9 libiconv.2.dylib (41) /usr/lib/libiconv.2.dylib > 0x7fff92a54000 - 0x7fff92b16ff5 com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText > 0x7fff939c2000 - 0x7fff94538fff com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit > 0x7fff94750000 - 0x7fff948c0ff4 com.apple.CFNetwork (673.4 - 673.4) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork > 0x7fff948c1000 - 0x7fff948c8fff com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS > 0x7fff948c9000 - 0x7fff948c9fff com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate > 0x7fff94b08000 - 0x7fff94b11ff3 libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib > 0x7fff94b1e000 - 0x7fff94b63ffe com.apple.HIServices (1.22 - 467.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices > 0x7fff94b8e000 - 0x7fff94bb7ff7 libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib > 0x7fff94c27000 - 0x7fff94d15fff libJP2.dylib (1042.2) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib > 0x7fff94d16000 - 0x7fff94d1aff7 libGIF.dylib (1042.2) <0A9267FF-D93A-36DF-87B9-BA34C1166C0C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib > 0x7fff94dd8000 - 0x7fff9520bffb com.apple.vision.FaceCore (3.0.0 - 3.0.0) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore > 0x7fff95246000 - 0x7fff95284ff7 libGLImage.dylib (9.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib > 0x7fff952de000 - 0x7fff952e1ff7 libdyld.dylib (239.4) /usr/lib/system/libdyld.dylib > 0x7fff9538e000 - 0x7fff953b2fff libxpc.dylib (300.90.2) /usr/lib/system/libxpc.dylib > 0x7fff953b3000 - 0x7fff953cbff7 com.apple.openscripting (1.4 - 157) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting > 0x7fff95451000 - 0x7fff95456ff7 libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib > 0x7fff95457000 - 0x7fff95472ff7 libsystem_malloc.dylib (23.10.1) /usr/lib/system/libsystem_malloc.dylib > 0x7fff95473000 - 0x7fff9547fff3 com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression > 0x7fff95480000 - 0x7fff954bbfff com.apple.bom (14.0 - 193.1) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom > 0x7fff954bc000 - 0x7fff955a3ff7 libxml2.2.dylib (26) /usr/lib/libxml2.2.dylib > 0x7fff955a4000 - 0x7fff95630ff7 com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink > 0x7fff958ea000 - 0x7fff958f4fff libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib > 0x7fff958f5000 - 0x7fff958f6fff libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib > 0x7fff9594f000 - 0x7fff9594ffff com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices > 0x7fff95950000 - 0x7fff95950fff com.apple.Cocoa (6.8 - 20) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa > 0x7fff95d92000 - 0x7fff95d96fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib > 0x7fff95df2000 - 0x7fff95e0bff7 com.apple.Ubiquity (1.3 - 289) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity > 0x7fff95e39000 - 0x7fff95e54ff7 libCRFSuite.dylib (34) /usr/lib/libCRFSuite.dylib > 0x7fff95e8a000 - 0x7fff95ed8fff com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL > 0x7fff95f82000 - 0x7fff95f83ffb libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib > 0x7fff95f84000 - 0x7fff95f89fff libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib > 0x7fff95fa2000 - 0x7fff960a8fff com.apple.ImageIO.framework (3.3.0 - 1042) /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO > 0x7fff960ea000 - 0x7fff96129fff libGLU.dylib (9.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib > 0x7fff9614c000 - 0x7fff96151fff com.apple.DiskArbitration (2.6 - 2.6) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration > 0x7fff96489000 - 0x7fff96496fff com.apple.Sharing (132.2 - 132.2) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing > 0x7fff96c3e000 - 0x7fff96c48ff7 com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement > 0x7fff96c49000 - 0x7fff96ca1ff7 com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication > 0x7fff96f08000 - 0x7fff96f0ffff libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib > 0x7fff96f36000 - 0x7fff97020fff libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib > 0x7fff97021000 - 0x7fff9718fff7 libBLAS.dylib (1094.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib > 0x7fff9719d000 - 0x7fff971aeff7 libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib > 0x7fff971d4000 - 0x7fff971d8ff7 libcache.dylib (62) /usr/lib/system/libcache.dylib > 0x7fff971d9000 - 0x7fff971f4ff7 libPng.dylib (1042.2) <103F76EB-0FB7-320E-822F-53483CCB7299> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib > 0x7fff971f5000 - 0x7fff971fbff7 libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib > 0x7fff97285000 - 0x7fff9729cff7 com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory > 0x7fff972ac000 - 0x7fff972d1ff7 com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo > 0x7fff973a5000 - 0x7fff973a6ff7 libSystem.B.dylib (1197.1.1) /usr/lib/libSystem.B.dylib > 0x7fff974ba000 - 0x7fff974e2ffb libxslt.1.dylib (13) /usr/lib/libxslt.1.dylib > 0x7fff974e3000 - 0x7fff974f5fff com.apple.ImageCapture (9.0 - 9.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture > 0x7fff97546000 - 0x7fff97594fff libcorecrypto.dylib (161.1) /usr/lib/system/libcorecrypto.dylib > 0x7fff9762c000 - 0x7fff9762fffc com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface > 0x7fff97861000 - 0x7fff978cefff com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit > 0x7fff978e3000 - 0x7fff978f5ff7 com.apple.MultitouchSupport.framework (245.13 - 245.13) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport > 0x7fff979ac000 - 0x7fff979bafff com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL > 0x7fff97a33000 - 0x7fff97a3bffc libGFXShared.dylib (9.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib > 0x7fff97a3c000 - 0x7fff97a8dff3 com.apple.audio.CoreAudio (4.2.0 - 4.2.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio > 0x7fff97a8e000 - 0x7fff97a90fff com.apple.ExceptionHandling (1.5 - 10) <0DD670E1-08D5-3570-BE98-19030BEA9845> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling > 0x7fff97a92000 - 0x7fff97ad9ff7 libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib > 0x7fff97d51000 - 0x7fff97e1cfff libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib > 0x7fff9837c000 - 0x7fff98387fff libkxld.dylib (2422.92.1) /usr/lib/system/libkxld.dylib > 0x7fff98388000 - 0x7fff983edffb com.apple.Heimdal (4.0 - 2.0) <1560A2CC-2C0C-3F7B-868C-BD5ADB241F5A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal > 0x7fff98550000 - 0x7fff9857ffff com.apple.DebugSymbols (106 - 106) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols > 0x7fff98580000 - 0x7fff98589fff com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis > 0x7fff985f6000 - 0x7fff98626fff com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices > 0x7fff986bc000 - 0x7fff9898cffc com.apple.CoreImage (9.2.7) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage > 0x7fff9898d000 - 0x7fff98995fff libsystem_dnssd.dylib (522.90.2) /usr/lib/system/libsystem_dnssd.dylib > 0x7fff98996000 - 0x7fff98b43f27 libobjc.A.dylib (551.1) /usr/lib/libobjc.A.dylib > 0x7fff98b44000 - 0x7fff98b47fff com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC > 0x7fff98b64000 - 0x7fff98b66ff7 libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib > 0x7fff98b67000 - 0x7fff98b67fff com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices > 0x7fff98b6c000 - 0x7fff98b7dff7 libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib > 0x7fff98b7e000 - 0x7fff98cd1ff7 com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox > 0x7fff98cd2000 - 0x7fff98db6fff com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI > 0x7fff98db7000 - 0x7fff98df8fff com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis > 0x7fff98e8c000 - 0x7fff99044ff3 libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib > 0x7fff99061000 - 0x7fff99150fff libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib > 0x7fff99151000 - 0x7fff991a4fff com.apple.ScalableUserInterface (1.0 - 1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface > 0x7fff99202000 - 0x7fff99244ff7 libauto.dylib (185.5) /usr/lib/libauto.dylib > 0x7fff99409000 - 0x7fff99464ffb com.apple.AE (665.5 - 665.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE > > External Modification Summary: > Calls made by other processes targeting this process: > task_for_pid: 0 > thread_create: 0 > thread_set_state: 0 > Calls made by this process: > task_for_pid: 0 > thread_create: 0 > thread_set_state: 0 > Calls made by all processes on this machine: > task_for_pid: 222002 > thread_create: 1 > thread_set_state: 0 > > VM Region Summary: > ReadOnly portion of Libraries: Total=68.4M resident=68.4M(100%) swapped_out_or_unallocated=0K(0%) > Writable regions: Total=527.9M written=487.7M(92%) resident=527.9M(100%) swapped_out=0K(0%) unallocated=0K(0%) > > REGION TYPE VIRTUAL > =========== ======= > Dispatch continuations 16.0M > Kernel Alloc Once 4K > MALLOC 460.1M > Stack 66.6M > VM_ALLOCATE 32K > __DATA 20.0M > __IMAGE 528K > __LINKEDIT 67.1M > __TEXT 88.3M > __UNICODE 544K > mapped file 22.4M > shared memory 4K > =========== ======= > TOTAL 741.5M > > Model: MacBookPro11,2, BootROM MBP112.0138.B02, 4 processors, Intel Core i7, 2.6 GHz, 16 GB, SMC 2.18f6 > Graphics: Intel Iris Pro, Intel Iris Pro, Built-In, 1024 MB > Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x02FE, 0x000000000000000000000000000000000000 > Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x02FE, 0x000000000000000000000000000000000000 > AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (6.30.223.154.63) > Bluetooth: Version 4.2.3f10 13477, 3 services, 15 devices, 1 incoming serial ports > Network Service: Thunderbolt Ethernet, Ethernet, en3 > Network Service: Wi-Fi, Ethernet, en0 > PCI Card: Apple 57762-A0, Ethernet Controller, Thunderbolt at 195,0,0 > Serial ATA Device: APPLE SSD SM0256F, 251 GB > USB Device: Internal Memory Card Reader > USB Device: Apple Internal Keyboard / Trackpad > USB Device: BRCM20702 Hub > USB Device: Bluetooth USB Host Controller > Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1 > Thunderbolt Device: Thunderbolt to Gigabit Ethernet Adapter, Apple Inc., 1, 5.5 -------------- next part -------------- An HTML attachment was scrubbed... URL: From crestani at informatik.uni-tuebingen.de Thu May 15 15:57:34 2014 From: crestani at informatik.uni-tuebingen.de (Marcus Crestani) Date: Thu, 15 May 2014 21:57:34 +0200 Subject: [Unison-hackers] Seeking to bring Mac support up to date In-Reply-To: (Alan Shutko's message of "Thu, 15 May 2014 12:09:52 -0500") References: Message-ID: >>>>>"AS" == Alan Shutko writes: AS> I'll take a look at this. Thanks! AS> I built things with "The OCaml toplevel, version 4.01.0". I think AS> that's the latest version. That's what I used to build current SVN that worked for me. AS> For your sync, was it a local tl2013 sync, or remote over an ssh AS> connection? Which file was it failing on? I've got tl2013 here as AS> well, so I can try to reproduce. I synced remote over SSH. Sorry, I don't recall the exact file name and I closed my notes after I sent the mail without saving. IIRC it was failing on one of the utf*.tfm files in texmf-dist/fonts/tfm/public/japanese-otf. -- Marcus From ats at acm.org Thu May 15 16:13:43 2014 From: ats at acm.org (Alan Shutko) Date: Thu, 15 May 2014 15:13:43 -0500 Subject: [Unison-hackers] Seeking to bring Mac support up to date In-Reply-To: References: Message-ID: If this happens to you again, could you enable logging with something like: logfile = /Users/ats/Library/Logs/unison.log That will capture where it fails. On May 15, 2014, at 2:57 PM, Marcus Crestani wrote: >>>>>> "AS" == Alan Shutko writes: > AS> I'll take a look at this. > > Thanks! > > AS> I built things with "The OCaml toplevel, version 4.01.0". I think > AS> that's the latest version. > > That's what I used to build current SVN that worked for me. > > AS> For your sync, was it a local tl2013 sync, or remote over an ssh > AS> connection? Which file was it failing on? I've got tl2013 here as > AS> well, so I can try to reproduce. > > I synced remote over SSH. Sorry, I don't recall the exact file name and > I closed my notes after I sent the mail without saving. IIRC it was > failing on one of the utf*.tfm files in > texmf-dist/fonts/tfm/public/japanese-otf. > > -- > Marcus From crestani at informatik.uni-tuebingen.de Fri May 16 02:31:13 2014 From: crestani at informatik.uni-tuebingen.de (Marcus Crestani) Date: Fri, 16 May 2014 08:31:13 +0200 Subject: [Unison-hackers] Seeking to bring Mac support up to date In-Reply-To: (Alan Shutko's message of "Thu, 15 May 2014 15:13:43 -0500") References: Message-ID: >>>>>"AS" == Alan Shutko writes: AS> If this happens to you again, could you enable logging with AS> something like: I was able to reproduce the crash with logging enabled by syncing the same files again under another path. unison.log shows that the last action unison made was shortcutting texmf-dist/tex/texinfo/txi-uk.tex. I've attached a gzipped unison.log and the crash report. Shortcutting is likely what was happening before as well: I have a texlive-2008 installation where unison was likely able to shortcut many files for texlive-2013. Hope this helps! -- Marcus -------------- next part -------------- A non-text attachment was scrubbed... Name: unison.log.gz Type: application/octet-stream Size: 214349 bytes Desc: not available URL: -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: crashreport-unison-osx-gui.txt URL: From ats at acm.org Wed May 28 17:16:49 2014 From: ats at acm.org (Alan Shutko) Date: Wed, 28 May 2014 16:16:49 -0500 Subject: [Unison-hackers] Mac update Message-ID: I've put together a new build which resolves the issue of files in the same directory sometimes being displayed in different groups (with the same name) in the outline view. Marcus, I have still not been able to reproduce the crash but I have not given up yet. In this build, I also built a command-line unison with UISTYLE=text. I would be interesting if that version also crashes for you. The zip file is at https://dl.dropboxusercontent.com/u/9371330/Unison.zip And the git repo is at https://github.com/alanshutko/unison From alan.schmitt at polytechnique.org Thu May 29 05:38:06 2014 From: alan.schmitt at polytechnique.org (Alan Schmitt) Date: Thu, 29 May 2014 11:38:06 +0200 Subject: [Unison-hackers] Mac update In-Reply-To: (Alan Shutko's message of "Wed, 28 May 2014 16:16:49 -0500") References: Message-ID: Hi, On 2014-05-28 23:16, Alan Shutko writes: > I've put together a new build which resolves the issue of files in the > same directory sometimes being displayed in different groups (with the > same name) in the outline view. > > Marcus, I have still not been able to reproduce the crash but I have > not given up yet. In this build, I also built a command-line unison > with UISTYLE=text. I would be interesting if that version also crashes > for you. > > The zip file is at > > https://dl.dropboxusercontent.com/u/9371330/Unison.zip > > And the git repo is at > > https://github.com/alanshutko/unison I tried building it from source, and I got this error at the very beginning. /Applications/Xcode.app/Contents/Developer/usr/bin/make -C src ./mkProjectInfo > Makefile.ProjectInfo Fatal error: exception Scanf.Scan_failure("scanf: bad input at char number 4: 'looking for ':', found '$''") make[1]: *** Deleting file `Makefile.ProjectInfo' As a result, unison-blob.o is not built. How do you get around this? Do you manually copy the generated Makefile.ProjectInfo from a svn checkout? Alan From ats at acm.org Thu May 29 09:44:32 2014 From: ats at acm.org (Alan Shutko) Date: Thu, 29 May 2014 08:44:32 -0500 Subject: [Unison-hackers] Mac update In-Reply-To: References: Message-ID: <78216321-37B1-4F45-AA9B-680840BBDB14@acm.org> The mkProjectInfo.ml file uses a subversion keyword to get the subversion revision number to put in the makefile. That doesn't exist in a git checkout, so I had to do this workaround: --- a/src/mkProjectInfo.ml +++ b/src/mkProjectInfo.ml @@ -42,7 +42,7 @@ let pointVersionOrigin = 504 (* Revision that corresponds to point version 0 *) (* ---------------------------------------------------------------------- *) (* You shouldn't need to edit below. *) -let revisionString = "$Rev$";; +let revisionString = "$Rev: 900$";; let pointVersion = Scanf.sscanf revisionString "$Rev: %d " (fun x -> x) - pointVersionOrigin;; Modified src/strings.ml On May 29, 2014, at 4:38 AM, Alan Schmitt wrote: > Hi, > > On 2014-05-28 23:16, Alan Shutko writes: > >> I've put together a new build which resolves the issue of files in the >> same directory sometimes being displayed in different groups (with the >> same name) in the outline view. >> >> Marcus, I have still not been able to reproduce the crash but I have >> not given up yet. In this build, I also built a command-line unison >> with UISTYLE=text. I would be interesting if that version also crashes >> for you. >> >> The zip file is at >> >> https://dl.dropboxusercontent.com/u/9371330/Unison.zip >> >> And the git repo is at >> >> https://github.com/alanshutko/unison > > I tried building it from source, and I got this error at the very beginning. > > /Applications/Xcode.app/Contents/Developer/usr/bin/make -C src > ./mkProjectInfo > Makefile.ProjectInfo > Fatal error: exception Scanf.Scan_failure("scanf: bad input at char number 4: 'looking for ':', found '$''") > make[1]: *** Deleting file `Makefile.ProjectInfo' > > As a result, unison-blob.o is not built. > > How do you get around this? Do you manually copy the generated > Makefile.ProjectInfo from a svn checkout? > > Alan > _______________________________________________ > Unison-hackers mailing list > Unison-hackers at lists.seas.upenn.edu > http://lists.seas.upenn.edu/mailman/listinfo/unison-hackers From crestani at informatik.uni-tuebingen.de Thu May 29 15:11:30 2014 From: crestani at informatik.uni-tuebingen.de (Marcus Crestani) Date: Thu, 29 May 2014 21:11:30 +0200 Subject: [Unison-hackers] Mac update In-Reply-To: (Alan Shutko's message of "Wed, 28 May 2014 16:16:49 -0500") References: Message-ID: >>>>>"AS" == Alan Shutko writes: AS> Marcus, I have still not been able to reproduce the crash but I have AS> not given up yet. In this build, I also built a command-line unison AS> with UISTYLE=text. I would be interesting if that version also crashes AS> for you. With your Unison.app, I was able to reproduce the crash. I've attached the logs, they are nearly identical to the previous crash reports. Your command-line unison did not crash, it worked fine. Please let me know if and how I can provide more debugging information. -- Marcus -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: crash-unison-mac-gui.txt URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: crash-unison-mac-gui-unison.log.zip Type: application/zip Size: 128734 bytes Desc: not available URL: From ats at acm.org Thu May 29 15:17:44 2014 From: ats at acm.org (Alan Shutko) Date: Thu, 29 May 2014 14:17:44 -0500 Subject: [Unison-hackers] Mac update In-Reply-To: References: Message-ID: Thank you! Now I'm sure that it's not a problem with my ocaml installation, and it's got to be limited to uimacbridgenew.ml or the Objective C code. Is this sync actually syncing across AFS network shares, or is that just the name of the directories? It shouldn't matter, just curious. I will study the way that the sync engine calls into the UI to do updates, it's possible I've created some multithreading problem. On May 29, 2014, at 2:11 PM, Marcus Crestani wrote: >>>>>> "AS" == Alan Shutko writes: > AS> Marcus, I have still not been able to reproduce the crash but I have > AS> not given up yet. In this build, I also built a command-line unison > AS> with UISTYLE=text. I would be interesting if that version also crashes > AS> for you. > > With your Unison.app, I was able to reproduce the crash. I've attached > the logs, they are nearly identical to the previous crash reports. > > Your command-line unison did not crash, it worked fine. > > Please let me know if and how I can provide more debugging information. > > -- > Marcus > > From crestani at informatik.uni-tuebingen.de Thu May 29 15:28:05 2014 From: crestani at informatik.uni-tuebingen.de (Marcus Crestani) Date: Thu, 29 May 2014 21:28:05 +0200 Subject: [Unison-hackers] Mac update In-Reply-To: (Alan Shutko's message of "Thu, 29 May 2014 14:17:44 -0500") References: Message-ID: >>>>>"AS" == Alan Shutko writes: AS> Is this sync actually syncing across AFS network shares, or is that AS> just the name of the directories? It shouldn't matter, just AS> curious. I sync software that is installed in AFS shares from my desktop machine to my laptop. Only my desktop machine has AFS configured, on my laptop, I just use the directory structure. AS> I will study the way that the sync engine calls into the UI to do AS> updates, it's possible I've created some multithreading problem. Thanks, I am happy to run tests with whatever you come up with! -- Marcus