Sorting a stack

How to sort a Stack in a acescending order(the smallest number are at the top of stack) without using array or linkedlist, just by using push() pop(), peek(), size() method and by maybe using more copy of stack to achieve.
is that possible. thank you

thank for your reply, however, can i achieve that
using more than 1 stack to sort? I wouldnt want to
use list. just by using stack only? thankthank you for your further question, however you still have not achieve an answer to our doubt that it makes no sense to sort a stack. you should want to use list. using stack for sorting dumb. thank.

Similar Messages

  • Sort a Stack, without sorting entire Album

    Is there any way to sort a Stack (by rating for example) without affecting the sort order of the test of the Album?
    Grant

    Have you tried using Compare mode and promoting and demoting for ranking stacked images?
    In practice I find Compare mode clumsy (for several reasons). I usually make Stack picks either in Split view, with the Browser set to grid (not filmstrip), or I just constantly click back-and0-forth from Browser in Grid view to Viewer in Show Multiple view.
    My general method is to make Stacks in a Project, then make Stack selections, then make Project selections. (This requires some discipline -- I always want to go straight to making Project selections.) My workflow is
    - Create and describe Project
    - {Apply Keywords}
    - Make Stacks
    - Make Stack picks. Collapse all.
    - Make Project picks
    I, too, have stumbled over the lack of a Stack-specific rating system. (In my implementation, star-ratings are used to rank images within a Project. I use keywords for Library-wide rating, e.g.: "Portfolio". And I use stacks only for variants of images, e.g.: different f-stops, rapid-fire wildlife, etc.) There are several work-arounds. Sometimes I select from the Browser the best candidates and drag them to the top of the stack. Sometimes I attach a temporary star-rating which I remove once I've made my Stack pick.
    HTH -- gotta run.

  • Re ordering Sort in stacked view chart of Pivot table

    Hi,
    I have a requirement to order the stack in a certain way rather than alphabetical. In my criteria I have a case statement that assigns 1, 2 or 3 and orders that column. But what is the syntax for me to do an order by? Please help. Thank you.

    Hello,
    you can do this with two diffrent way. first one and also simple one is add a sorting column to your table and insert numbers to column according to your demand, and use this cloumn to sort in dashboards, also dont forget to hide this clolumn.
    Ugur MIHCI
    www.ifslibrary.com

  • Problem when sorting docs stack by name

    In my Documents folder in the Finder, my documents and folders are arranged alphabetically. I have prefaced the names of frequently accessed folders with a ~ which puts them at the top of the list.
    Why, when the items are sorted by name in my Documents stack, are the items prefaced with a ~ at the end of the list? How can I get them listed first the way they are in the Finder?

    the same thing happens to me. seems to be a bug. the following workaround works for me. change ~ to space in the names of those folders. then change the sort order in the stack from name to something else and back to name.

  • Autamatically rearrange stacks by rating

    I would like to auto arrange all of my stacks to be ordered by star rating. My work flow goes something like this; Import daily shoot to a new project, stack like images, create a "unrated image" smart album, rate all photos from 1-5. 5's being portfolio possibilities, 4's are great shots that I'd like to share frequently, 3's are good shots that client might be interested in seeing, 2's will likely not be shared, 1's are not great shots but would like to hold onto. I'd like to know if there is a way to auto sort all of the stacks so the images contained in the stack are ordered 5 to 1. That way the highest rated items become stack picks. Currently, I manually sort the stacks and this seems like a trivial step that could be automated. Any ideas???

    Not that I have been able to find. You can sort Versions in Projects by rating, but the Stack, by definition, moves with the Stack Pick, and the so that sort is done on the Rating of the Stack Pick.
    The sort within the Stack is done by moving/promoting/demoting. There is no way I know of to auto-sort images within a Stack.
    I think this would be a useful feature. Tell Apple: "+Aperture→Provide Aperture Feedback+".
    That I haven't found it does not, of course, means it's not there.

  • VF04 - billing due list sort issue on print output

    We are having sort problem when printing SD billing using VF04.  Each month our staff creates or enters billing invoices in the system.  On a specific period they will print these invoices to distribute to our customers.  The problem they have is when the invoices prints some are no longer sorted according to the customer name.  For example if there are 50 invoices created for John Doe, what the system will do is it will print the first 10 invoices on the first batch then the rest will be printed at the middle and the other will be at the end of the print job.  For this reason they will have to re-sort the stack of invoices manually.  Is there any way to correct this problem.
    I appreciate any help I can get.  In advance thank you for the help.

    Hi Maria,
    I am not 100% sure but I suggest you to ask your basis team to change the devise type to SWIN and check the output.
    Check the below URL. For font or print or language related issues / Problems this will work perfectly. Try changing the devise type of your printer to SWIN. If issue is fixed by making this change please keep us informed
    http://help.sap.com/saphelp_nwmobile711/helpdata/en/d9/4a910f51ea11d189570000e829fbbd/content.htm
    Just test thin in your test systems preferably a quality system where you can replicate this problem

  • Unstack/Sort Question

    When editing a shoot, I like to temporarily group similar photos into stacks for organizational purposes. Then I like to rearrange the stacks in an order I like. Next is where the problem comes in. I would like to unstack the stacks and have the photos remain in that order. Instead, when I unstack a stack, the images scatter. The sort order says Custom, so I do not understand why they will stay in order. Can anyone help?

    OK, just solved my own problem. Here is my editing workflow:
    1) Delete bad images
    2) Sort images into logical groups and make those groups into Stacks.
    3) Rearrange Stacks as desired
    4) Open All Stacks (do not Unstack)
    5) Select the very first image, then Select All
    6) Under the Metadata menu, pull down to Batch Change to create new version names (For me, I use Custom Name With Counter)
    7) Once the renaming is complete, Unstack
    8) For the sort order choose Version Name. All of the photos should be in your desired order using this method.
    9) When exporting a file for a client, I can choose the version name to be the filename. So, at this point I can get by without changing the original file names. However, it would be a nice feature in the future.
    To me, the ability to sort using stacks is awesome. Remember in the days of film you would have various piles of slides on your light table?! All we need now is the ability to attach a note to a stack, just like a small yellow post-it!
    I am new to Aperture, so please let me know if you see any problems here. Thanks!

  • Stacks and Queues

    Hello, I am new to Java and am working out an assignment. I need to manipulate some stacks and queues in various ways.
    I need to reverse a stack in three different ways:
    1. using two additional stacks.
    2. using one additional queue.
    3. using one additional stack and some additional non-array variables.
    I think I have ways to do 1 and 2 but I'm a bit confused about 3.
    For 1, I would pop the the elements off of the full stack A, and push them onto B. Then pop them from B and push them to C. Then pop them from C and push them to A, thus reversing the order.
    For 2, simply pop the elements from the stack and enqueue them in the queue. Then dequeue them and push them back to the stack.
    For 3, not really sure where to start or how? I could think of how to do it with an array but I'm drawing a blank on this. I don't want anyone to write the code for me just maybe point me in the right direction?
    The assignment then carries on to sorting in ascending order using a stack and then just using non-array variables. I feel like if I can figure out number 3 above the rest will be along similar lines.
    Any help is greatly appreciated.

    The restrictions might be nudging towards a constant-storage algorithm. In which case, try the following.
    You can move any element to the top of the stack using a stack and non-array variables. Take the 4th element for example:
    Pop 3 elements from the stack and push onto the other.
    Pop the next element and store in a variable.
    Pop the 3 elements from the second stack and push back on the first.
    Push the value from the variable onto the first stack.
    This can be used for reversing and sorting the stack.

  • Labeling all images in a stack; when all images are stacked

    A long time ago, when I was using Photoshop Elelments I found a plug-in that made it possible to work with stacks as a unit. 
    If I labeled the top image in the stack that lable was applied to all the images in the stack; then I could sort the the image on top and all the images in the stack would stay together, or if I deleted an image in the stack all the images in the stack were deleted.  Without it I have open each stack I lable and apply the lable, so when I sort the stacked images they stay together.
    I don't remember where I found that plug-in and I'm sure it would work in Photoshop.  Anyone else use it and know where I can find it?

    I do not use Lightroom when you wrote "Stack" in Photoshop that refers to the layer stack.  The link you posted seems to be more about paring files.  I do not know much about lightroom except it organizes your images using logical databases. Lightroom calls this its Library system.  I know the book libraries have book stacks so it would surprise me that Lightroom had some type of stacks.  You started by stating when you used PSE you used something to manage stacks.  I thought now the you are using PS you needed something for it.  This thread most likely belongs in the Lightroom forum.

  • Sort Order keeps changing

    I'm using Aperture 3.1.2. My Workflow is to arrange the images by file name, group the bracketed images, select them, create an HDR image via NiK HRD Efex Pro and then add the HDR image to the group.
    The problem is that after I create the HDR image the sort order in the browser (multiple images) changes. The new HDR image is moved to the very top of the browser, and the sort order is changed to manual from by file name. So I have to change the sort order back to file name to place the HDR image next to it's parents, then scroll down to the image. This gets to be very painful going through 500 + images ....

    Short answer: Close all stacks
    By group, you mean that you place the images in a stack (I hope). If you have all the HDR images in the same stack as the final image (with that one set as a pick), then the way to get this to work is to close all the stacks and then choose the sort order that you want. Aperture has problems trying to decide how to sort when stacks are open. If the 1st item in the second stack was after the third item in the 1st stack but before the last item in the second stack and so on - so it just gives up. I am not certain it is a bug.
    I think if you close all stacks before you create your HDR - it should be put right next to the stack with the originals so you can easily add it to that stack.

  • IPhoto 9.6 is stuck at 1% (or sometimes 99%) Repairing

    My iphoto library location is on my local network drive mounted with AFP protocol. It is Western Digital My Cloud. All my photo files are located on that drive
    (speed is max of 1Gb/s)
    iPhoto took a day or two to build the db with about 10k photos, total size is about 15GB only though.
    I could never reopen iPhoto successfully yet.
    iPhoto is stuck at repairing the db(at 1% or sometimes in between or at 99%)
    Here is the complete report sent to Apple.
    Date/Time:       2015-01-06 08:14:27 -0800
    OS Version:      10.10.1 (Build 14B25)
    Architecture:    x86_64
    Report Version:  21
    Command:         iPhoto
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Version:         9.6 (910.29)
    Build Version:   1
    Project Name:    iPhotoProject
    Source Version:  910029000000000
    App Item ID:     408981381
    App External ID: 729712666
    Parent:          launchd [1]
    PID:             2714
    Event:           hang
    Duration:        1.40s (process was unresponsive for 2216 seconds before sampling)
    Steps:           15 (100ms sampling interval)
    Hardware model:  MacBookAir4,1
    Active cpus:     4
    Fan speed:       1996 rpm
    Network mount:   (afpfs) has been unresponsive for 13s blocking threads 0x46d68, 0x4b59f
    Timeline format: stacks are sorted chronologically
    Use -i and -heavy to re-report with count sorting
    Heaviest stack for the main thread of the target process:
      15  ??? (iPhoto + 166222) [0x10ead894e]
      15  ??? (iPhoto + 176475) [0x10eadb15b]
      15  ??? (iPhoto + 178724) [0x10eadba24]
      15  ??? (iPhoto + 180304) [0x10eadc050]
      15  ??? (iPhoto + 182935) [0x10eadca97]
      15  -[Godot startWithLibraryPath:inAppStoreMode:] + 157 (RedRock + 50238) [0x110ce443e]
      15  -[Godot startupDatabase] + 569 (RedRock + 51424) [0x110ce48e0]
      15  -[RKDatabaseComponent openDatabaseForLibraryPath:options:] + 372 (RedRock + 54808) [0x110ce5618]
      15  -[RKDatabase openDatabaseWithOptions:] + 8075 (RedRock + 69181) [0x110ce8e3d]
      15  +[RKRecoverMgr repairDatabaseOnThisThread:] + 76 (RedRock + 2032982) [0x110ec8556]
      15  -[RKRecoverMgr repairDatabaseOnThisThread] + 1408 (RedRock + 2034530) [0x110ec8b62]
      15  -[RKRecoverMgr rebuildVersions] + 1560 (RedRock + 1955589) [0x110eb5705]
      15  -[RKFileManager directoryEntriesAtPath:files:folders:attributes:] + 36 (RedRock + 1162222) [0x110df3bee]
      15  -[RKFileManager directoryEntriesAtPath:files:folders:attributes:filterDelegate:] + 253 (RedRock + 1162481) [0x110df3cf1]
      15  fts_children$INODE64 + 172 (libsystem_c.dylib + 20795) [0x7fff89a7013b]
      15  fts_build + 833 (libsystem_c.dylib + 19656) [0x7fff89a6fcc8]
      15  stat$INODE64 + 10 (libsystem_kernel.dylib + 96878) [0x7fff8434da6e]
    *15  hndl_unix_scall64 + 22 (kernel + 2337862) [0xffffff800043ac46]
    *15  unix_syscall64 + 610 (kernel + 6610098) [0xffffff800084dcb2]
    *15  stat64 + 58 (kernel + 3493642) [0xffffff8000554f0a]
    *15  ??? (kernel + 3538119) [0xffffff800055fcc7]
    *15  nameiat + 133 (kernel + 3481605) [0xffffff8000552005]
    *15  namei + 1941 (kernel + 3402389) [0xffffff800053ea95]
    *15  lookup + 968 (kernel + 3404536) [0xffffff800053f2f8]
    *15  afpfs_vnop_lookup + 778 (afpfs + 28936) [0xffffff7f829c2108]
    *15  afpfs_lookup + 784 (afpfs + 27632) [0xffffff7f829c1bf0]
    *15  afpfs_LookupCatalogNode + 266 (afpfs + 12382) [0xffffff7f829be05e]
    *15  afpfs_GetCatalogNode + 310 (afpfs + 11181) [0xffffff7f829bdbad]
    *15  GetFileDirParms + 328 (afpfs + 57884) [0xffffff7f829c921c]
    *15  UserCommand + 96 (afpfs + 56838) [0xffffff7f829c8e06]
    *15  DoUserCommand + 1997 (afpfs + 55211) [0xffffff7f829c87ab]
    *15  UserReply + 189 (afpfs + 52961) [0xffffff7f829c7ee1]
    *15  ??? (kernel + 6246486) [0xffffff80007f5056]
    *15  asp_tcp_usr_control + 1386 (asp_tcp + 7314) [0xffffff7f8299dc92]
    *15  Reply + 381 (asp_tcp + 20128) [0xffffff7f829a0ea0]
    *15  msleep + 98 (kernel + 6152530) [0xffffff80007de152]
    *15  ??? (kernel + 6153252) [0xffffff80007de424]
    *15  lck_mtx_sleep_deadline + 149 (kernel + 1336453) [0xffffff8000346485]
    *15  thread_block_reason + 175 (kernel + 1378383) [0xffffff800035084f]
    *15  ??? (kernel + 1387996) [0xffffff8000352ddc]
    *15  machine_switch_context + 367 (kernel + 2204431) [0xffffff800041a30f]
    Process:         iPhoto [2714]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Task size:       3750 pages (-7)
    CPU Time:        0.014s
    Note:            Unresponsive for 2216 seconds before sampling
    Note:            4 idle work queue threads omitted
      Thread 0x46d68      DispatchQueue 1     15 samples (1-15)   priority 46
      <boosted, received importance donation from WindowServer [151], IO policy important, becomes blocked by network mount (afpfs)>
      15  ??? (iPhoto + 166222) [0x10ead894e] 1-15
        15  ??? (iPhoto + 176475) [0x10eadb15b] 1-15
          15  ??? (iPhoto + 178724) [0x10eadba24] 1-15
            15  ??? (iPhoto + 180304) [0x10eadc050] 1-15
              15  ??? (iPhoto + 182935) [0x10eadca97] 1-15
                15  -[Godot startWithLibraryPath:inAppStoreMode:] + 157 (RedRock + 50238) [0x110ce443e] 1-15
                  15  -[Godot startupDatabase] + 569 (RedRock + 51424) [0x110ce48e0] 1-15
                    15  -[RKDatabaseComponent openDatabaseForLibraryPath:options:] + 372 (RedRock + 54808) [0x110ce5618] 1-15
                      15  -[RKDatabase openDatabaseWithOptions:] + 8075 (RedRock + 69181) [0x110ce8e3d] 1-15
                        15  +[RKRecoverMgr repairDatabaseOnThisThread:] + 76 (RedRock + 2032982) [0x110ec8556] 1-15
                          15  -[RKRecoverMgr repairDatabaseOnThisThread] + 1408 (RedRock + 2034530) [0x110ec8b62] 1-15
                            15  -[RKRecoverMgr rebuildVersions] + 1560 (RedRock + 1955589) [0x110eb5705] 1-15
                              15  -[RKFileManager directoryEntriesAtPath:files:folders:attributes:] + 36 (RedRock + 1162222) [0x110df3bee] 1-15
                                15  -[RKFileManager directoryEntriesAtPath:files:folders:attributes:filterDelegate:] + 253 (RedRock + 1162481) [0x110df3cf1] 1-15
                                  15  fts_children$INODE64 + 172 (libsystem_c.dylib + 20795) [0x7fff89a7013b] 1-15
                                    15  fts_build + 833 (libsystem_c.dylib + 19656) [0x7fff89a6fcc8] 1-15
                                      15  stat$INODE64 + 10 (libsystem_kernel.dylib + 96878) [0x7fff8434da6e] 1-15
                                       *15  hndl_unix_scall64 + 22 (kernel + 2337862) [0xffffff800043ac46] 1-15
                                         *15  unix_syscall64 + 610 (kernel + 6610098) [0xffffff800084dcb2] 1-15
                                           *15  stat64 + 58 (kernel + 3493642) [0xffffff8000554f0a] 1-15
                                             *15  ??? (kernel + 3538119) [0xffffff800055fcc7] 1-15
                                               *15  nameiat + 133 (kernel + 3481605) [0xffffff8000552005] 1-15
                                                 *15  namei + 1941 (kernel + 3402389) [0xffffff800053ea95] 1-15
                                                   *15  lookup + 968 (kernel + 3404536) [0xffffff800053f2f8] 1-15
                                                     *15  afpfs_vnop_lookup + 778 (afpfs + 28936) [0xffffff7f829c2108] 1-15
                                                       *15  afpfs_lookup + 784 (afpfs + 27632) [0xffffff7f829c1bf0] 1-15
                                                         *15  afpfs_LookupCatalogNode + 266 (afpfs + 12382) [0xffffff7f829be05e] 1-15
                                                           *15  afpfs_GetCatalogNode + 310 (afpfs + 11181) [0xffffff7f829bdbad] 1-15
                                                             *15  GetFileDirParms + 328 (afpfs + 57884) [0xffffff7f829c921c] 1-15
                                                               *15  UserCommand + 96 (afpfs + 56838) [0xffffff7f829c8e06] 1-15
                                                                 *15  DoUserCommand + 1997 (afpfs + 55211) [0xffffff7f829c87ab] 1-15
                                                                   *15  UserReply + 189 (afpfs + 52961) [0xffffff7f829c7ee1] 1-15
                                                                     *15  ??? (kernel + 6246486) [0xffffff80007f5056] 1-15
                                                                       *15  asp_tcp_usr_control + 1386 (asp_tcp + 7314) [0xffffff7f8299dc92] 1-15
                                                                         *15  Reply + 381 (asp_tcp + 20128) [0xffffff7f829a0ea0] 1-15
                                                                           *15  msleep + 98 (kernel + 6152530) [0xffffff80007de152] 1-15
                                                                             *15  ??? (kernel + 6153252) [0xffffff80007de424] 1-15
                                                                               *15  lck_mtx_sleep_deadline + 149 (kernel + 1336453) [0xffffff8000346485] 1-15
                                                                                 *15  thread_block_reason + 175 (kernel + 1378383) [0xffffff800035084f] 1-15
                                                                                   *15  ??? (kernel + 1387996) [0xffffff8000352ddc] 1-15
                                                                                     *15  machine_switch_context + 367 (kernel + 2204431) [0xffffff800041a30f] 1-15
      Thread 0x46d9c      DispatchQueue 2     15 samples (1-15)   priority 46
      <thread QoS user interactive, boosted, received importance donation from WindowServer [151], IO policy important>
      15  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff89c37a6a] 1-15
        15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
         *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Thread 0x46db7      15 samples (1-15)   priority 46
      <thread QoS user interactive, boosted, received importance donation from WindowServer [151], IO policy important>
      15  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8c5b14b1] 1-15
        15  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8c5b3279] 1-15
          15  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8c5b32fc] 1-15
            15  _NSEventThread + 137 (AppKit + 1603495) [0x7fff823917a7] 1-15
              15  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff8464d838] 1-15
                15  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff8464dfdb] 1-15
                  15  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff8464eb14] 1-15
                    15  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff8434752e] 1-15
                     *15  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-15
      Thread 0x46dd1      15 samples (1-15)   priority 46         cpu time 0.014s
      <thread QoS user interactive, boosted, received importance donation from WindowServer [151], IO policy important>
      15  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8c5b14b1] 1-15
        15  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8c5b3279] 1-15
          15  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8c5b32fc] 1-15
            15  __NSThread__main__ + 1345 (Foundation + 428922) [0x7fff864e1b7a] 1-15
              1   -[NSUIHeartBeat _heartBeatThread:] + 1860 (AppKit + 2313823) [0x7fff8243ee5f] 1
                1   -[NSSurface flushWithOptions:] + 211 (AppKit + 2311205) [0x7fff8243e425] 1
                  1   CGSFlushSurfaceWithOptions + 124 (CoreGraphics + 672032) [0x7fff8f13b120] 1
                    1   _CGSFlushSurfaceInline + 218 (CoreGraphics + 672562) [0x7fff8f13b332] 1
                      1   mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff8434752e] 1
                       *1   ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1
              14  -[NSUIHeartBeat _heartBeatThread:] + 2376 (AppKit + 2314339) [0x7fff8243f063] 2-15
                14  usleep + 54 (libsystem_c.dylib + 519792) [0x7fff89ae9e70] 2-15
                  14  __semwait_signal + 10 (libsystem_kernel.dylib + 91270) [0x7fff8434c486] 2-15
                   *14  semaphore_wait_continue + 0 (kernel + 1415472) [0xffffff8000359930] 2-15
      Thread 0x46df4      15 samples (1-15)   priority 20
      <boosted, received importance donation from WindowServer [151], IO policy important>
      15  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90418) [0x7fff8434c132] 1-15
       *15  psynch_cvcontinue + 0 (pthread + 27077) [0xffffff7f80de29c5] 1-15
      Thread 0x46df8      15 samples (1-15)   priority 25
      <boosted, received importance donation from WindowServer [151], IO policy important>
      15  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90418) [0x7fff8434c132] 1-15
       *15  psynch_cvcontinue + 0 (pthread + 27077) [0xffffff7f80de29c5] 1-15
      Thread 0x46df9      15 samples (1-15)   priority 35
      <boosted, received importance donation from WindowServer [151], IO policy important>
      15  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90418) [0x7fff8434c132] 1-15
       *15  psynch_cvcontinue + 0 (pthread + 27077) [0xffffff7f80de29c5] 1-15
      Thread 0x46dfa      15 samples (1-15)   priority 25
      <boosted, received importance donation from WindowServer [151], IO policy important>
      15  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90418) [0x7fff8434c132] 1-15
       *15  psynch_cvcontinue + 0 (pthread + 27077) [0xffffff7f80de29c5] 1-15
      Thread 0x46dfb      15 samples (1-15)   priority 35
      <boosted, received importance donation from WindowServer [151], IO policy important>
      15  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90418) [0x7fff8434c132] 1-15
       *15  psynch_cvcontinue + 0 (pthread + 27077) [0xffffff7f80de29c5] 1-15
      Thread 0x46dfc      15 samples (1-15)   priority 35
      <boosted, received importance donation from WindowServer [151], IO policy important>
      15  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90418) [0x7fff8434c132] 1-15
       *15  psynch_cvcontinue + 0 (pthread + 27077) [0xffffff7f80de29c5] 1-15
      Thread 0x46dfd      15 samples (1-15)   priority 35
      <boosted, received importance donation from WindowServer [151], IO policy important>
      15  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90418) [0x7fff8434c132] 1-15
       *15  psynch_cvcontinue + 0 (pthread + 27077) [0xffffff7f80de29c5] 1-15
      Binary Images:
             0x10eab0000 -        0x10f118fff  com.apple.iPhoto 9.6 (910.29)           <B9A5D521-72CB-34B7-A240-7C951E98B624>  /Applications/iPhoto.app/Contents/MacOS/iPhoto
             0x110cd8000 -        0x111192fff  com.apple.RedRock 1.9.4 (500.14)        <576B1207-F1AB-3C89-9D1A-9FF07E4B5B99>  /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
          0x7fff8220a000 -     0x7fff82d4bfff  com.apple.AppKit 6.9 (1343.16)          <C98DB43F-4245-3E6E-A4EE-37DAEE33E174>  /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97)      <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff845dc000 -     0x7fff84972fff  com.apple.CoreFoundation 6.9 (1151.16)  <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86479000 -     0x7fff867a7fff  com.apple.Foundation 6.9 (1151.16)      <18EDD673-A010-3E99-956E-DA594CE1FA80>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff89a6b000 -     0x7fff89af7fff  libsystem_c.dylib (1044.1.2)            <C185E862-7424-3210-B528-6B822577A4B8>  /usr/lib/system/libsystem_c.dylib
          0x7fff89c33000 -     0x7fff89c5dfff  libdispatch.dylib (442.1.4)             <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
          0x7fff8c5b0000 -     0x7fff8c5b9fff  libsystem_pthread.dylib (105.1.4)       <26B1897F-0CD3-30F3-B55A-37CB45062D73>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff8f097000 -     0x7fff8f8eefff  com.apple.CoreGraphics 1.600.0 (772)    <6364CBE3-3635-3A53-B448-9D19EF9FEA96>  /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    *0xffffff7f80ddc000 - 0xffffff7f80de4fff  com.apple.kec.pthread 1.0 (1)           <DB4D4632-FD2B-3FAE-86D3-3432DCDB7FA9>  /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff7f8299c000 - 0xffffff7f829a8fff  com.apple.nke.asp-tcp 8.0.0 (8.0.0)     <BDCC9A2C-EF8A-3390-928E-95C62C473704>  /System/Library/Filesystems/AppleShare/asp_tcp.kext/Contents/MacOS/asp_tcp
    *0xffffff7f829bb000 - 0xffffff7f82a09fff  com.apple.filesystems.afpfs 11.0 (11.0) <195BBF3D-D170-3835-B690-565930329879>  /System/Library/Filesystems/AppleShare/afpfs.kext/Contents/MacOS/afpfs
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                      <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         accountsd [1444]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1010 pages
      Thread 0x22b15      DispatchQueue 1     15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff8434752e] 1-15
       *15  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-15
      Thread 0x22b2c      DispatchQueue 2     15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff89c37a6a] 1-15
        15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
         *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Binary Images:
             0x1005d4000 -        0x1005d4fff  accountsd (504.6)                  <DE87CCB6-2060-3267-BD00-1D21E685D3E2>  /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c33000 -     0x7fff89c5dfff  libdispatch.dylib (442.1.4)        <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         airportd [31]
    Path:            /usr/libexec/airportd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       1441 pages (-1)
    Note:            5 idle work queue threads omitted
      Thread 0x188        DispatchQueue 1     15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  start + 1 (libdyld.dylib + 13769) [0x7fff8d4d75c9] 1-15
        15  ??? (airportd + 235290) [0x100b9471a] 1-15
          15  -[NSRunLoop(NSRunLoop) run] + 74 (Foundation + 1467487) [0x7fff865df45f] 1-15
            15  -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 (Foundation + 436921) [0x7fff864e3ab9] 1-15
              15  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff8464d838] 1-15
                15  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff8464dfdb] 1-15
                  15  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff8464eb14] 1-15
                    15  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff8434752e] 1-15
                     *15  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-15
      Thread 0x3cd        DispatchQueue 2     15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff89c37a6a] 1-15
        15  _dispatch_mgr_invoke + 176 (libdispatch.dylib + 19786) [0x7fff89c37d4a] 1-15
          15  __select_nocancel + 10 (libsystem_kernel.dylib + 91150) [0x7fff8434c40e] 1-15
           *15  ??? (kernel + 6154000) [0xffffff80007de710] 1-15
      Thread 0x436        15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  __select + 10 (libsystem_kernel.dylib + 91126) [0x7fff8434c3f6] 1-15
       *15  ??? (kernel + 6154000) [0xffffff80007de710] 1-15
      Binary Images:
             0x100b5b000 -        0x100c37fff  airportd (1001.57.4)                   <1AA1E43B-F07F-3063-A597-F2CD039E19FF>  /usr/libexec/airportd
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97)     <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff845dc000 -     0x7fff84972fff  com.apple.CoreFoundation 6.9 (1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86479000 -     0x7fff867a7fff  com.apple.Foundation 6.9 (1151.16)     <18EDD673-A010-3E99-956E-DA594CE1FA80>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff89c33000 -     0x7fff89c5dfff  libdispatch.dylib (442.1.4)            <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
          0x7fff8d4d4000 -     0x7fff8d4d7fff  libdyld.dylib (353.2.1)                <19FAF435-C165-3374-9DEF-D7BBA7D61DB6>  /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                     <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         amfid [2511]
    Path:            /usr/libexec/amfid
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean (allows idle exit)
    Task size:       468 pages
      Thread 0x353d3      15 samples (1-15)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
       *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Thread 0x353d5      15 samples (1-15)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      15  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91966) [0x7fff8434c73e] 1-15
       *15  ??? (kernel + 6154000) [0xffffff80007de710] 1-15
      Binary Images:
             0x1027f9000 -        0x1027fafff  amfid (133.1.1)                    <87C209EC-9AF9-3503-8EAC-FFEFFF608BEA>  /usr/libexec/amfid
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         Android File Transfer Agent [320]
    Path:            /Users/USER/Library/Application Support/Google/*/Android File Transfer Agent.app/Contents/MacOS/Android File Transfer Agent
    Architecture:    i386
    Parent:          launchd [1]
    UID:             501
    Task size:       14 pages
    Process:         appleeventsd [26]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             55
    Task size:       453 pages
      Thread 0x471        DispatchQueue 2     15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff89c37a6a] 1-15
        15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
         *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Thread 0x475        DispatchQueue 11    15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91966) [0x7fff8434c73e] 1-15
       *15  ??? (kernel + 6154000) [0xffffff80007de710] 1-15
      Binary Images:
             0x107337000 -        0x107337fff  appleeventsd (681)                 <FB31726D-933F-32CD-BE6B-F8598AA15431>  /System/Library/CoreServices/appleeventsd
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c33000 -     0x7fff89c5dfff  libdispatch.dylib (442.1.4)        <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         AppleSpell [346]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean
    Task size:       458 pages
      Thread 0xc17        15 samples (1-15)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      15  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff8434752e] 1-15
       *15  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-15
      Thread 0xc19        15 samples (1-15)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
       *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Binary Images:
             0x1070a3000 -        0x107186fff  com.apple.AppleSpell 2.2 (274)     <26FB5D53-E9C2-3545-BD8E-CCC39C95073C>  /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         apsd [53]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       1108 pages (-1)
      Thread 0x19e        DispatchQueue 1     15 samples (1-15)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      15  start + 1 (libdyld.dylib + 13769) [0x7fff8d4d75c9] 1-15
        15  ??? (apsd + 365235) [0x10f0c02b3] 1-15
          15  -[NSRunLoop(NSRunLoop) run] + 74 (Foundation + 1467487) [0x7fff865df45f] 1-15
            15  -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 (Foundation + 436921) [0x7fff864e3ab9] 1-15
              15  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff8464d838] 1-15
                15  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff8464dfdb] 1-15
                  15  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff8464eb14] 1-15
                    15  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff8434752e] 1-15
                     *15  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-15
      Thread 0x36a        DispatchQueue 2     15 samples (1-15)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      15  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff89c37a6a] 1-15
        15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
         *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Thread 0x49a        15 samples (1-15)   priority 63
      <timers coalesced, IO policy important>
      15  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff8434752e] 1-15
       *15  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-15
      Thread 0x12aa       15 samples (1-15)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      15  __select + 10 (libsystem_kernel.dylib + 91126) [0x7fff8434c3f6] 1-15
       *15  ??? (kernel + 6154000) [0xffffff80007de710] 1-15
      Binary Images:
             0x10f067000 -        0x10f12bfff  apsd (275)                             <AF722EDC-11CC-33D2-A955-BDD06804DE73>  /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97)     <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff845dc000 -     0x7fff84972fff  com.apple.CoreFoundation 6.9 (1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86479000 -     0x7fff867a7fff  com.apple.Foundation 6.9 (1151.16)     <18EDD673-A010-3E99-956E-DA594CE1FA80>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff89c33000 -     0x7fff89c5dfff  libdispatch.dylib (442.1.4)            <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
          0x7fff8d4d4000 -     0x7fff8d4d7fff  libdyld.dylib (353.2.1)                <19FAF435-C165-3374-9DEF-D7BBA7D61DB6>  /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                     <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         askpermissiond [281]
    Path:            /System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/Resources/ askpermissiond
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean
    Task size:       299 pages
      Thread 0x9bc        15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff8434752e] 1-15
       *15  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-15
      Thread 0xa34        15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
       *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Binary Images:
             0x109d42000 -        0x109d5afff  askpermissiond (58)                <4ECA2151-E5C2-3A2F-8881-57FF23087691>  /System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/Resources/ askpermissiond
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         authd [81]
    Path:            /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/ Contents/MacOS/authd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Dirty (allows idle exit)
    Task size:       248 pages (-5)
      Thread 0x279        15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
       *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Thread 0x27a        15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  __read_nocancel + 10 (libsystem_kernel.dylib + 90886) [0x7fff8434c306] 1-15
       *15  hndl_unix_scall64 + 22 (kernel + 2337862) [0xffffff800043ac46] 1-15
         *15  unix_syscall64 + 610 (kernel + 6610098) [0xffffff800084dcb2] 1-15
           *15  read_nocancel + 115 (kernel + 6220067) [0xffffff80007ee923] 1-15
             *15  ??? (kernel + 6220730) [0xffffff80007eebba] 1-15
               *15  ??? (kernel + 3576017) [0xffffff80005690d1] 1-15
                 *15  spec_read + 609 (kernel + 3689153) [0xffffff8000584ac1] 1-15
                   *15  ??? (kernel + 5845092) [0xffffff8000793064] 1-15
                     *15  ??? (kernel + 6153625) [0xffffff80007de599] 1-15
                       *15  lck_mtx_sleep + 134 (kernel + 1335974) [0xffffff80003462a6] 1-15
                         *15  thread_block_reason + 175 (kernel + 1378383) [0xffffff800035084f] 1-15
                           *15  ??? (kernel + 1387996) [0xffffff8000352ddc] 1-15
                             *15  machine_switch_context + 367 (kernel + 2204431) [0xffffff800041a30f] 1-15
      Thread 0x2b4        15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91966) [0x7fff8434c73e] 1-15
       *15  ??? (kernel + 6154000) [0xffffff80007de710] 1-15
      Binary Images:
             0x10c866000 -        0x10c87dfff  com.apple.authd 1.0 (57031.1.35)   <C5874018-9FB6-3C4E-B776-C9C61DDBA987>  /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/ Contents/MacOS/authd
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         autofsd [62]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       162 pages
      Thread 0x283        15 samples (1-15)   priority 31
      <thread QoS legacy, timers coalesced, IO policy standard>
      15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
       *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Thread 0x675        15 samples (1-15)   priority 31
      <thread QoS legacy, timers coalesced, IO policy standard>
      15  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91966) [0x7fff8434c73e] 1-15
       *15  ??? (kernel + 6154000) [0xffffff80007de710] 1-15
      Binary Images:
             0x1057e4000 -        0x1057e5fff  autofsd (246)                      <F3238D7D-1514-3805-8CB8-B095E17BB928>  /usr/libexec/autofsd
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         backupd-helper [1399]
    Path:            /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean (allows idle exit)
    Task size:       597 pages
      Thread 0x20410      15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff8434752e] 1-15
       *15  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-15
      Thread 0x20411      15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
       *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Binary Images:
             0x10b14e000 -        0x10b162fff  backupd-helper (207)               <7CC3396B-F3EF-3898-9761-CDD7811A61B1>  /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         bash [2766]
    Path:            /bin/bash
    Architecture:    x86_64
    Parent:          login [2765]
    Responsible:     Terminal [2657]
    UID:             501
    Task size:       64 pages
      Thread 0x4ab87      15 samples (1-15)   priority 31
      <thread QoS legacy, IO policy important>
      15  __wait4 + 10 (libsystem_kernel.dylib + 92414) [0x7fff8434c8fe] 1-15
       *15  ??? (kernel + 6154000) [0xffffff80007de710] 1-15
      Binary Images:
             0x100d19000 -        0x100d9efff  bash (94.1.2)                      <887E6A3C-8AA4-3A33-AC00-F3CED0AAC3D1>  /bin/bash
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         bird [1516]
    Path:            /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/ bird
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       2425 pages
      Thread 0x24417      DispatchQueue 1     15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff8434752e] 1-15
       *15  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-15
      Thread 0x2441a      DispatchQueue 2     15 samples (1-15)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      15  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff89c37a6a] 1-15
        15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
         *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Binary Images:
             0x1078b6000 -        0x1078b7fff  bird (280.1.2)                     <10788F35-D185-3A95-A566-2A077FDB2AD5>  /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/ bird
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff89c33000 -     0x7fff89c5dfff  libdispatch.dylib (442.1.4)        <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         blued [61]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       686 pages
    CPU Time:        0.001s
      Thread 0x1a6        DispatchQueue 1     15 samples (1-15)   priority 31         cpu time 0.001s
      <thread QoS legacy, timers coalesced, IO policy important>
      15  start + 1 (libdyld.dylib + 13769) [0x7fff8d4d75c9] 1-15
        15  ??? (blued + 110014) [0x10c68ddbe] 1-15
          15  -[NSRunLoop(NSRunLoop) run] + 74 (Foundation + 1467487) [0x7fff865df45f] 1-15
            15  -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 (Foundation + 436921) [0x7fff864e3ab9] 1-15
              15  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff8464d838] 1-15
                15  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff8464dfdb] 1-15
                  15  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff8464eb14] 1-15
                    15  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff8434752e] 1-15
                     *15  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-15
      Thread 0x351        15 samples (1-15)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      15  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff8434d22e] 1-15
       *15  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-15
      Thread 0x5a6        15 samples (1-15)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      15  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8c5b14b1] 1-15
        15  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8c5b3279] 1-15
          15  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8c5b32fc] 1-15
            15  __select + 10 (libsystem_kernel.dylib + 91126) [0x7fff8434c3f6] 1-15
             *15  ??? (kernel + 6154000) [0xffffff80007de710] 1-15
      Binary Images:
             0x10c673000 -        0x10c707fff  blued (4301.4.2)                       <1ECA4C8B-475E-30A6-854A-6368D9753385>  /usr/sbin/blued
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97)     <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff845dc000 -     0x7fff84972fff  com.apple.CoreFoundation 6.9 (1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86479000 -     0x7fff867a7fff  com.apple.Foundation 6.9 (1151.16)     <18EDD673-A010-3E99-956E-DA594CE1FA80>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8c5b0000 -     0x7fff8c5b9fff  libsystem_pthread.dylib (105.1.4)      <26B1897F-0CD3-30F3-B55A-37CB45062D73>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff8d4d4000 -     0x7fff8d4d7fff  libdyld.dylib (353.2.1)                <19FAF435-C165-3374-9DEF-D7BBA7D61DB6>  /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                     <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         Box Sync [321]
    Path:            /Applications/Box Sync.app/Contents/MacOS/Box Sync
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Task size:       2287 pages (+8)
    CPU Time:        0.022s
    Process:         Box Sync Monitor [462]
    Path:            /Applications/Box Sync.app/Contents/Resources/Box Sync Monitor
    Architecture:    x86_64
    Parent:          Box Sync [321]
    Responsible:     Box Sync [321]
    UID:             501
    Task size:       87 pages
    CPU Time:        0.017s
      Thread 0x13dd       DispatchQueue 1     15 samples (1-15)   priority 31         cpu time 0.017s
      <thread QoS legacy, IO policy important>
      15  start + 52 (Box Sync Monitor + 4628) [0x100001214] 1-15
        15  main + 2412 (Box Sync Monitor + 9020) [0x10000233c] 1-15
          15  limit_process + 1301 (Box Sync Monitor + 6101) [0x1000017d5] 1-15
            15  __semwait_signal + 10 (libsystem_kernel.dylib + 91270) [0x7fff8434c486] 1-15
             *15  semaphore_wait_continue + 0 (kernel + 1415472) [0xffffff8000359930] 1-15
      Binary Images:
             0x100000000 -        0x100004fff  Box Sync Monitor                   <2DD06C49-9C80-30FE-BBC5-F11EDF4175C5>  /Applications/Box Sync.app/Contents/Resources/Box Sync Monitor
          0x7fff84336000 -     0x7fff84353fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         CalendarAgent [255]
    Path:            /System/Library/PrivateFrameworks/Calenda

    I forgot to mention that iPhoto indeed worked with the above setup with the iphoto library on the NAS(with 20-30 files). I was hoping it was one-time setup(import) that is all I have to pay in time upfront. Not for my trickle load of 1 or two photos daily. Apparently iPhoto does not scale well. I counted 27 threads for the iphoto executable. Why does it take close to 24 hours to import is beyond me. I can download 15GB from internet faster than this ...
    I fail to understand the technological bottleneck!
    Regarding the file format it is some proprietary format(may be linux ext...), but it surely did work fine...
    Please see below:
    The Western Digital units mentioned above use a proprietary file system and cannot be reformatted as FAT32, NTFS, or a Mac File System.
    The file system on the WD My Cloud EX2, WD My Cloud EX4, WD My Cloud, WD My Book Live, WD My Book Live Duo, WD ShareSpace, WD ShareSpace, WD TV Live Hub, My Net N900 Central, WD My Book World Edition, WD NetCenter hard drives support access from Windows, Mac and most Linux based computer systems through a SAMBA network sharing connection.

  • How do I fix my ichat? My buddy list appears, but whenever I try to click on a buddy to chat, IChat won't let me. Nothing appears. When I try to click on "File" - "New Chat" Also nothing appears. What's wrong?

    My buddy list appears, but whenever I try to click on a buddy to chat, IChat won't let me. Nothing appears. It won't let me chat regularly via text, or by video/audio chat. Even when I click on File -> New Chat, still nothing shows up! But, when I look at how many chats I have open, it says I have "X" amount of chats open! But nothing is there.........
    If somebody tries to video chat me from my buddy list, I can see the request.... and then the video chat will work. But I cannot request anybody and if they send me a regular text ichat, ichat won't deliver it to me.
    Somebody please help me I've tried so many things and nothing is working!!!!! :/

    Hi,
    This sounds like it is about Window positions.
    iChat has Default places for Incoming Invites.
    Video is always top Center of your Screen
    Audio and Text chats are Upper right with the Audio slightly lower than Text Chats.
    Secondary invites are sort of Stacked like when you open multiple files from the same App.
    Your outgoing Windows are "Remembered" as to where the last one was when you used it.
    This can be an issue if you use your Mac with a second display and turn Off Mirroring.
    You windows can get "left" on the other screen.
    Go to System Preferences > Displays and turn On Mirroring and the windows should come back to one Screen/display.
    If this does not help go to your Home Folder/Library/Preferences and delete (Drag to Trash) com.apple.ichat.plist and restart iChat.
    Unfortunately you will need to reset any iChat Preferences you have changed from defaults.
    10:42 PM      Tuesday; April 26, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
    , Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Logic Pro "Not Responding" And I have to force quit.

    I am having trouble starting up Logic Pro. It keeps opening up to the Template Box and once I make an option every thing stops responding and I am forced to "force quit". I don't understand the issue. Here is the report that keeps coming out. PLEASE HELP ME. THANK YOU.
    Date/Time:       2015-02-07 19:14:20 -0500
    OS Version:      10.10.2 (Build 14C109)
    Architecture:    x86_64
    Report Version:  21
    Command:         Logic Pro X
    Path:            /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
    Version:         10.1.0 (3683.26)
    Build Version:   1
    Project Name:    MALogic
    Source Version:  3683026000000000
    App Item ID:     634148309
    App External ID: 590352671
    Parent:          launchd [1]
    PID:             413
    Event:           hang
    Duration:        2.60s (process was unresponsive for 12 seconds before sampling)
    Steps:           27 (100ms sampling interval)
    Hardware model:  MacPro3,1
    Active cpus:     8
    Fan speed:       499 rpm
    Timeline format: stacks are sorted chronologically
    Use -i and -heavy to re-report with count sorting
    Heaviest stack for the main thread of the target process:
      27  start + 1 (libdyld.dylib + 13769) [0x7fff9094c5c9]
      27  ??? (Logic Pro X + 6700021) [0x10a06ebf5]
      27  NSApplicationMain + 1832 (AppKit + 10772) [0x7fff8b662a14]
      27  -[NSApplication run] + 594 (AppKit + 95635) [0x7fff8b677593]
      27  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 145200) [0x7fff8b683730]
      27  _DPSNextEvent + 964 (AppKit + 147329) [0x7fff8b683f81]
      27  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 190123) [0x7fff8d2926ab]
      27  ReceiveNextEventCommon + 431 (HIToolbox + 190570) [0x7fff8d29286a]
      27  RunCurrentEventLoopInMode + 235 (HIToolbox + 191215) [0x7fff8d292aef]
      27  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff88dc2858]
      27  __CFRunLoopRun + 2024 (CoreFoundation + 467592) [0x7fff88dc3288]
      27  __CFRunLoopDoTimers + 301 (CoreFoundation + 1215933) [0x7fff88e79dbd]
      27  __CFRunLoopDoTimer + 1059 (CoreFoundation + 743411) [0x7fff88e067f3]
      27  __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (CoreFoundation + 744292) [0x7fff88e06b64]
      27  __NSFireTimer + 95 (Foundation + 421299) [0x7fff8e09adb3]
      27  ??? (Logic Pro X + 6874334) [0x10a0994de]
      27  ??? (Logic Pro X + 6888416) [0x10a09cbe0]
      27  ??? (Logic Pro X + 1933898) [0x109be324a]
      27  ??? (Logic Pro X + 6201131) [0x109ff4f2b]
      27  ??? (Logic Pro X + 4981892) [0x109ecb484]
      27  ??? (Logic Pro X + 6293641) [0x10a00b889]
      27  ??? (Logic Pro X + 6528304) [0x10a044d30]
      27  ??? (Logic Pro X + 10596735) [0x10a42617f]
      27  ??? (Logic Pro X + 10597956) [0x10a426644]
      27  -[NSApplication runModalForWindow:] + 98 (AppKit + 3306753) [0x7fff8b987501]
      27  ??? (Logic Pro X + 6698531) [0x10a06e623]
      27  ??? (Logic Pro X + 6921731) [0x10a0a4e03]
      27  ??? (Logic Pro X + 6381745) [0x10a0210b1]
      27  ??? (Logic Pro X + 6397433) [0x10a024df9]
      27  ??? (Logic Pro X + 6351150) [0x10a01992e]
      27  ??? (Logic Pro X + 6349025) [0x10a0190e1]
      27  ??? (<7EEFB84F-3F0A-5992-CE6A-DAC4D62F57F4> + 6919) [0x11498db07]
      27  ??? (<7EEFB84F-3F0A-5992-CE6A-DAC4D62F57F4> + 5247) [0x11498d47f]
      27  ??? (Logic Pro X + 6307978) [0x10a00f08a]
      27  ??? (Logic Pro X + 6312447) [0x10a0101ff]
      27  ??? (Logic Pro X + 4338041) [0x109e2e179]
      27  usleep + 54 (libsystem_c.dylib + 519760) [0x7fff8fe25e50]
      27  __semwait_signal + 10 (libsystem_kernel.dylib + 91274) [0x7fff8f02148a]
    *25  semaphore_wait_continue + 0 (kernel + 1373536) [0xffffff800034f560]
    Process:         Logic Pro X [413]
    Path:            /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Task size:       31763 pages
    CPU Time:        0.237s
    Note:            Unresponsive for 12 seconds before sampling
    Note:            1 idle work queue threads omitted
      Thread 0x1998       DispatchQueue 1     27 samples (1-27)   priority 47         cpu time 0.051s
      <frontmost, thread QoS user interactive, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  start + 1 (libdyld.dylib + 13769) [0x7fff9094c5c9] 1-27
        27  ??? (Logic Pro X + 6700021) [0x10a06ebf5] 1-27
          27  NSApplicationMain + 1832 (AppKit + 10772) [0x7fff8b662a14] 1-27
            27  -[NSApplication run] + 594 (AppKit + 95635) [0x7fff8b677593] 1-27
              27  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 145200) [0x7fff8b683730] 1-27
                27  _DPSNextEvent + 964 (AppKit + 147329) [0x7fff8b683f81] 1-27
                  27  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 190123) [0x7fff8d2926ab] 1-27
                    27  ReceiveNextEventCommon + 431 (HIToolbox + 190570) [0x7fff8d29286a] 1-27
                      27  RunCurrentEventLoopInMode + 235 (HIToolbox + 191215) [0x7fff8d292aef] 1-27
                        27  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff88dc2858] 1-27
                          27  __CFRunLoopRun + 2024 (CoreFoundation + 467592) [0x7fff88dc3288] 1-27
                            27  __CFRunLoopDoTimers + 301 (CoreFoundation + 1215933) [0x7fff88e79dbd] 1-27
                              27  __CFRunLoopDoTimer + 1059 (CoreFoundation + 743411) [0x7fff88e067f3] 1-27
                                27  __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (CoreFoundation + 744292) [0x7fff88e06b64] 1-27
                                  27  __NSFireTimer + 95 (Foundation + 421299) [0x7fff8e09adb3] 1-27
                                    27  ??? (Logic Pro X + 6874334) [0x10a0994de] 1-27
                                      27  ??? (Logic Pro X + 6888416) [0x10a09cbe0] 1-27
                                        27  ??? (Logic Pro X + 1933898) [0x109be324a] 1-27
                                          27  ??? (Logic Pro X + 6201131) [0x109ff4f2b] 1-27
                                            27  ??? (Logic Pro X + 4981892) [0x109ecb484] 1-27
                                              27  ??? (Logic Pro X + 6293641) [0x10a00b889] 1-27
                                                27  ??? (Logic Pro X + 6528304) [0x10a044d30] 1-27
                                                  27  ??? (Logic Pro X + 10596735) [0x10a42617f] 1-27
                                                    27  ??? (Logic Pro X + 10597956) [0x10a426644] 1-27
                                                      27  -[NSApplication runModalForWindow:] + 98 (AppKit + 3306753) [0x7fff8b987501] 1-27
                                                        27  ??? (Logic Pro X + 6698531) [0x10a06e623] 1-27
                                                          27  ??? (Logic Pro X + 6921731) [0x10a0a4e03] 1-27
                                                            27  ??? (Logic Pro X + 6381745) [0x10a0210b1] 1-27
                                                              27  ??? (Logic Pro X + 6397433) [0x10a024df9] 1-27
                                                                27  ??? (Logic Pro X + 6351150) [0x10a01992e] 1-27
                                                                  27  ??? (Logic Pro X + 6349025) [0x10a0190e1] 1-27
                                                                    27  ??? (<7EEFB84F-3F0A-5992-CE6A-DAC4D62F57F4> + 6919) [0x11498db07] 1-27
                                                                      27  ??? (<7EEFB84F-3F0A-5992-CE6A-DAC4D62F57F4> + 5247) [0x11498d47f] 1-27
                                                                        27  ??? (Logic Pro X + 6307978) [0x10a00f08a] 1-27
                                                                          27  ??? (Logic Pro X + 6312447) [0x10a0101ff] 1-27
                                                                            27  ??? (Logic Pro X + 4338041) [0x109e2e179] 1-27
                                                                              27  usleep + 54 (libsystem_c.dylib + 519760) [0x7fff8fe25e50] 1-27
                                                                                27  __semwait_signal + 10 (libsystem_kernel.dylib + 91274) [0x7fff8f02148a] 1-27
                                                                                 *1   semaphore_wait_continue + 0 (kernel + 1373536) [0xffffff800034f560] (running) 1
                                                                                 *7   semaphore_wait_continue + 0 (kernel + 1373536) [0xffffff800034f560] 2-8
                                                                                 *1   semaphore_wait_continue + 0 (kernel + 1373536) [0xffffff800034f560] (running) 9
                                                                                 *18  semaphore_wait_continue + 0 (kernel + 1373536) [0xffffff800034f560] 10-27
      Thread 0x19c2       DispatchQueue 2     27 samples (1-27)   priority 47
      <frontmost, thread QoS user interactive, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8ae3aa6a] 1-27
        27  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff8f022232] 1-27
         *27  ??? (kernel + 5988368) [0xffffff80007b6010] 1-27
      Thread 0x19f4       27 samples (1-27)   priority 31
      <frontmost, thread QoS legacy, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 140794) [0x1131b35fa] 1-27
              27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 140854) [0x1131b3636] 1-27
                27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 136854) [0x1131b2696] 1-27
                  27  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90422) [0x7fff8f021136] 1-27
                   *27  psynch_cvcontinue + 0 (pthread + 26908) [0xffffff7f80de291c] 1-27
      Thread 0x19f6       27 samples (1-27)   priority 31
      <frontmost, thread QoS legacy, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 128634) [0x1131b067a] 1-27
              27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 128739) [0x1131b06e3] 1-27
                27  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90422) [0x7fff8f021136] 1-27
                 *27  psynch_cvcontinue + 0 (pthread + 26908) [0xffffff7f80de291c] 1-27
      Thread 0x19f8       27 samples (1-27)   priority 31
      <frontmost, thread QoS legacy, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 124858) [0x1131af7ba] 1-27
              27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 125413) [0x1131af9e5] 1-27
                27  __recvfrom + 10 (libsystem_kernel.dylib + 90938) [0x7fff8f02133a] 1-27
                 *27  hndl_unix_scall64 + 22 (kernel + 2322054) [0xffffff8000436e86] 1-27
                   *27  unix_syscall64 + 662 (kernel + 6599558) [0xffffff800084b386] 1-27
                     *27  recvfrom_nocancel + 234 (kernel + 6439194) [0xffffff800082411a] 1-27
                       *27  ??? (kernel + 6451163) [0xffffff8000826fdb] 1-27
                         *27  soreceive + 2319 (kernel + 6381487) [0xffffff8000815faf] 1-27
                           *27  sbwait + 310 (kernel + 6413318) [0xffffff800081dc06] 1-27
                             *27  msleep + 98 (kernel + 6140770) [0xffffff80007db362] 1-27
                               *27  ??? (kernel + 6141865) [0xffffff80007db7a9] 1-27
                                 *27  lck_mtx_sleep + 134 (kernel + 1292598) [0xffffff800033b936] 1-27
                                   *27  thread_block_reason + 175 (kernel + 1335599) [0xffffff800034612f] 1-27
                                     *27  ??? (kernel + 1345492) [0xffffff80003487d4] 1-27
                                       *27  machine_switch_context + 367 (kernel + 2186783) [0xffffff8000415e1f] 1-27
      Thread 0x1a4f       27 samples (1-27)   priority 1
      <frontmost, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  ??? (Logic Pro X + 3279065) [0x109d2b8d9] 1-27
              27  -[NSRunLoop(NSRunLoop) runUntilDate:] + 108 (Foundation + 726334) [0x7fff8e0e553e] 1-27
                27  -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 (Foundation + 436297) [0x7fff8e09e849] 1-27
                  27  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff88dc2858] 1-27
                    27  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff88dc2ffb] 1-27
                      27  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff88dc3b34] 1-27
                        27  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff8f01c4de] 1-27
                         *27  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-27
      Thread 0x1a50       27 samples (1-27)   priority 97
      <frontmost, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  TimerThread + 266 (CarbonCore + 561633) [0x7fff8f9da1e1] 1-27
              27  ??? (Logic Pro X + 4252652) [0x109e193ec] 1-27
                27  ??? (Logic Pro X + 4255299) [0x109e19e43] 1-27
                  27  ??? (Logic Pro X + 4332323) [0x109e2cb23] 1-27
                    27  ??? (Logic Pro X + 6378489) [0x10a0203f9] 1-27
                      27  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff8f021166] 1-27
                       *27  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-27
      Thread 0x1a51       27 samples (1-27)   priority 97         cpu time 0.002s
      <frontmost, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  ??? (<8803C090-9288-3128-B0FF-9CBA810660DC> + 60043) [0x10b81fa8b] 1-27
              27  ??? (<8803C090-9288-3128-B0FF-9CBA810660DC> + 61018) [0x10b81fe5a] 1-27
                27  ??? (<8803C090-9288-3128-B0FF-9CBA810660DC> + 169838) [0x10b83a76e] 1-27
                  27  ??? (<8803C090-9288-3128-B0FF-9CBA810660DC> + 56763) [0x10b81edbb] 1-27
                    27  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff8f01c4de] 1-27
                     *27  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-27
      Thread 0x1a52       27 samples (1-27)   priority 31
      <frontmost, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  ??? (<6035F770-C154-33D9-8EE4-CFAC78F77D36> + 162601) [0x10d428b29] 1-27
              27  ??? (<6035F770-C154-33D9-8EE4-CFAC78F77D36> + 163483) [0x10d428e9b] 1-27
                27  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90422) [0x7fff8f021136] 1-27
                 *27  psynch_cvcontinue + 0 (pthread + 26908) [0xffffff7f80de291c] 1-27
      Thread 0x1a53       27 samples (1-27)   priority 29
      <frontmost, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  ??? (<6035F770-C154-33D9-8EE4-CFAC78F77D36> + 162601) [0x10d428b29] 1-27
              27  ??? (<6035F770-C154-33D9-8EE4-CFAC78F77D36> + 163483) [0x10d428e9b] 1-27
                27  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90422) [0x7fff8f021136] 1-27
                 *27  psynch_cvcontinue + 0 (pthread + 26908) [0xffffff7f80de291c] 1-27
      Thread 0x1a55       27 samples (1-27)   priority 47
      <frontmost, thread QoS user interactive, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  _NSEventThread + 137 (AppKit + 1602363) [0x7fff8b7e733b] 1-27
              27  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff88dc2858] 1-27
                27  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff88dc2ffb] 1-27
                  27  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff88dc3b34] 1-27
                    27  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff8f01c4de] 1-27
                     *27  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-27
      Thread 0x1a68       27 samples (1-27)   priority 47
      <frontmost, thread QoS user interactive, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff8f0213fa] 1-27
             *27  ??? (kernel + 6142240) [0xffffff80007db920] 1-27
      Thread 0x1a69       27 samples (1-27)   priority 31
      <frontmost, thread QoS legacy, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  ??? (Logic Pro X + 6457725) [0x10a03397d] 1-27
              27  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff8f0213fa] 1-27
               *27  ??? (kernel + 6142240) [0xffffff80007db920] 1-27
      Thread 0x1abe       27 samples (1-27)   priority 54         cpu time 0.003s
      <frontmost, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  startIOThread(void*) + 147 (CoreVideo + 8859) [0x7fff8e44e29b] 1-27
              27  CVDisplayLink::runIOThread() + 511 (CoreVideo + 9395) [0x7fff8e44e4b3] 1-27
                27  CVDisplayLink::waitUntil(unsigned long long) + 240 (CoreVideo + 12280) [0x7fff8e44eff8] 1-27
                  27  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90422) [0x7fff8f021136] 1-27
                   *27  psynch_cvcontinue + 0 (pthread + 26908) [0xffffff7f80de291c] 1-27
      Thread 0x1ae6       27 samples (1-27)   priority 63
      <frontmost, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  __NSThread__main__ + 1345 (Foundation + 428298) [0x7fff8e09c90a] 1-27
              27  +[NSURLConnection(Loader) _resourceLoadLoop:] + 434 (CFNetwork + 658560) [0x7fff886d9c80] 1-27
                27  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff88dc2858] 1-27
                  27  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff88dc2ffb] 1-27
                    27  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff88dc3b34] 1-27
                      27  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff8f01c4de] 1-27
                       *27  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-27
      Thread 0x1af9       27 samples (1-27)   priority 47         cpu time 0.177s
      <frontmost, thread QoS user interactive, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  __NSThread__main__ + 1345 (Foundation + 428298) [0x7fff8e09c90a] 1-27
              8   -[NSUIHeartBeat _heartBeatThread:] + 2376 (AppKit + 2312035) [0x7fff8b894763] 1-8
                8   usleep + 54 (libsystem_c.dylib + 519760) [0x7fff8fe25e50] 1-8
                  8   __semwait_signal + 10 (libsystem_kernel.dylib + 91274) [0x7fff8f02148a] 1-8
                   *8   semaphore_wait_continue + 0 (kernel + 1373536) [0xffffff800034f560] 1-8
              2   -[NSUIHeartBeat _heartBeatThread:] + 933 (AppKit + 2310592) [0x7fff8b8941c0] 9-10
                2   -[NSWindow(NSWindow_Theme) heartBeat:] + 296 (AppKit + 3286681) [0x7fff8b982699] 9-10
                  2   -[NSButtonCell(NSDefaultButtonIndicatorPrivate) heartBeat:] + 2419 (AppKit + 3289254) [0x7fff8b9830a6] 9-10
                    2   -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117 (AppKit + 2503592) [0x7fff8b8c33a8] 9-10
                      2   -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 2135 (AppKit + 1395214) [0x7fff8b7b4a0e] 9-10
                        2   -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 2135 (AppKit + 1395214) [0x7fff8b7b4a0e] 9-10
                          2   -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 2135 (AppKit + 1395214) [0x7fff8b7b4a0e] 9-10
                            2   -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 2135 (AppKit + 1395214) [0x7fff8b7b4a0e] 9-10
                              2   -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 1186 (AppKit + 1394265) [0x7fff8b7b4659] 9-10
                                2   -[NSControl drawRect:] + 342 (AppKit + 1425408) [0x7fff8b7bc000] 9-10
                                  2   ??? (<6D450B10-0C66-31BA-B812-2C18CAEAC4EB> + 172441) [0x10d7eb199] 9-10
                                    2   ??? (<6D450B10-0C66-31BA-B812-2C18CAEAC4EB> + 168694) [0x10d7ea2f6] 9-10
                                      2   ??? (<6D450B10-0C66-31BA-B812-2C18CAEAC4EB> + 1413552) [0x10d91a1b0] 9-10
                                        1   ??? (<6D450B10-0C66-31BA-B812-2C18CAEAC4EB> + 1309716) [0x10d900c14] 9
                                          1   -[NSImageRep drawInRect:fromRect:operation:fraction:respectFlipped:hints:] + 1108 (AppKit + 1442613) [0x7fff8b7c0335] 9
                                            1   __74-[NSImageRep drawInRect:fromRect:operation:fraction:respectFlipped:hints:]_block_invoke + 800 (AppKit + 1443986) [0x7fff8b7c0892] 9
                                              1   CGContextDrawImage + 457 (CoreGraphics + 158871) [0x7fff92913c97] 9
                                                1   ripc_DrawImage + 1174 (libRIP.A.dylib + 48766) [0x7fff8eecbe7e] 9
                                                  1   ripc_RenderImage + 265 (libRIP.A.dylib + 57193) [0x7fff8eecdf69] 9
                                                    1   RIPLayerBltImage + 1146 (libRIP.A.dylib + 58900) [0x7fff8eece614] 9
                                                      1   ripl_Mark + 23 (libRIP.A.dylib + 62237) [0x7fff8eecf31d] 9
                                                        1   RGBA32_image + 1156 (CoreGraphics + 985520) [0x7fff929dd9b0] 9
                                                          1   argb32_image_mark + 1590 (CoreGraphics + 336011) [0x7fff9293f08b] (running) 9
                                        1   ??? (<6D450B10-0C66-31BA-B812-2C18CAEAC4EB> + 1309502) [0x10d900b3e] 10
                                          1   -[NSImage drawInRect:fromRect:operation:fraction:respectFlipped:hints:] + 2122 (AppKit + 1440551) [0x7fff8b7bfb27] 10
                                            1   -[NSImage _usingBestRepresentationForRect:context:hints:body:] + 164 (AppKit + 973254) [0x7fff8b74d9c6] 10
                                              1   __71-[NSImage drawInRect:fromRect:operation:fraction:respectFlipped:hints:]_block_invoke1008 + 1139 (AppKit + 5231542) [0x7fff8bb5d3b6] 10
                                                1   -[NSImageRep drawInRect:fromRect:operation:fraction:respectFlipped:hints:] + 1108 (AppKit + 1442613) [0x7fff8b7c0335] 10
                                                  1   __74-[NSImageRep drawInRect:fromRect:operation:fraction:respectFlipped:hints:]_block_invoke + 800 (AppKit + 1443986) [0x7fff8b7c0892] 10
                                                    1   CGContextDrawImage + 457 (CoreGraphics + 158871) [0x7fff92913c97] 10
                                                      1   ripc_DrawImage + 1174 (libRIP.A.dylib + 48766) [0x7fff8eecbe7e] 10
                                                        1   ripc_RenderImage + 265 (libRIP.A.dylib + 57193) [0x7fff8eecdf69] 10
                                                          1   RIPLayerBltImage + 1146 (libRIP.A.dylib + 58900) [0x7fff8eece614] 10
                                                            1   ripl_Mark + 23 (libRIP.A.dylib + 62237) [0x7fff8eecf31d] 10
                                                              1   RGBA32_image + 4920 (CoreGraphics + 989284) [0x7fff929de864] 10
                                                                1   CGSBlend8888toRGBA8888 + 339 (CoreGraphics + 188888) [0x7fff9291b1d8] 10
                                                                  1   vImagePremultipliedAlphaBlendWithPermute_RGBA8888 + 574 (vImage + 74382) [0x7fff8b21e28e] 10
                                                                    1   vPremultipliedAlphaBlendWithPermute_RGBA8888 + 2658 (vImage + 232834) [0x7fff8b244d82] (running) 10
              9   -[NSUIHeartBeat _heartBeatThread:] + 2376 (AppKit + 2312035) [0x7fff8b894763] 11-19
                9   usleep + 54 (libsystem_c.dylib + 519760) [0x7fff8fe25e50] 11-19
                  9   __semwait_signal + 10 (libsystem_kernel.dylib + 91274) [0x7fff8f02148a] 11-19
                   *9   semaphore_wait_continue + 0 (kernel + 1373536) [0xffffff800034f560] 11-19
              1   -[NSUIHeartBeat _heartBeatThread:] + 933 (AppKit + 2310592) [0x7fff8b8941c0] 20
                1   -[NSWindow(NSWindow_Theme) heartBeat:] + 296 (AppKit + 3286681) [0x7fff8b982699] 20
                  1   -[NSButtonCell(NSDefaultButtonIndicatorPrivate) heartBeat:] + 2419 (AppKit + 3289254) [0x7fff8b9830a6] 20
                    1   -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 117 (AppKit + 2503592) [0x7fff8b8c33a8] 20
                      1   -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 1186 (AppKit + 1394265) [0x7fff8b7b4659] 20
                        1   -[NSThemeFrame drawRect:] + 280 (AppKit + 2178630) [0x7fff8b873e46] 20
                          1   -[NSFrameView drawRect:] + 1158 (AppKit + 2179825) [0x7fff8b8742f1] 20
                            1   -[NSFrameView drawThemeContentFill:inView:] + 287 (AppKit + 1402504) [0x7fff8b7b6688] 20
                              1   -[NSThemeFrame drawWindowBackgroundRect:] + 129 (AppKit + 1404452) [0x7fff8b7b6e24] 20
                                1   CGContextRestoreGState + 32 (CoreGraphics + 70612) [0x7fff928fe3d4] 20
                                  1   CGGStackRestore + 58 (CoreGraphics + 70702) [0x7fff928fe42e] 20
                                    1   free + 206 (libsystem_malloc.dylib + 18521) [0x7fff9219a859] (running) 20
              7   -[NSUIHeartBeat _heartBeatThread:] + 2376 (AppKit + 2312035) [0x7fff8b894763] 21-27
                7   usleep + 54 (libsystem_c.dylib + 519760) [0x7fff8fe25e50] 21-27
                  7   __semwait_signal + 10 (libsystem_kernel.dylib + 91274) [0x7fff8f02148a] 21-27
                   *7   semaphore_wait_continue + 0 (kernel + 1373536) [0xffffff800034f560] 21-27
      Thread 0x1b2c       27 samples (1-27)   priority 31
      <frontmost, boosted, received importance donation from filecoordinationd [253], received importance donation from WindowServer [179], IO policy important>
    *27  wq_unsuspend_continue + 0 (pthread + 18452) [0xffffff7f80de0814] (suspended) 1-27
      Binary Images:
             0x109a0b000 -        0x10ab9afff  com.apple.logic10 10.1.0 (3683.26)                <34C65181-2AAD-3E37-975D-D4035B4CE0EA>  /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
             0x10b811000 -                ???  ???                                               <8803C090-9288-3128-B0FF-9CBA810660DC>
             0x10d401000 -                ???  ???                                               <6035F770-C154-33D9-8EE4-CFAC78F77D36>
             0x10d7c1000 -                ???  ???                                               <6D450B10-0C66-31BA-B812-2C18CAEAC4EB>
             0x113191000 -                ???  ???                                               <0717F791-4EAA-3C0F-988E-8B558DCD9916>
             0x11498c000 -                ???  ???                                               <7EEFB84F-3F0A-5992-CE6A-DAC4D62F57F4>
          0x7fff88639000 -     0x7fff8883cfff  com.apple.CFNetwork 720.2.4 (720.2.4)             <E550C671-930F-3B12-8798-23898473E179>  /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
          0x7fff88d51000 -     0x7fff890e7fff  com.apple.CoreFoundation 6.9 (1152)               <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8ae36000 -     0x7fff8ae60fff  libdispatch.dylib (442.1.4)                       <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
          0x7fff8b20c000 -     0x7fff8b65ffff  com.apple.vImage 8.0 (8.0)                        <33BE7B31-72DB-3364-B37E-C322A32748C5>  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
          0x7fff8b660000 -     0x7fff8c1aafff  com.apple.AppKit 6.9 (1344.72)                    <44EF7DEB-3072-3515-9F34-2857D557E828>  /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8d264000 -     0x7fff8d568fff  com.apple.HIToolbox 2.1.1 (757.3)                 <D827FC03-5668-3AA4-AF0E-46EEF7358EEA>  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8e034000 -     0x7fff8e362fff  com.apple.Foundation 6.9 (1152.14)                <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8e44c000 -     0x7fff8e479fff  com.apple.CoreVideo 1.8 (145.1)                   <18DB07E0-B927-3260-A234-636F298D1917>  /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
          0x7fff8eec0000 -     0x7fff8eee8fff  libRIP.A.dylib (775.16)                           <7711F7A7-1813-3024-AE42-75CA7C5422B7>  /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
          0x7fff8f00b000 -     0x7fff8f028fff  libsystem_kernel.dylib (2782.10.72)               <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f951000 -     0x7fff8fc38fff  com.apple.CoreServices.CarbonCore 1108.2 (1108.2) <FD87F83F-301A-3BD6-8262-5692FC1B4457>  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
          0x7fff8fda7000 -     0x7fff8fe33fff  libsystem_c.dylib (1044.10.1)                     <199ED5EB-77A1-3D43-AA51-81779CE0A742>  /usr/lib/system/libsystem_c.dylib
          0x7fff90949000 -     0x7fff9094cfff  libdyld.dylib (353.2.1)                           <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff92196000 -     0x7fff921b2fff  libsystem_malloc.dylib (53.1.1)                   <19BCC257-5717-3502-A71F-95D65AFA861B>  /usr/lib/system/libsystem_malloc.dylib
          0x7fff928ed000 -     0x7fff93144fff  com.apple.CoreGraphics 1.600.0 (775.16)           <864C1845-C41E-314C-A3B4-438DC39E5FBC>  /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
          0x7fff946ee000 -     0x7fff946f7fff  libsystem_pthread.dylib (105.10.1)                <3103AA7F-3BAE-3673-9649-47FFD7E15C97>  /usr/lib/system/libsystem_pthread.dylib
    *0xffffff7f80ddc000 - 0xffffff7f80de4fff  com.apple.kec.pthread 1.0 (1)                     <8365956C-8613-3ED4-BC64-0D8570D2089F>  /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                               <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         accountsd [250]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1856 pages
      Thread 0x90d        DispatchQueue 1     27 samples (1-27)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      27  start + 1 (libdyld.dylib + 13769) [0x7fff9094c5c9] 1-27
        27  ??? (accountsd + 2741) [0x10f9d1ab5] 1-27
          27  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff88dc2858] 1-27
            27  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff88dc2ffb] 1-27
              27  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff88dc3b34] 1-27
                27  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff8f01c4de] 1-27
                 *27  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-27
      Thread 0x913        DispatchQueue 2     27 samples (1-27)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      27  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8ae3aa6a] 1-27
        27  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff8f022232] 1-27
         *27  ??? (kernel + 5988368) [0xffffff80007b6010] 1-27
      Binary Images:
             0x10f9d1000 -        0x10f9d1fff  accountsd (504.7)                   <FE573A9B-A4D9-3E08-9F08-D98F65D9E14D>  /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff88d51000 -     0x7fff890e7fff  com.apple.CoreFoundation 6.9 (1152) <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8ae36000 -     0x7fff8ae60fff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
          0x7fff8f00b000 -     0x7fff8f028fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff90949000 -     0x7fff9094cfff  libdyld.dylib (353.2.1)             <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AirPlayUIAgent [267]
    Path:            /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       3098 pages (-4)
    Note:            2 idle work queue threads omitted
      Thread 0x9cc        DispatchQueue 1     27 samples (1-27)   priority 46
      <thread QoS user interactive, IO policy important>
      27  start + 1 (libdyld.dylib + 13769) [0x7fff9094c5c9] 1-27
        27  NSApplicationMain + 1832 (AppKit + 10772) [0x7fff8b662a14] 1-27
          27  -[NSApplication run] + 594 (AppKit + 95635) [0x7fff8b677593] 1-27
            27  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 145200) [0x7fff8b683730] 1-27
              27  _DPSNextEvent + 964 (AppKit + 147329) [0x7fff8b683f81] 1-27
                27  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 190123) [0x7fff8d2926ab] 1-27
                  27  ReceiveNextEventCommon + 431 (HIToolbox + 190570) [0x7fff8d29286a] 1-27
                    27  RunCurrentEventLoopInMode + 235 (HIToolbox + 191215) [0x7fff8d292aef] 1-27
                      27  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff88dc2858] 1-27
                        27  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff88dc2ffb] 1-27
                          27  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff88dc3b34] 1-27
                            27  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff8f01c4de] 1-27
                             *27  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-27
      Thread 0x9df        DispatchQueue 2     27 samples (1-27)   priority 46
      <thread QoS user interactive, IO policy important>
      27  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8ae3aa6a] 1-27
        27  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff8f022232] 1-27
         *27  ??? (kernel + 5988368) [0xffffff80007b6010] 1-27
      Thread 0xa9d        27 samples (1-27)   priority 31
      <thread QoS legacy, IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 140794) [0x1049bd5fa] 1-27
              27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 140854) [0x1049bd636] 1-27
                27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 136854) [0x1049bc696] 1-27
                  27  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90422) [0x7fff8f021136] 1-27
                   *27  psynch_cvcontinue + 0 (pthread + 26908) [0xffffff7f80de291c] 1-27
      Thread 0xa9f        27 samples (1-27)   priority 31
      <thread QoS legacy, IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 128634) [0x1049ba67a] 1-27
              27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 128739) [0x1049ba6e3] 1-27
                27  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90422) [0x7fff8f021136] 1-27
                 *27  psynch_cvcontinue + 0 (pthread + 26908) [0xffffff7f80de291c] 1-27
      Thread 0xaa1        27 samples (1-27)   priority 31
      <thread QoS legacy, IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 124858) [0x1049b97ba] 1-27
              27  ??? (<0717F791-4EAA-3C0F-988E-8B558DCD9916> + 125413) [0x1049b99e5] 1-27
                27  __recvfrom + 10 (libsystem_kernel.dylib + 90938) [0x7fff8f02133a] 1-27
                 *27  hndl_unix_scall64 + 22 (kernel + 2322054) [0xffffff8000436e86] 1-27
                   *27  unix_syscall64 + 662 (kernel + 6599558) [0xffffff800084b386] 1-27
                     *27  recvfrom_nocancel + 234 (kernel + 6439194) [0xffffff800082411a] 1-27
                       *27  ??? (kernel + 6451163) [0xffffff8000826fdb] 1-27
                         *27  soreceive + 2319 (kernel + 6381487) [0xffffff8000815faf] 1-27
                           *27  sbwait + 310 (kernel + 6413318) [0xffffff800081dc06] 1-27
                             *27  msleep + 98 (kernel + 6140770) [0xffffff80007db362] 1-27
                               *27  ??? (kernel + 6141865) [0xffffff80007db7a9] 1-27
                                 *27  lck_mtx_sleep + 134 (kernel + 1292598) [0xffffff800033b936] 1-27
                                   *27  thread_block_reason + 175 (kernel + 1335599) [0xffffff800034612f] 1-27
                                     *27  ??? (kernel + 1345492) [0xffffff80003487d4] 1-27
                                       *27  machine_switch_context + 367 (kernel + 2186783) [0xffffff8000415e1f] 1-27
      Thread 0xab4        27 samples (1-27)   priority 46
      <thread QoS user interactive, IO policy important>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  _NSEventThread + 137 (AppKit + 1602363) [0x7fff8b7e733b] 1-27
              27  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff88dc2858] 1-27
                27  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff88dc2ffb] 1-27
                  27  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff88dc3b34] 1-27
                    27  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff8f01c4de] 1-27
                     *27  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-27
      Binary Images:
             0x100e60000 -        0x100e65fff  com.apple.AirPlayUIAgent 2.0 (215.15) <24B86EE0-207E-3D74-9DE9-3338EA4163B0>  /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
             0x10499b000 -                ???  ???                                   <0717F791-4EAA-3C0F-988E-8B558DCD9916>
          0x7fff88d51000 -     0x7fff890e7fff  com.apple.CoreFoundation 6.9 (1152)   <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8ae36000 -     0x7fff8ae60fff  libdispatch.dylib (442.1.4)           <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
          0x7fff8b660000 -     0x7fff8c1aafff  com.apple.AppKit 6.9 (1344.72)        <44EF7DEB-3072-3515-9F34-2857D557E828>  /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8d264000 -     0x7fff8d568fff  com.apple.HIToolbox 2.1.1 (757.3)     <D827FC03-5668-3AA4-AF0E-46EEF7358EEA>  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8f00b000 -     0x7fff8f028fff  libsystem_kernel.dylib (2782.10.72)   <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff90949000 -     0x7fff9094cfff  libdyld.dylib (353.2.1)               <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff946ee000 -     0x7fff946f7fff  libsystem_pthread.dylib (105.10.1)    <3103AA7F-3BAE-3673-9649-47FFD7E15C97>  /usr/lib/system/libsystem_pthread.dylib
    *0xffffff7f80ddc000 - 0xffffff7f80de4fff  com.apple.kec.pthread 1.0 (1)         <8365956C-8613-3ED4-BC64-0D8570D2089F>  /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                   <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         airportd [30]
    Path:            /usr/libexec/airportd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       1009 pages
      Thread 0x1b2        DispatchQueue 1     27 samples (1-27)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      27  start + 1 (libdyld.dylib + 13769) [0x7fff9094c5c9] 1-27
        27  ??? (airportd + 235530) [0x101b1580a] 1-27
          27  -[NSRunLoop(NSRunLoop) run] + 74 (Foundation + 1466959) [0x7fff8e19a24f] 1-27
            27  -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 (Foundation + 436297) [0x7fff8e09e849] 1-27
              27  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff88dc2858] 1-27
                27  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff88dc2ffb] 1-27
                  27  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff88dc3b34] 1-27
                    27  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff8f01c4de] 1-27
                     *27  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-27
      Thread 0x3c3        DispatchQueue 2     27 samples (1-27)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      27  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8ae3aa6a] 1-27
        27  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff8f022232] 1-27
         *27  ??? (kernel + 5988368) [0xffffff80007b6010] 1-27
      Thread 0x458        27 samples (1-27)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      27  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff946ef41d] 1-27
        27  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff946f11e5] 1-27
          27  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff946f1268] 1-27
            27  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff8f0213fa] 1-27
             *27  ??? (kernel + 6142240) [0xffffff80007db920] 1-27

    Things to check...
    You are using the latest version of drivers/software for your Maschine, Apogee, ADVC-55 and SL MkII devices
    Failing that, Shut down your Mac, unplug all external devices and start up Mac.  Test LPX using internal Audio and Musical Typing Keyboard with new project....
    If that works normally then...
    Delete both Logic's prefs and the CS prefs as detailed here...
    Quit Logic Pro
    In the Finder, choose Go to Folder from the Go menu.
    Type ~/Library/Preferences in the "Go to the folder" field.
    Press the Go button.
    Remove the com.apple.logic10.plist file from the Preferences folder. Note that if you have programmed any custom key commands, this will reset them to the defaults. You may wish to export your custom key command as a preset before performing this step. See the Logic Pro X User Manual for details on how to do this. If you are having trouble with a control surface in Logic Pro X, then you may also wish to delete the com.apple.logic.pro.cs file from the preferences folder.
    If you have upgraded from an earlier version of Logic Pro, you should also remove ~/Library/Preferences/Logic/com.apple.logic.pro.
    Restart the computer.
    Note:If you cannot find either of these files you did not follow all the steps exactly as described!
    Now...
    Plug in each of your external devices, one at a time.. restarting your Mac each time to ensure which, if any device, is the source of the problem...
    Additional: You may have to install and set up your SL MkII again after deleting the CS (Control Surface)  prefs
    If that doesn't help then as a troubleshooting step....
    Please download Etrecheck from here...
    http://www.etresoft.com/etrecheck
    ..and then launch Logic Pro (But don't load up a project)
    Now run Etrecheck and post up the full report here....
    Thanks...
    Nigel

  • Mail crash 10.10.3 on Macbook Retina and Imac 5K

    please help me , my Macbook Retina an my Imac 5K crash Mail after open it permanent
    Date/Time:       2015-04-10 00:58:09 +0200
    OS Version:      10.10.3 (Build 14D131)
    Architecture:    x86_64
    Report Version:  21
    Command:         Mail
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Version:         8.2 (2098)
    Build Version:   1
    Project Name:    Mail
    Source Version:  2098000000000000
    Parent:          launchd [1]
    PID:             612
    Event:           hang
    Duration:        1.00s (process was unresponsive for 266 seconds before sampling)
    Steps:           11 (100ms sampling interval)
    Hardware model:  MacBookPro10,1
    Active cpus:     8
    Fan speed:       2156 rpm
    Timeline format: stacks are sorted chronologically
    Use -i and -heavy to re-report with count sorting
    Heaviest stack for the main thread of the target process:
      11  start + 1 (libdyld.dylib + 13769) [0x7fff963135c9]
      11  NSApplicationMain + 1832 (AppKit + 13140) [0x7fff8c493354]
      11  -[NSApplication run] + 594 (AppKit + 551923) [0x7fff8c516bf3]
      11  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346 (AppKit + 593768) [0x7fff8c520f68]
      11  _DPSNextEvent + 1828 (AppKit + 597261) [0x7fff8c521d0d]
      11  _NSHandleCarbonMenuEvent + 277 (AppKit + 1420768) [0x7fff8c5eade0]
      11  _HandleMenuSelection2 + 446 (HIToolbox + 614654) [0x7fff8e3bb0fe]
      11  MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 268 (HIToolbox + 615119) [0x7fff8e3bb2cf]
      11  SetupMenuTracking(MenuSelectData&, unsigned char, Point, double, MenuData*, unsigned int, unsigned short, Rect const*, Rect const*, __CFDictionary const*, unsigned int, Rect const*, __CFString const*) + 3189 (HIToolbox + 469745) [0x7fff8e397af1]
      11  InstallEventHandler + 52 (HIToolbox + 39431) [0x7fff8e32ea07]
      11  PushEventHandler(EventTargetRec*, int (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*), unsigned char, unsigned long, EventTypeSpec const*, void*, OpaqueEventHandlerRef**) + 458 (HIToolbox + 1601054) [0x7fff8e4abe1e]
      11  AddHandlersToIndex(EventTargetRec*, HandlerRec*, unsigned long, EventTypeSpec const*) + 178 (HIToolbox + 27359) [0x7fff8e32badf]
      11  TEventTypeIndex::AddTypes(unsigned long, EventTypeSpec const*) + 230 (HIToolbox + 28328) [0x7fff8e32bea8]
      11  GlobalRegistryEventRegistered(unsigned int, unsigned int) + 337 (HIToolbox + 29088) [0x7fff8e32c1a0]
      11  HandlerStatusChanged + 204 (HIToolbox + 41140) [0x7fff8e32f0b4]
      11  _LSModifyNotification + 109 (LaunchServices + 39620) [0x7fff8fc0eac4]
      11  LSNotificationReceiver::modify(unsigned long, LSNotificationCode const*, unsigned long, LSNotificationCode const*, void const*, void const*) + 660 (LaunchServices + 37200) [0x7fff8fc0e150]
      11  xpc_connection_send_message_with_reply_sync + 200 (libxpc.dylib + 32221) [0x7fff9160eddd]
      11  semaphore_wait_trap + 10 (libsystem_kernel.dylib + 70938) [0x7fff999d551a]
    *11  semaphore_wait_continue + 0 (kernel + 1357760) [0xffffff800034b7c0]
    Process:         Mail [612]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Task size:       36973 pages
    CPU Time:        0.005s
    Note:            Unresponsive for 266 seconds before sampling
    Note:            1 idle work queue threads omitted
      Thread 0x33fc       DispatchQueue 1     11 samples (1-11)   priority 47
      <frontmost, thread QoS user interactive, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy important>
      11  start + 1 (libdyld.dylib + 13769) [0x7fff963135c9] 1-11
        11  NSApplicationMain + 1832 (AppKit + 13140) [0x7fff8c493354] 1-11
          11  -[NSApplication run] + 594 (AppKit + 551923) [0x7fff8c516bf3] 1-11
            11  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346 (AppKit + 593768) [0x7fff8c520f68] 1-11
              11  _DPSNextEvent + 1828 (AppKit + 597261) [0x7fff8c521d0d] 1-11
                11  _NSHandleCarbonMenuEvent + 277 (AppKit + 1420768) [0x7fff8c5eade0] 1-11
                  11  _HandleMenuSelection2 + 446 (HIToolbox + 614654) [0x7fff8e3bb0fe] 1-11
                    11  MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 268 (HIToolbox + 615119) [0x7fff8e3bb2cf] 1-11
                      11  SetupMenuTracking(MenuSelectData&, unsigned char, Point, double, MenuData*, unsigned int, unsigned short, Rect const*, Rect const*, __CFDictionary const*, unsigned int, Rect const*, __CFString const*) + 3189 (HIToolbox + 469745) [0x7fff8e397af1] 1-11
                        11  InstallEventHandler + 52 (HIToolbox + 39431) [0x7fff8e32ea07] 1-11
                          11  PushEventHandler(EventTargetRec*, int (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*), unsigned char, unsigned long, EventTypeSpec const*, void*, OpaqueEventHandlerRef**) + 458 (HIToolbox + 1601054) [0x7fff8e4abe1e] 1-11
                            11  AddHandlersToIndex(EventTargetRec*, HandlerRec*, unsigned long, EventTypeSpec const*) + 178 (HIToolbox + 27359) [0x7fff8e32badf] 1-11
                              11  TEventTypeIndex::AddTypes(unsigned long, EventTypeSpec const*) + 230 (HIToolbox + 28328) [0x7fff8e32bea8] 1-11
                                11  GlobalRegistryEventRegistered(unsigned int, unsigned int) + 337 (HIToolbox + 29088) [0x7fff8e32c1a0] 1-11
                                  11  HandlerStatusChanged + 204 (HIToolbox + 41140) [0x7fff8e32f0b4] 1-11
                                    11  _LSModifyNotification + 109 (LaunchServices + 39620) [0x7fff8fc0eac4] 1-11
                                      11  LSNotificationReceiver::modify(unsigned long, LSNotificationCode const*, unsigned long, LSNotificationCode const*, void const*, void const*) + 660 (LaunchServices + 37200) [0x7fff8fc0e150] 1-11
                                        11  xpc_connection_send_message_with_reply_sync + 200 (libxpc.dylib + 32221) [0x7fff9160eddd] 1-11
                                          11  semaphore_wait_trap + 10 (libsystem_kernel.dylib + 70938) [0x7fff999d551a] 1-11
                                           *10  semaphore_wait_continue + 0 (kernel + 1357760) [0xffffff800034b7c0] 1-10
      <received importance donation from launchservicesd [74]>
                                           *1   semaphore_wait_continue + 0 (kernel + 1357760) [0xffffff800034b7c0] 11
      Thread 0x3419       DispatchQueue 2     11 samples (1-11)   priority 47
      <frontmost, thread QoS user interactive, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy important>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff962b9a6a] 1-11
        11  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff999db232] 1-11
         *10  ??? (kernel + 5989984) [0xffffff80007b6660] 1-10
      <received importance donation from launchservicesd [74]>
         *1   ??? (kernel + 5989984) [0xffffff80007b6660] 11
      Thread 0x3457       DispatchQueue 510   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 646 (Mail + 643971) [0x7fff917fd383] 1-11
                                    11  -[MFLibraryIMAPStore _fetchForCheckingNewMail:] + 473 (Mail + 1040285) [0x7fff9185df9d] 1-11
                                      11  -[IMAPMailboxSyncEngine _goWithMessages:] + 2498 (IMAP + 309552) [0x7fff97418930] 1-11
                                        11  -[IMAPGateway yield] + 78 (IMAP + 210685) [0x7fff974006fd] 1-11
                                          11  -[IMAPConnectionPool yieldGateway:] + 59 (IMAP + 170228) [0x7fff973f68f4] 1-11
                                            11  -[NSRecursiveLock lock] + 22 (Foundation + 60172) [0x7fff94b7fb0c] 1-11
                                              11  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff999da166] 1-11
                                               *10  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-10
      <received importance donation from launchservicesd [74]>
                                               *1   psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 11
      Thread 0x341b       DispatchQueue 525   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 646 (Mail + 643971) [0x7fff917fd383] 1-11
                                    11  -[MFLibraryIMAPStore _fetchForCheckingNewMail:] + 473 (Mail + 1040285) [0x7fff9185df9d] 1-11
                                      11  -[IMAPMailboxSyncEngine _goWithMessages:] + 2498 (IMAP + 309552) [0x7fff97418930] 1-11
                                        11  -[IMAPGateway yield] + 78 (IMAP + 210685) [0x7fff974006fd] 1-11
                                          11  -[IMAPConnectionPool yieldGateway:] + 59 (IMAP + 170228) [0x7fff973f68f4] 1-11
                                            11  -[NSRecursiveLock lock] + 22 (Foundation + 60172) [0x7fff94b7fb0c] 1-11
                                              11  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff999da166] 1-11
                                               *10  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-10
      <received importance donation from launchservicesd [74]>
                                               *1   psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 11
      Thread 0x3487       DispatchQueue 538   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 646 (Mail + 643971) [0x7fff917fd383] 1-11
                                    11  -[MFLibraryIMAPStore _fetchForCheckingNewMail:] + 473 (Mail + 1040285) [0x7fff9185df9d] 1-11
                                      11  -[IMAPMailboxSyncEngine _goWithMessages:] + 2498 (IMAP + 309552) [0x7fff97418930] 1-11
                                        11  -[IMAPGateway yield] + 78 (IMAP + 210685) [0x7fff974006fd] 1-11
                                          11  -[IMAPConnectionPool yieldGateway:] + 59 (IMAP + 170228) [0x7fff973f68f4] 1-11
                                            11  -[NSRecursiveLock lock] + 22 (Foundation + 60172) [0x7fff94b7fb0c] 1-11
                                              11  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff999da166] 1-11
                                               *10  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-10
      <received importance donation from launchservicesd [74]>
                                               *1   psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 11
      Thread 0x348d       DispatchQueue 556   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 646 (Mail + 643971) [0x7fff917fd383] 1-11
                                    11  -[MFLibraryIMAPStore _fetchForCheckingNewMail:] + 473 (Mail + 1040285) [0x7fff9185df9d] 1-11
                                      11  -[IMAPMailboxSyncEngine _goWithMessages:] + 2498 (IMAP + 309552) [0x7fff97418930] 1-11
                                        11  -[IMAPGateway yield] + 78 (IMAP + 210685) [0x7fff974006fd] 1-11
                                          11  -[IMAPConnectionPool yieldGateway:] + 59 (IMAP + 170228) [0x7fff973f68f4] 1-11
                                            11  -[NSRecursiveLock lock] + 22 (Foundation + 60172) [0x7fff94b7fb0c] 1-11
                                              11  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff999da166] 1-11
                                               *10  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-10
      <received importance donation from launchservicesd [74]>
                                               *1   psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 11
      Thread 0x348e       DispatchQueue 558   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 646 (Mail + 643971) [0x7fff917fd383] 1-11
                                    11  -[MFLibraryIMAPStore _fetchForCheckingNewMail:] + 473 (Mail + 1040285) [0x7fff9185df9d] 1-11
                                      11  -[IMAPMailboxSyncEngine _goWithMessages:] + 2498 (IMAP + 309552) [0x7fff97418930] 1-11
                                        11  -[IMAPGateway yield] + 78 (IMAP + 210685) [0x7fff974006fd] 1-11
                                          11  -[IMAPConnectionPool yieldGateway:] + 59 (IMAP + 170228) [0x7fff973f68f4] 1-11
                                            11  -[NSRecursiveLock lock] + 22 (Foundation + 60172) [0x7fff94b7fb0c] 1-11
                                              11  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff999da166] 1-11
                                               *10  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-10
      <received importance donation from launchservicesd [74]>
                                               *1   psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 11
      Thread 0x341a       DispatchQueue 559   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 646 (Mail + 643971) [0x7fff917fd383] 1-11
                                    11  -[MFLibraryIMAPStore _fetchForCheckingNewMail:] + 473 (Mail + 1040285) [0x7fff9185df9d] 1-11
                                      11  -[IMAPMailboxSyncEngine _goWithMessages:] + 2498 (IMAP + 309552) [0x7fff97418930] 1-11
                                        11  -[IMAPGateway yield] + 78 (IMAP + 210685) [0x7fff974006fd] 1-11
                                          11  -[IMAPConnectionPool yieldGateway:] + 59 (IMAP + 170228) [0x7fff973f68f4] 1-11
                                            11  -[NSRecursiveLock lock] + 22 (Foundation + 60172) [0x7fff94b7fb0c] 1-11
                                              11  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff999da166] 1-11
                                               *10  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-10
      <received importance donation from launchservicesd [74]>
                                               *1   psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 11
      Thread 0x3493       DispatchQueue 622   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 646 (Mail + 643971) [0x7fff917fd383] 1-11
                                    11  -[MFLibraryIMAPStore _fetchForCheckingNewMail:] + 473 (Mail + 1040285) [0x7fff9185df9d] 1-11
                                      11  -[IMAPMailboxSyncEngine _goWithMessages:] + 2498 (IMAP + 309552) [0x7fff97418930] 1-11
                                        11  -[IMAPGateway yield] + 78 (IMAP + 210685) [0x7fff974006fd] 1-11
                                          11  -[IMAPConnectionPool yieldGateway:] + 59 (IMAP + 170228) [0x7fff973f68f4] 1-11
                                            11  -[NSRecursiveLock lock] + 22 (Foundation + 60172) [0x7fff94b7fb0c] 1-11
                                              11  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff999da166] 1-11
                                               *10  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-10
      <received importance donation from launchservicesd [74]>
                                               *1   psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 11
      Thread 0x3496       DispatchQueue 626   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 646 (Mail + 643971) [0x7fff917fd383] 1-11
                                    11  -[MFLibraryIMAPStore _fetchForCheckingNewMail:] + 473 (Mail + 1040285) [0x7fff9185df9d] 1-11
                                      11  -[IMAPMailboxSyncEngine _goWithMessages:] + 2498 (IMAP + 309552) [0x7fff97418930] 1-11
                                        11  -[IMAPGateway yield] + 78 (IMAP + 210685) [0x7fff974006fd] 1-11
                                          11  -[IMAPConnectionPool yieldGateway:] + 59 (IMAP + 170228) [0x7fff973f68f4] 1-11
                                            11  -[NSRecursiveLock lock] + 22 (Foundation + 60172) [0x7fff94b7fb0c] 1-11
                                              11  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff999da166] 1-11
                                               *10  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-10
      <received importance donation from launchservicesd [74]>
                                               *1   psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 11
      Thread 0x3499       DispatchQueue 636   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 646 (Mail + 643971) [0x7fff917fd383] 1-11
                                    11  -[MFLibraryIMAPStore _fetchForCheckingNewMail:] + 79 (Mail + 1039891) [0x7fff9185de13] 1-11
                                      11  -[MFLibraryIMAPStore _gatewayCreateIfNeeded:options:] + 173 (Mail + 1088505) [0x7fff91869bf9] 1-11
                                        11  -[MFIMAPAccount gatewayForMailbox:options:] + 122 (Mail + 629017) [0x7fff917f9919] 1-11
                                          11  -[MFIMAPAccount _gatewayForMailbox:name:options:] + 303 (Mail + 630247) [0x7fff917f9de7] 1-11
                                            11  -[MFIMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 214 (Mail + 631623) [0x7fff917fa347] 1-11
                                              11  -[MFIMAPAccount _recoverFromConnectionlessStateHighPriority:] + 133 (Mail + 632495) [0x7fff917fa6af] 1-11
                                                11  -[MFIMAPAccount connectAndAuthenticate:] + 1137 (Mail + 627179) [0x7fff917f91eb] 1-11
                                                  11  -[IMAPConnection authenticate] + 65 (IMAP + 121625) [0x7fff973eab19] 1-11
                                                    11  -[MCConnection authenticate] + 493 (MailCore + 107542) [0x7fff9565d416] 1-11
                                                      11  -[MCConnection _authenticateWithAuthenticationMechanisms:allowPlainText:] + 805 (MailCore + 110268) [0x7fff9565debc] 1-11
                                                        11  -[MCConnection connectDiscoveringBestSettings:] + 1118 (MailCore + 102732) [0x7fff9565c14c] 1-11
                                                          11  -[MCSocket connectToHost:withPort:isBackground:] + 866 (MailCore + 702596) [0x7fff956ee884] 1-11
                                                            11  CFReadStreamOpen + 95 (CoreFoundation + 735039) [0x7fff8af1d73f] 1-11
                                                              11  _CFStreamOpen + 145 (CoreFoundation + 364353) [0x7fff8aec2f41] 1-11
                                                                11  SocketStream::open(void const*, CFStreamError*, unsigned char*) + 382 (CFNetwork + 142452) [0x7fff8d034c74] 1-11
                                                                  11  SocketStream::startLookupForOpen_NoLock() + 976 (CFNetwork + 143798) [0x7fff8d0351b6] 1-11
                                                                    11  SocketStream::startTCPConnection_Host(__CFHost*, __CFNumber const*) + 882 (CFNetwork + 144804) [0x7fff8d0355a4] 1-11
                                                                      11  SocketStream::startTCPConnection(unsigned char) + 2558 (CFNetwork + 147464) [0x7fff8d036008] 1-11
                                                                        11  tcp_connection_set_proxies + 82 (libsystem_network.dylib + 25991) [0x7fff92ff5587] 1-11
                                                                          11  _dispatch_barrier_sync_f_slow + 597 (libdispatch.dylib + 46423) [0x7fff962c0557] 1-11
                                                                            11  semaphore_wait_trap + 10 (libsystem_kernel.dylib + 70938) [0x7fff999d551a] 1-11
                                                                             *10  semaphore_wait_continue + 0 (kernel + 1357760) [0xffffff800034b7c0] 1-10
      <received importance donation from launchservicesd [74]>
                                                                             *1   semaphore_wait_continue + 0 (kernel + 1357760) [0xffffff800034b7c0] 11
      Thread 0x349b       DispatchQueue 637   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 646 (Mail + 643971) [0x7fff917fd383] 1-11
                                    11  -[MFLibraryIMAPStore _fetchForCheckingNewMail:] + 473 (Mail + 1040285) [0x7fff9185df9d] 1-11
                                      11  -[IMAPMailboxSyncEngine _goWithMessages:] + 2498 (IMAP + 309552) [0x7fff97418930] 1-11
                                        11  -[IMAPGateway yield] + 78 (IMAP + 210685) [0x7fff974006fd] 1-11
                                          11  -[IMAPConnectionPool yieldGateway:] + 59 (IMAP + 170228) [0x7fff973f68f4] 1-11
                                            11  -[NSRecursiveLock lock] + 22 (Foundation + 60172) [0x7fff94b7fb0c] 1-11
                                              11  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff999da166] 1-11
                                               *10  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-10
      <received importance donation from launchservicesd [74]>
                                               *1   psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 11
      Thread 0x3456       DispatchQueue 639   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 164 (Mail + 643489) [0x7fff917fd1a1] 1-11
                                    11  -[MFIMAPAccount refreshMailboxListingRootedAtMailbox:] + 290 (Mail + 667665) [0x7fff91803011] 1-11
                                      11  -[MFIMAPAccount _listingForMailbox:listAllChildren:highPriority:] + 151 (Mail + 652943) [0x7fff917ff68f] 1-11
                                        11  -[MFIMAPAccount _listingForMailbox:listAllChildren:onlySubscribed:highPriority:] + 153 (Mail + 648816) [0x7fff917fe670] 1-11
                                          11  -[MFIMAPAccount gatewayForMailbox:options:] + 122 (Mail + 629017) [0x7fff917f9919] 1-11
                                            11  -[MFIMAPAccount _gatewayForMailbox:name:options:] + 303 (Mail + 630247) [0x7fff917f9de7] 1-11
                                              11  -[MFIMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 507 (Mail + 631916) [0x7fff917fa46c] 1-11
                                                11  -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 393 (IMAP + 164562) [0x7fff973f52d2] 1-11
                                                  11  -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 457 (IMAP + 177053) [0x7fff973f839d] 1-11
                                                    11  -[MFIMAPAccount connectAndAuthenticate:] + 1037 (Mail + 627079) [0x7fff917f9187] 1-11
                                                      11  -[MCConnection connectDiscoveringBestSettings:] + 1118 (MailCore + 102732) [0x7fff9565c14c] 1-11
                                                        11  -[MCSocket connectToHost:withPort:isBackground:] + 866 (MailCore + 702596) [0x7fff956ee884] 1-11
                                                          11  CFReadStreamOpen + 95 (CoreFoundation + 735039) [0x7fff8af1d73f] 1-11
                                                            11  _CFStreamOpen + 145 (CoreFoundation + 364353) [0x7fff8aec2f41] 1-11
                                                              11  SocketStream::open(void const*, CFStreamError*, unsigned char*) + 382 (CFNetwork + 142452) [0x7fff8d034c74] 1-11
                                                                11  SocketStream::startLookupForOpen_NoLock() + 976 (CFNetwork + 143798) [0x7fff8d0351b6] 1-11
                                                                  11  SocketStream::startTCPConnection_Host(__CFHost*, __CFNumber const*) + 882 (CFNetwork + 144804) [0x7fff8d0355a4] 1-11
                                                                    11  SocketStream::startTCPConnection(unsigned char) + 2558 (CFNetwork + 147464) [0x7fff8d036008] 1-11
                                                                      11  tcp_connection_set_proxies + 82 (libsystem_network.dylib + 25991) [0x7fff92ff5587] 1-11
                                                                        11  _dispatch_barrier_sync_f_slow + 597 (libdispatch.dylib + 46423) [0x7fff962c0557] 1-11
                                                                          11  semaphore_wait_trap + 10 (libsystem_kernel.dylib + 70938) [0x7fff999d551a] 1-11
                                                                           *10  semaphore_wait_continue + 0 (kernel + 1357760) [0xffffff800034b7c0] 1-10
      <received importance donation from launchservicesd [74]>
                                                                           *1   semaphore_wait_continue + 0 (kernel + 1357760) [0xffffff800034b7c0] 11
      Thread 0x349c       DispatchQueue 655   11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount fetchSynchronouslyIsAuto:] + 646 (Mail + 643971) [0x7fff917fd383] 1-11
                                    11  -[MFLibraryIMAPStore _fetchForCheckingNewMail:] + 473 (Mail + 1040285) [0x7fff9185df9d] 1-11
                                      11  -[IMAPMailboxSyncEngine _goWithMessages:] + 2498 (IMAP + 309552) [0x7fff97418930] 1-11
                                        11  -[IMAPGateway yield] + 78 (IMAP + 210685) [0x7fff974006fd] 1-11
                                          11  -[IMAPConnectionPool yieldGateway:] + 59 (IMAP + 170228) [0x7fff973f68f4] 1-11
                                            11  -[NSRecursiveLock lock] + 22 (Foundation + 60172) [0x7fff94b7fb0c] 1-11
                                              11  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff999da166] 1-11
                                               *10  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-10
      <received importance donation from launchservicesd [74]>
                                               *1   psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 11
      Thread 0x34a9       DispatchQueue 1670  11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFLibraryIMAPStore _openSynchronouslyUpdatingMetadata:withOptions:] + 505 (Mail + 1037613) [0x7fff9185d52d] 1-11
                                    11  -[IMAPMailboxSyncEngine _goWithMessages:] + 2498 (IMAP + 309552) [0x7fff97418930] 1-11
                                      11  -[IMAPGateway yield] + 78 (IMAP + 210685) [0x7fff974006fd] 1-11
                                        11  -[IMAPConnectionPool yieldGateway:] + 59 (IMAP + 170228) [0x7fff973f68f4] 1-11
                                          11  -[NSRecursiveLock lock] + 22 (Foundation + 60172) [0x7fff94b7fb0c] 1-11
                                            11  __psynch_mutexwait + 10 (libsystem_kernel.dylib + 90470) [0x7fff999da166] 1-11
                                             *10  psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 1-10
      <received importance donation from launchservicesd [74]>
                                             *1   psynch_mtxcontinue + 0 (pthread + 21926) [0xffffff7f80de15a6] 11
      Thread 0x3485       DispatchQueue 3869  11 samples (1-11)   priority 20
      <frontmost, thread QoS utility, boosted, received importance donation from WindowServer [174], received importance donation from networkd [163], IO policy standard>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff953f140d] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff953f3637] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff962c7fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff962b96b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff962bbecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff962ba365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff962b6c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 365891) [0x7fff94bca543] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 367212) [0x7fff94bcaa6c] 1-11
                        11  -[_MCInvocationOperation main] + 426 (MailCore + 235373) [0x7fff9567c76d] 1-11
                          11  -[MCThrowingInvocationOperation main] + 48 (MailCore + 727572) [0x7fff956f4a14] 1-11
                            11  -[MCMonitoredInvocation invoke] + 242 (MailCore + 555018) [0x7fff956ca80a] 1-11
                              11  -[NSInvocation invoke] + 290 (CoreFoundation + 243218) [0x7fff8aea5612] 1-11
                                11  __invoking___ + 140 (CoreFoundation + 243644) [0x7fff8aea57bc] 1-11
                                  11  -[MFIMAPAccount _s

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Mail keeps crashing 10.10.1

    Since I have upgraded to 10.10.1 i have been having problems with Mail
    Often when I try and open any other folders when coming from inbox the app crashes and I have experienced this over the last coupe of weeks.
    Now I cannot open mail and when I right click on the icon in the toolbar the only option is to Force quit !!
    I would appreciate any help.
    Full copy of problem report below
    Date/Time:       2014-12-02 12:38:14 +0000
    OS Version:      10.10.1 (Build 14B25)
    Architecture:    x86_64h
    Report Version:  21
    Command:         Mail
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Version:         8.1 (1993)
    Build Version:   1
    Project Name:    Mail
    Source Version:  1993000000000000
    Parent:          launchd [1]
    PID:             1130
    Event:           hang
    Duration:        1.00s (process was unresponsive for 544 seconds before sampling)
    Steps:           11 (100ms sampling interval)
    Hardware model:  MacBookPro11,1
    Active cpus:     4
    Fan speed:       1302 rpm
    Timeline format: stacks are sorted chronologically
    Use -i and -heavy to re-report with count sorting
    Heaviest stack for the main thread of the target process:
      11  start + 1 (libdyld.dylib + 13769) [0x7fff850615c9]
      11  NSApplicationMain + 1832 (AppKit + 13012) [0x7fff8c1cb2d4]
      11  -[NSApplication run] + 594 (AppKit + 97827) [0x7fff8c1dfe23]
      11  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 147072) [0x7fff8c1ebe80]
      11  _DPSNextEvent + 964 (AppKit + 149201) [0x7fff8c1ec6d1]
      11  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 188411) [0x7fff86339ffb]
      11  ReceiveNextEventCommon + 179 (HIToolbox + 188606) [0x7fff8633a0be]
      11  RunCurrentEventLoopInMode + 235 (HIToolbox + 189503) [0x7fff8633a43f]
      11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838]
      11  __CFRunLoopRun + 872 (CoreFoundation + 466408) [0x7fff850edde8]
      11  __CFRunLoopDoObservers + 368 (CoreFoundation + 523488) [0x7fff850fbce0]
      11  __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23 (CoreFoundation + 523655) [0x7fff850fbd87]
      11  postQueueNotifications + 782 (Foundation + 414900) [0x7fff846c64b4]
      11  _CFXNotificationPost + 3140 (CoreFoundation + 65972) [0x7fff8508c1b4]
      11  __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12 (CoreFoundation + 1174716) [0x7fff8519acbc]
      11  ??? (Mail + 253094) [0x10b121ca6]
      11  ??? (Mail + 2968532) [0x10b3b8bd4]
      11  ??? (Mail + 2233282) [0x10b3053c2]
      11  ??? (Mail + 2235619) [0x10b305ce3]
      11  -[MFMailbox storeCreateIfNeeded:] + 67 (Mail + 1446857) [0x7fff928c53c9]
      11  -[MFMailAccount storeForMailbox:createIfNeeded:] + 508 (Mail + 1346569) [0x7fff928acc09]
      11  +[NSThread sleepForTimeInterval:] + 154 (Foundation + 598542) [0x7fff846f320e]
      11  __semwait_signal + 10 (libsystem_kernel.dylib + 91270) [0x7fff90d9e486]
    *11  semaphore_wait_continue + 0 (kernel + 1415472) [0xffffff8000359930]
    Process:         Mail [1130]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Task size:       16191 pages
    Note:            Unresponsive for 544 seconds before sampling
      Thread 0x29a84      DispatchQueue 1     11 samples (1-11)   priority 46
      <thread QoS user interactive, boosted, IO policy important>
      11  start + 1 (libdyld.dylib + 13769) [0x7fff850615c9] 1-11
        11  NSApplicationMain + 1832 (AppKit + 13012) [0x7fff8c1cb2d4] 1-11
          11  -[NSApplication run] + 594 (AppKit + 97827) [0x7fff8c1dfe23] 1-11
            11  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 147072) [0x7fff8c1ebe80] 1-11
              11  _DPSNextEvent + 964 (AppKit + 149201) [0x7fff8c1ec6d1] 1-11
                11  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 188411) [0x7fff86339ffb] 1-11
                  11  ReceiveNextEventCommon + 179 (HIToolbox + 188606) [0x7fff8633a0be] 1-11
                    11  RunCurrentEventLoopInMode + 235 (HIToolbox + 189503) [0x7fff8633a43f] 1-11
                      11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
                        11  __CFRunLoopRun + 872 (CoreFoundation + 466408) [0x7fff850edde8] 1-11
                          11  __CFRunLoopDoObservers + 368 (CoreFoundation + 523488) [0x7fff850fbce0] 1-11
                            11  __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23 (CoreFoundation + 523655) [0x7fff850fbd87] 1-11
                              11  postQueueNotifications + 782 (Foundation + 414900) [0x7fff846c64b4] 1-11
                                11  _CFXNotificationPost + 3140 (CoreFoundation + 65972) [0x7fff8508c1b4] 1-11
                                  11  __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12 (CoreFoundation + 1174716) [0x7fff8519acbc] 1-11
                                    11  ??? (Mail + 253094) [0x10b121ca6] 1-11
                                      11  ??? (Mail + 2968532) [0x10b3b8bd4] 1-11
                                        11  ??? (Mail + 2233282) [0x10b3053c2] 1-11
                                          11  ??? (Mail + 2235619) [0x10b305ce3] 1-11
                                            11  -[MFMailbox storeCreateIfNeeded:] + 67 (Mail + 1446857) [0x7fff928c53c9] 1-11
                                              11  -[MFMailAccount storeForMailbox:createIfNeeded:] + 508 (Mail + 1346569) [0x7fff928acc09] 1-11
                                                11  +[NSThread sleepForTimeInterval:] + 154 (Foundation + 598542) [0x7fff846f320e] 1-11
                                                  11  __semwait_signal + 10 (libsystem_kernel.dylib + 91270) [0x7fff90d9e486] 1-11
                                                   *11  semaphore_wait_continue + 0 (kernel + 1415472) [0xffffff8000359930] 1-11
      Thread 0x29ab1      DispatchQueue 2     11 samples (1-11)   priority 46
      <thread QoS user interactive, boosted, IO policy important>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff930c7a6a] 1-11
        11  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff90d9f22e] 1-11
         *11  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-11
      Thread 0x29b24      DispatchQueue 356   11 samples (1-11)   priority 37
      <thread QoS user initiated, boosted, IO policy important>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5281) [0x7fff8fc4e4a1] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 14027) [0x7fff8fc506cb] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff930d5fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff930c76b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff930c9ecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff930c8365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff930c4c13] 1-11
                    11  __NSOQSchedule_f + 184 (Foundation + 33187) [0x7fff846691a3] 1-11
                      11  -[__NSOperationInternal _start:] + 653 (Foundation + 34204) [0x7fff8466959c] 1-11
                        11  -[NSBlockOperation main] + 97 (Foundation + 170245) [0x7fff8468a905] 1-11
                          11  __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7 (Foundation + 1299176) [0x7fff8479e2e8] 1-11
                            11  ??? (Mail + 993286) [0x10b1d6806] 1-11
                              11  -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 131 (Foundation + 203440) [0x7fff84692ab0] 1-11
                                11  -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 823 (Foundation + 204585) [0x7fff84692f29] 1-11
                                  11  -[NSCondition wait] + 237 (Foundation + 419977) [0x7fff846c7889] 1-11
                                    11  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90418) [0x7fff90d9e132] 1-11
                                     *11  psynch_cvcontinue + 0 (pthread + 27077) [0xffffff7f80fb09c5] 1-11
      Thread 0x29ab2      DispatchQueue 670   11 samples (1-11)   priority 46
      <thread QoS user interactive, boosted, IO policy important>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5281) [0x7fff8fc4e4a1] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 14027) [0x7fff8fc506cb] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff930d5fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff930c76b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff930c9ecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff930c8365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff930c4c13] 1-11
                    11  _dispatch_call_block_and_release + 12 (libdispatch.dylib + 25379) [0x7fff930c9323] 1-11
                      11  __doQueryResultsCallback_block_invoke + 72 (Metadata + 55215) [0x7fff899987af] 1-11
                        11  _MDQueryCallback + 329 (Metadata + 55582) [0x7fff8999891e] 1-11
                          11  tryProcessUpdates + 369 (Metadata + 32806) [0x7fff89993026] 1-11
                            11  processUpdatesLocked + 90 (Metadata + 57645) [0x7fff8999912d] 1-11
                              11  _pushNotification + 687 (Metadata + 69238) [0x7fff8999be76] 1-11
                                11  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90418) [0x7fff90d9e132] 1-11
                                 *11  psynch_cvcontinue + 0 (pthread + 27077) [0xffffff7f80fb09c5] 1-11
      Thread 0x29b27      DispatchQueue 676   11 samples (1-11)   priority 46
      <thread QoS user interactive, boosted, IO policy important>
      11  start_wqthread + 13 (libsystem_pthread.dylib + 5281) [0x7fff8fc4e4a1] 1-11
        11  _pthread_wqthread + 729 (libsystem_pthread.dylib + 14027) [0x7fff8fc506cb] 1-11
          11  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff930d5fe4] 1-11
            11  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff930c76b7] 1-11
              11  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff930c9ecc] 1-11
                11  _dispatch_queue_drain + 1100 (libdispatch.dylib + 21349) [0x7fff930c8365] 1-11
                  11  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff930c4c13] 1-11
                    11  _dispatch_call_block_and_release + 12 (libdispatch.dylib + 25379) [0x7fff930c9323] 1-11
                      11  __doQueryResultsCallback_block_invoke + 72 (Metadata + 55215) [0x7fff899987af] 1-11
                        11  _MDQueryCallback + 329 (Metadata + 55582) [0x7fff8999891e] 1-11
                          11  tryProcessUpdates + 369 (Metadata + 32806) [0x7fff89993026] 1-11
                            11  processUpdatesLocked + 90 (Metadata + 57645) [0x7fff8999912d] 1-11
                              11  _pushNotification + 687 (Metadata + 69238) [0x7fff8999be76] 1-11
                                11  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90418) [0x7fff90d9e132] 1-11
                                 *11  psynch_cvcontinue + 0 (pthread + 27077) [0xffffff7f80fb09c5] 1-11
      Thread 0x29b14      11 samples (1-11)   priority 63
      <boosted, IO policy important>
      11  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8fc4e4b1] 1-11
        11  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8fc50279] 1-11
          11  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8fc502fc] 1-11
            11  __NSThread__main__ + 1345 (Foundation + 428922) [0x7fff846c9b7a] 1-11
              11  +[NSURLConnection(Loader) _resourceLoadLoop:] + 434 (CFNetwork + 658720) [0x7fff9026fd20] 1-11
                11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
                  11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
                    11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
                      11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
                       *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Thread 0x29b42      11 samples (1-11)   priority 46
      <thread QoS user interactive, boosted, IO policy important>
      11  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8fc4e4b1] 1-11
        11  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8fc50279] 1-11
          11  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8fc502fc] 1-11
            11  __select + 10 (libsystem_kernel.dylib + 91126) [0x7fff90d9e3f6] 1-11
             *11  ??? (kernel + 6154000) [0xffffff80007de710] 1-11
      Binary Images:
             0x10b0e4000 -        0x10b479fff  com.apple.mail 8.1 (1993)              <DC7D598C-884D-3BC3-9D97-F2CB5D1ED551>  /Applications/Mail.app/Contents/MacOS/Mail
          0x7fff84661000 -     0x7fff8498ffff  com.apple.Foundation 6.9 (1151.16)     <18EDD673-A010-3E99-956E-DA594CE1FA80>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8505e000 -     0x7fff85061fff  libdyld.dylib (353.2.1)                <19FAF435-C165-3374-9DEF-D7BBA7D61DB6>  /usr/lib/system/libdyld.dylib
          0x7fff8507c000 -     0x7fff85412fff  com.apple.CoreFoundation 6.9 (1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8630c000 -     0x7fff8660efff  com.apple.HIToolbox 2.1.1 (756)        <9DD121B5-B7EB-3C43-8155-61A4417F8E9A>  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8998b000 -     0x7fff89a29fff  com.apple.Metadata 10.7.0 (916.1)      <CD389631-0F23-3A29-B43A-E3FFB5BC9438>  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
          0x7fff8c1c8000 -     0x7fff8cd09fff  com.apple.AppKit 6.9 (1343.16)         <C98DB43F-4245-3E6E-A4EE-37DAEE33E174>  /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8fc4d000 -     0x7fff8fc56fff  libsystem_pthread.dylib (105.1.4)      <26B1897F-0CD3-30F3-B55A-37CB45062D73>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff901cf000 -     0x7fff903d2fff  com.apple.CFNetwork 720.1.1 (720.1.1)  <A82E71B3-2CDB-3840-A476-F2304D896E03>  /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
          0x7fff90d88000 -     0x7fff90da5fff  libsystem_kernel.dylib (2782.1.97)     <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff92764000 -     0x7fff929fafff  com.apple.Mail.framework 8.1 (1993)    <F18BAFE5-CC52-3FBA-BC1A-DDB03243BA17>  /System/Library/PrivateFrameworks/Mail.framework/Versions/A/Mail
          0x7fff930c3000 -     0x7fff930edfff  libdispatch.dylib (442.1.4)            <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff7f80faa000 - 0xffffff7f80fb2fff  com.apple.kec.pthread 1.0 (1)          <DB4D4632-FD2B-3FAE-86D3-3432DCDB7FA9>  /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                     <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         accountsd [230]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1058 pages
      Thread 0x7eb        DispatchQueue 1     11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  start + 1 (libdyld.dylib + 13769) [0x7fff850615c9] 1-11
        11  ??? (accountsd + 2741) [0x10e9b0ab5] 1-11
          11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
            11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
              11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
                11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
                 *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Thread 0x7ed        DispatchQueue 2     11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff930c7a6a] 1-11
        11  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff90d9f22e] 1-11
         *11  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-11
      Binary Images:
             0x10e9b0000 -        0x10e9b0fff  accountsd (504.6)                      <DE87CCB6-2060-3267-BD00-1D21E685D3E2>  /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff8505e000 -     0x7fff85061fff  libdyld.dylib (353.2.1)                <19FAF435-C165-3374-9DEF-D7BBA7D61DB6>  /usr/lib/system/libdyld.dylib
          0x7fff8507c000 -     0x7fff85412fff  com.apple.CoreFoundation 6.9 (1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90d88000 -     0x7fff90da5fff  libsystem_kernel.dylib (2782.1.97)     <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff930c3000 -     0x7fff930edfff  libdispatch.dylib (442.1.4)            <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                     <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         AirPlayUIAgent [405]
    Path:            /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       932 pages
      Thread 0x1c6b       DispatchQueue 1     11 samples (1-11)   priority 46
      <thread QoS user interactive, IO policy important>
      11  start + 1 (libdyld.dylib + 13769) [0x7fff850615c9] 1-11
        11  NSApplicationMain + 1832 (AppKit + 13012) [0x7fff8c1cb2d4] 1-11
          11  -[NSApplication run] + 594 (AppKit + 97827) [0x7fff8c1dfe23] 1-11
            11  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 147072) [0x7fff8c1ebe80] 1-11
              11  _DPSNextEvent + 964 (AppKit + 149201) [0x7fff8c1ec6d1] 1-11
                11  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 188411) [0x7fff86339ffb] 1-11
                  11  ReceiveNextEventCommon + 431 (HIToolbox + 188858) [0x7fff8633a1ba] 1-11
                    11  RunCurrentEventLoopInMode + 235 (HIToolbox + 189503) [0x7fff8633a43f] 1-11
                      11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
                        11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
                          11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
                            11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
                             *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Thread 0x1ca4       DispatchQueue 2     11 samples (1-11)   priority 46
      <thread QoS user interactive, IO policy important>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff930c7a6a] 1-11
        11  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff90d9f22e] 1-11
         *11  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-11
      Thread 0x1cc7       11 samples (1-11)   priority 46
      <thread QoS user interactive, IO policy important>
      11  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8fc4e4b1] 1-11
        11  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8fc50279] 1-11
          11  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8fc502fc] 1-11
            11  _NSEventThread + 137 (AppKit + 1603495) [0x7fff8c34f7a7] 1-11
              11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
                11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
                  11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
                    11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
                     *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Binary Images:
             0x10e5b6000 -        0x10e5bbfff  com.apple.AirPlayUIAgent 2.0 (215.10)  <38FBF7F3-C615-39D7-9B36-E7F0A7F62297>  /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
          0x7fff8505e000 -     0x7fff85061fff  libdyld.dylib (353.2.1)                <19FAF435-C165-3374-9DEF-D7BBA7D61DB6>  /usr/lib/system/libdyld.dylib
          0x7fff8507c000 -     0x7fff85412fff  com.apple.CoreFoundation 6.9 (1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8630c000 -     0x7fff8660efff  com.apple.HIToolbox 2.1.1 (756)        <9DD121B5-B7EB-3C43-8155-61A4417F8E9A>  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8c1c8000 -     0x7fff8cd09fff  com.apple.AppKit 6.9 (1343.16)         <C98DB43F-4245-3E6E-A4EE-37DAEE33E174>  /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8fc4d000 -     0x7fff8fc56fff  libsystem_pthread.dylib (105.1.4)      <26B1897F-0CD3-30F3-B55A-37CB45062D73>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff90d88000 -     0x7fff90da5fff  libsystem_kernel.dylib (2782.1.97)     <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff930c3000 -     0x7fff930edfff  libdispatch.dylib (442.1.4)            <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                     <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         airportd [31]
    Path:            /usr/libexec/airportd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2177 pages
      Thread 0x196        DispatchQueue 1     11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  start + 1 (libdyld.dylib + 13769) [0x7fff850615c9] 1-11
        11  ??? (airportd + 235290) [0x10fd3571a] 1-11
          11  -[NSRunLoop(NSRunLoop) run] + 74 (Foundation + 1467487) [0x7fff847c745f] 1-11
            11  -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 (Foundation + 436921) [0x7fff846cbab9] 1-11
              11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
                11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
                  11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
                    11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
                     *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Thread 0x40f        DispatchQueue 2     11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff930c7a6a] 1-11
        11  _dispatch_mgr_invoke + 176 (libdispatch.dylib + 19786) [0x7fff930c7d4a] 1-11
          11  __select_nocancel + 10 (libsystem_kernel.dylib + 91150) [0x7fff90d9e40e] 1-11
           *11  ??? (kernel + 6154000) [0xffffff80007de710] 1-11
      Thread 0x414        11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  __select + 10 (libsystem_kernel.dylib + 91126) [0x7fff90d9e3f6] 1-11
       *11  ??? (kernel + 6154000) [0xffffff80007de710] 1-11
      Binary Images:
             0x10fcfc000 -        0x10fdd8fff  airportd (1001.57.4)                   <1AA1E43B-F07F-3063-A597-F2CD039E19FF>  /usr/libexec/airportd
          0x7fff84661000 -     0x7fff8498ffff  com.apple.Foundation 6.9 (1151.16)     <18EDD673-A010-3E99-956E-DA594CE1FA80>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8505e000 -     0x7fff85061fff  libdyld.dylib (353.2.1)                <19FAF435-C165-3374-9DEF-D7BBA7D61DB6>  /usr/lib/system/libdyld.dylib
          0x7fff8507c000 -     0x7fff85412fff  com.apple.CoreFoundation 6.9 (1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90d88000 -     0x7fff90da5fff  libsystem_kernel.dylib (2782.1.97)     <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff930c3000 -     0x7fff930edfff  libdispatch.dylib (442.1.4)            <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                     <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         amfid [231]
    Path:            /usr/libexec/amfid
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean (allows idle exit)
    Task size:       866 pages
      Thread 0x7f8        DispatchQueue 2     11 samples (1-11)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff930c7a6a] 1-11
        11  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff90d9f22e] 1-11
         *11  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-11
      Thread 0x7f9        DispatchQueue 11    11 samples (1-11)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      11  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91966) [0x7fff90d9e73e] 1-11
       *11  ??? (kernel + 6154000) [0xffffff80007de710] 1-11
      Binary Images:
             0x1017cc000 -        0x1017cdfff  amfid (133.1.1)                    <87C209EC-9AF9-3503-8EAC-FFEFFF608BEA>  /usr/libexec/amfid
          0x7fff90d88000 -     0x7fff90da5fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff930c3000 -     0x7fff930edfff  libdispatch.dylib (442.1.4)        <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         AppleCameraAssistant [290]
    Path:            /Library/CoreMediaIO/*/AppleCamera.plugin/Contents/Resources/AppleCameraAssista nt
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       159 pages
      Thread 0x9e4        DispatchQueue 1     11 samples (1-11)   priority 31
      <thread QoS legacy, IO policy important>
      11  start + 1 (libdyld.dylib + 13769) [0x7fff850615c9] 1-11
        11  ??? (AppleCameraAssistant + 146188) [0x1070deb0c] 1-11
          11  mach_msg_server + 468 (libsystem_kernel.dylib + 69552) [0x7fff90d98fb0] 1-11
            11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
             *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Thread 0x9e9        DispatchQueue 2     11 samples (1-11)   priority 31
      <thread QoS legacy, IO policy important>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff930c7a6a] 1-11
        11  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff90d9f22e] 1-11
         *11  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-11
      Thread 0x9e8        11 samples (1-11)   priority 31
      <thread QoS legacy, IO policy important>
      11  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8fc4e4b1] 1-11
        11  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8fc50279] 1-11
          11  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8fc502fc] 1-11
            11  ??? (AppleCameraAssistant + 146930) [0x1070dedf2] 1-11
              11  CFRunLoopRun + 97 (CoreFoundation + 1212113) [0x7fff851a3ed1] 1-11
                11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
                  11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
                    11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
                      11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
                       *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Thread 0x9ea        11 samples (1-11)   priority 31
      <thread QoS legacy, IO policy important>
      11  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8fc4e4b1] 1-11
        11  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8fc50279] 1-11
          11  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8fc502fc] 1-11
            11  ??? (AppleCameraAssistant + 125217) [0x1070d9921] 1-11
              11  CFRunLoopRun + 97 (CoreFoundation + 1212113) [0x7fff851a3ed1] 1-11
                11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
                  11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
                    11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
                      11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
                       *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Binary Images:
             0x1070bb000 -        0x1070f1fff  AppleCameraAssistant (5.23)            <458F149C-F2B9-3EF1-929F-073593EBEFCD>  /Library/CoreMediaIO/*/AppleCamera.plugin/Contents/Resources/AppleCameraAssista nt
          0x7fff8505e000 -     0x7fff85061fff  libdyld.dylib (353.2.1)                <19FAF435-C165-3374-9DEF-D7BBA7D61DB6>  /usr/lib/system/libdyld.dylib
          0x7fff8507c000 -     0x7fff85412fff  com.apple.CoreFoundation 6.9 (1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8fc4d000 -     0x7fff8fc56fff  libsystem_pthread.dylib (105.1.4)      <26B1897F-0CD3-30F3-B55A-37CB45062D73>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff90d88000 -     0x7fff90da5fff  libsystem_kernel.dylib (2782.1.97)     <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff930c3000 -     0x7fff930edfff  libdispatch.dylib (442.1.4)            <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                     <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         appleeventsd [25]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             55
    Task size:       1058 pages
      Thread 0x5b0        DispatchQueue 2     11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff930c7a6a] 1-11
        11  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff90d9f22e] 1-11
         *11  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-11
      Thread 0x5b1        DispatchQueue 11    11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91966) [0x7fff90d9e73e] 1-11
       *11  ??? (kernel + 6154000) [0xffffff80007de710] 1-11
      Binary Images:
             0x10a3e9000 -        0x10a3e9fff  appleeventsd (681)                 <FB31726D-933F-32CD-BE6B-F8598AA15431>  /System/Library/CoreServices/appleeventsd
          0x7fff90d88000 -     0x7fff90da5fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff930c3000 -     0x7fff930edfff  libdispatch.dylib (442.1.4)        <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                 <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         AppleIDAuthAgent [255]
    Path:            /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       860 pages
      Thread 0x90c        DispatchQueue 2     11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff930c7a6a] 1-11
        11  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff90d9f22e] 1-11
         *11  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-11
      Thread 0x90f        11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91966) [0x7fff90d9e73e] 1-11
       *11  ??? (kernel + 6154000) [0xffffff80007de710] 1-11
      Thread 0x912        11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  semaphore_timedwait_trap + 10 (libsystem_kernel.dylib + 71042) [0x7fff90d99582] 1-11
       *11  semaphore_wait_continue + 0 (kernel + 1415472) [0xffffff8000359930] 1-11
      Thread 0x913        11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
        11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
          11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
           *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Thread 0x915        11 samples (1-11)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      11  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8fc4e4b1] 1-11
        11  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8fc50279] 1-11
          11  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8fc502fc] 1-11
            11  __NSThread__main__ + 1345 (Foundation + 428922) [0x7fff846c9b7a] 1-11
              11  +[NSURLConnection(Loader) _resourceLoadLoop:] + 434 (CFNetwork + 658720) [0x7fff9026fd20] 1-11
                11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
                  11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
                    11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
                      11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
                       *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Binary Images:
             0x10c456000 -        0x10c491fff  AppleIDAuthAgent (640.3)               <CA403638-2865-3463-9027-4EAA46CE4853>  /System/Library/CoreServices/AppleIDAuthAgent
          0x7fff84661000 -     0x7fff8498ffff  com.apple.Foundation 6.9 (1151.16)     <18EDD673-A010-3E99-956E-DA594CE1FA80>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8507c000 -     0x7fff85412fff  com.apple.CoreFoundation 6.9 (1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8fc4d000 -     0x7fff8fc56fff  libsystem_pthread.dylib (105.1.4)      <26B1897F-0CD3-30F3-B55A-37CB45062D73>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff901cf000 -     0x7fff903d2fff  com.apple.CFNetwork 720.1.1 (720.1.1)  <A82E71B3-2CDB-3840-A476-F2304D896E03>  /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
          0x7fff90d88000 -     0x7fff90da5fff  libsystem_kernel.dylib (2782.1.97)     <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff930c3000 -     0x7fff930edfff  libdispatch.dylib (442.1.4)            <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                     <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         AppleSpell [313]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean
    Task size:       3937 pages
      Thread 0xbd5        DispatchQueue 1     11 samples (1-11)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      11  start + 1 (libdyld.dylib + 13769) [0x7fff850615c9] 1-11
        11  ??? (AppleSpell + 7426) [0x109542d02] 1-11
          11  -[NSSpellServer run] + 73 (Foundation + 1671784) [0x7fff847f9268] 1-11
            11  CFRunLoopRun + 97 (CoreFoundation + 1212113) [0x7fff851a3ed1] 1-11
              11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
                11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
                  11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
                    11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
                     *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Thread 0xbd6        DispatchQueue 2     11 samples (1-11)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff930c7a6a] 1-11
        11  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff90d9f22e] 1-11
         *11  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-11
      Binary Images:
             0x109541000 -        0x109624fff  com.apple.AppleSpell 2.2 (274)         <26FB5D53-E9C2-3545-BD8E-CCC39C95073C>  /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff84661000 -     0x7fff8498ffff  com.apple.Foundation 6.9 (1151.16)     <18EDD673-A010-3E99-956E-DA594CE1FA80>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8505e000 -     0x7fff85061fff  libdyld.dylib (353.2.1)                <19FAF435-C165-3374-9DEF-D7BBA7D61DB6>  /usr/lib/system/libdyld.dylib
          0x7fff8507c000 -     0x7fff85412fff  com.apple.CoreFoundation 6.9 (1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff90d88000 -     0x7fff90da5fff  libsystem_kernel.dylib (2782.1.97)     <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff930c3000 -     0x7fff930edfff  libdispatch.dylib (442.1.4)            <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                     <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         apsd [55]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       1962 pages
      Thread 0x1ae        DispatchQueue 1     11 samples (1-11)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      11  start + 1 (libdyld.dylib + 13769) [0x7fff850615c9] 1-11
        11  ??? (apsd + 365235) [0x1052f82b3] 1-11
          11  -[NSRunLoop(NSRunLoop) run] + 74 (Foundation + 1467487) [0x7fff847c745f] 1-11
            11  -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 (Foundation + 436921) [0x7fff846cbab9] 1-11
              11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
                11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
                  11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
                    11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
                     *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Thread 0x39a        DispatchQueue 2     11 samples (1-11)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff930c7a6a] 1-11
        11  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff90d9f22e] 1-11
         *11  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-11
      Thread 0x5ae        11 samples (1-11)   priority 63
      <timers coalesced, IO policy important>
      11  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8fc4e4b1] 1-11
        11  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8fc50279] 1-11
          11  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8fc502fc] 1-11
            11  __NSThread__main__ + 1345 (Foundation + 428922) [0x7fff846c9b7a] 1-11
              11  +[NSURLConnection(Loader) _resourceLoadLoop:] + 434 (CFNetwork + 658720) [0x7fff9026fd20] 1-11
                11  CFRunLoopRunSpecific + 296 (CoreFoundation + 464952) [0x7fff850ed838] 1-11
                  11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
                    11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
                      11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
                       *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Thread 0x1adb       11 samples (1-11)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      11  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8fc4e4b1] 1-11
        11  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8fc50279] 1-11
          11  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8fc502fc] 1-11
            11  __select + 10 (libsystem_kernel.dylib + 91126) [0x7fff90d9e3f6] 1-11
             *11  ??? (kernel + 6154000) [0xffffff80007de710] 1-11
      Binary Images:
             0x10529f000 -        0x105363fff  apsd (275)                             <AF722EDC-11CC-33D2-A955-BDD06804DE73>  /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff84661000 -     0x7fff8498ffff  com.apple.Foundation 6.9 (1151.16)     <18EDD673-A010-3E99-956E-DA594CE1FA80>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8505e000 -     0x7fff85061fff  libdyld.dylib (353.2.1)                <19FAF435-C165-3374-9DEF-D7BBA7D61DB6>  /usr/lib/system/libdyld.dylib
          0x7fff8507c000 -     0x7fff85412fff  com.apple.CoreFoundation 6.9 (1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8fc4d000 -     0x7fff8fc56fff  libsystem_pthread.dylib (105.1.4)      <26B1897F-0CD3-30F3-B55A-37CB45062D73>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff901cf000 -     0x7fff903d2fff  com.apple.CFNetwork 720.1.1 (720.1.1)  <A82E71B3-2CDB-3840-A476-F2304D896E03>  /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
          0x7fff90d88000 -     0x7fff90da5fff  libsystem_kernel.dylib (2782.1.97)     <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff930c3000 -     0x7fff930edfff  libdispatch.dylib (442.1.4)            <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.1.97)                     <89E10306-BC78-3A3B-955C-7C4922577E61>  /System/Library/Kernels/kernel
    Process:         ARDAgent [245]
    Path:            /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Task size:       334 pages
      Thread 0x877        DispatchQueue 1     11 samples (1-11)   priority 31
      <thread QoS legacy, IO policy standard>
      11  __CFRunLoopRun + 1371 (CoreFoundation + 466907) [0x7fff850edfdb] 1-11
        11  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469780) [0x7fff850eeb14] 1-11
          11  mach_msg_trap + 10 (libsystem_kernel.dylib + 70958) [0x7fff90d9952e] 1-11
           *11  ipc_mqueue_receive_continue + 0 (kernel + 1209328) [0xffffff80003273f0] 1-11
      Thread 0x882        DispatchQueue 2     11 samples (1-11)   priority 31
      <thread QoS legacy, IO policy standard>
      11  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff930c7a6a] 1-11
        11  kevent64 + 10 (libsystem_kernel.dylib + 94766) [0x7fff90d9f22e] 1-11
         *11  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-11
      Thread 0x886        11 samples (1-11)   priority 31
      <thread QoS legacy, IO policy standard>
      11  thread_start + 13 (libsystem_pthread.dylib + 5297) [0x7fff8fc4e4b1] 1-11
        11  _pthread_start + 176 (libsystem_pthread.dylib + 12921) [0x7fff8fc50279] 1-11
          11  _pthread_body + 131 (libsystem_pthread.dylib + 13052) [0x7fff8fc502fc] 1-11
            11  kevent + 10 (libsystem_kernel.dylib + 94742) [0x7fff90d9f216] 1-11
             *11  ??? (kernel + 6000416) [0xffffff80007b8f20] 1-11
      Thread 0x887        11 samples (1-11)   priority 97
      <IO policy standard>
      11  __select + 10 (libsystem_kernel.dylib + 91126) [0x7fff90d9e3f6] 1-11
       *11  ??? (kernel + 6154000) [0xffffff80007de710] 1-11
      Binary Images:
             0x104a12000 -        0x104ad3fff  com.apple.RemoteDesktopAgent 3.8 (3.8) <78560EA2-4922-3770-A2C7-F75C24EC8E67>  /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent
          0x7fff8

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

Maybe you are looking for