Terminal.app, emacs, and colors.

newbie here.
i'm playing around with customizing the (darwinports) emacs' font lock mode in the terminal. i've noticed that not all of the colors display exactly as i expect them. for example, i type "brown" and the result looks just like what i would get if i had typed "red." i assume that the closest match is being displayed from a limited palette.
is this a problem with Terminal.app or is this a problem with the version of emacs i chose to use? is this a limitation i can correct?
macbook   Mac OS X (10.4.6)  

xterm-frobs.el and xterm-256color.el look like possible solutions.
according to the comment for xterm-256color.el, 21.3 and later should support 256 color terminals. i'm running 21.4.1 but i'm unaware of whether the port is configured to allow this or not. i'll have to check into it.
thanks again.

Similar Messages

  • Terminal app broken and Preferences Pane probs after Snow Leopard

    Firstly, let me just say it's a pain not having Live Chat for general mac users. I could never explain all this over the phone.
    On opening Terminal, I get this message:
    *You are not authorized to run this application.*
    The administrator has set your shell to an illegal value.
    I was able to see my shell in system preferences, and it was still /bin/bash. I used Workgroup Manager to check also. I reset my account to other shells, and no luck in using Terminal. I booted into root, and Terminal does work, but I could still not see what was in shells. Xterm did work in my main account. Neither in Xterm from my main account, nor using Terminal in root, could I look into the shells file. I got lots of permission denied responses:
    sh-3.2$ /etc/shells
    sh: /etc/shells: Permission denied
    sh-3.2$ su /etc/shells
    Password:
    su: Sorry
    sh-3.2$
    (Note: That's in root. I do get a bash prompt in my user account.)
    On using sudo I get:
    Password:
    *<myusername> is not in the sudoers file. This incident will be reported.*
    Oddly enough, even root is evidently not in the sudoers file, and I have no way of seeing what's in there as it won't give me permission.
    ~/Library/Preferences/com.apple.Terminal.plist did not list anything under Shell, so I entered /bin/bash. Still no luck with Terminal.
    Note above that I'm getting a UNIX shell prompt, but on my external boot drive (running a clean Snow Leopard) I get the normal username prompts. Don't know why.
    I also had problem with the iLifeMediaBrowser.framework messing up PreferencesPanes for Desktop & Screen Savers, Energy Saver, and Spotlight (DesktopScreenEffectsPref.prefPane, EnergySaver.prefPane, and Spotlight.prefPane would not load in System Preferences). I corrected that by throwing the whole iLifeMediaBrowser.framework away, and dragging one over from my Snow Leopard-only external boot drive.
    None of these were problems for me under Leopard, though I've heard people have seen them before Snow Leopard.

    I could not start Terminal and was getting the following error:
    "The Administrator has set your shell to an illegal value."
    I enabled the root user from the Directory Utility (now hidden in core services but accessible from the User Accounts preference Pane). I logged in a root and looked at my /etc/shells file.
    My /etc/shells file was empty !!!
    There was a /etc/shells~orig that had the expected shells listed. I copied the contents of /etc/shells~orig into /etc/shells and...
    Terminal now runs just fine.
    Not sure how this got changed but i'm glad it works again and I hope this post can help someone who runs into a similar problem with their terminal.app

  • How to permanently save the color settings in terminal.app

    Hi,
    I have configured the "ls" command in the terminal.app to give colored outputs. However, I realised that for some reason the color-set used is designed for a light-colored background. When I use "white on black", the default blue color of the directories is almost invisible.
    Of course, I can change this to another color, but this problem is true for all "blue" fonts, so for example, the default color for comments in vim is also blue and thus unreadable with black background.
    This is not a problem when I use the xterm in X11. The color set there is much lighter and is perfect for a black backgound.
    By drag-and-drop method (drag the chosen color on top of the directory texts in terminal), I am able to alter the blue color to a much lighter version. This apparently changes all fonts that is blue (this includes for example vim comments), and is exactly what I wanted. But I cannot figure out a way to save this as default. Clicking "Save setting as default" button in the inspector does nothing, the new terminal window still gives you this dark blue.
    Anyone know how do I do this?
    Cheers,
    Lianheng

    Hi Nils,
    Thanks for the replies.
    I think I see what the problem is: basically the colors in the terminal are darker than that of the xterm in X11. This can be clearly seen from the vim. May be this is to do with the fact that apple terminal.app has a "better" color support?
    I quite like the default LSCOLORS settings, which is:
    LSCOLORS=exfxcxdxcxegedabagacad
    The color settings in X11 is just perfect for me at the moment. It would be so much nicer if I can make the color scheme in terminal.app look like that of the X11. If say, I change LSCOLORS to
    LSCOLORS=gxfxcxdxcxegedabagacad
    and change the color schemes in vim to a lighter theme, but this will effect the colors in X11 too, which is perfect now. Cyan will look too light in X11.
    At the first I thought by drag and dropping the colors into terminal it will alter its color map. So my question was actually how can one (if it is possible) change the color map of the terminal.app, so that it inteprets the ANSI "blue" slightly differently.
    By the way, the way that you can see all colors in vim is really neat! Thanks for that tip.
    Cheers,
    Lianheng

  • What funtionality comes from Terminal.app and not bash (or other shells)?

    I am planning to write an alternative terminal program ( --mostly-- for aesthetics sake) and I want to make sure I cover all of the functionality that I want from Terminal.app in my program. What I'd like to know is what functionality is attributable to the Terminal.app program and not the shell it is using.
    Message was edited by: Camden Jared Narzt

    You should find the ANSI Terminal Escape Sequence standard, which evolved out of the Digital Equipment Corporation VT100 line of terminals. Getting the escape sequences implemented correctly is the hard task.
    Roughly speaking, the Terminal handles displaying the characters from the process(s) and sending keyboard characters (again based on ANSI standard) to the process(s)).
    The Terminal also handles text selection, copy and paste.
    The Terminal may also send mouse movement and click information (optional).
    You could start with an existing terminal emulator, such as the open source project iTerm <http://iterm.sf.net>, or just contribute to the iTerm project.
    There are also X11 based terminal emulators such as xterm, rxvt, etc... where the source code is available.
    As with all open source code bases, if you start with that code, you are most likely obligated to make your source code available as well, unless you only use the resulting terminal emulator for your own use.
    I do NOT know where the official ANSI standard can be found, but this is from the DTTERM Common Desktop Environment man page
    <http://www.helsinki.fi/atk/unix/decmanuals/DOC_51/HTML/MAN/MAN5/0200___.HTM>
    and will give you a flavor for the kind of stuff you will need to implement.
    As for what bash implements, start by reading "man bash", then read man sh, man ksh, man tcsh, man zsh, and you will start to get a favor for what a shell does.
    For the most part the terminal displays the text and sends keyboard input. The shell runs programs, and command line editing, command line recall, etc... A lot of the commands that are run by the shell are just separate programs of their own, so they are not part of the shell.
    Message was edited by: BobHarris

  • Terminal App weird user change and time host

    I've been changing between iTerm and the Terminal app. And this appears in both, so I'm a little confused. Every so often when my MacBook Pro has been on for so long, I open a new terminal, either app this still happens, and my user name disappears and my hostname changes to time. It's not consistent on when it decides to do this, I'm not sure what is going on. A reboot fixes it, but I'd like to know why it's happening in the first place. I've had this happen on my Mac Mini as well, and I've noticed it happening on Leopard, though I will admit, I wasn't using the terminal apps until Snow Leopard. Has anyone else come across this, and if so, any ideas on what is going on?
    Thanks
    Message was edited by: alucardbc

    No opening a new terminal window doesn't fix it.
    Just opened an iTerm and Terminal app window and they just did it. This is what it prints out:
    Last login: Tue Mar 9 10:43:04 on ttys000
    time:~ username$
    Here is also the output of echo $PS1 when the prompt is wrong:
    time:~ username$ echo $PS1
    \h:\W \u\$
    Here is the output with the correct hostname:
    LilPro:~ username$ echo $PS1
    \h:\W \u\$
    They look exactly the same. Something is temporarily changing my hostname until I reboot.
    Message was edited by: alucardbc
    Message was edited by: alucardbc

  • Emacs problem in Terminal.app

    When I edit a text file in the (text-only version) of emacs running in Terminal.app, what happens all the time is that characters in my file get overwritten by spaces (on the terminal only). Pressing Ctrl-L recentres and refreshes the display and it's OK - until it happens again, which is usually right away.
    E.g. if I open the file and press down rightarrow, and hold it for autorepeat, the cursor will gradually move through the file, but as I scroll over certain characters, they will be overwritten by spaces on the screen.
    The problem only happens in Terminal.app, not also in xterm.
    It doesn't matter whether $(TERM) is set to xterm, xterm-color, vt100 etc. in Terminal.app.
    I remember this working in previous versions of Mac OS X, but not in 10.4.5 (and as I recall it's not worked for me for a while).
    Is this a bug? Does anybody else see this? Or is there some setting I might have inadvertently changed.

    The problem was traced to a
    stty -tabs
    line in my .login file. It appears that emacs outputs tabs to move around the screen, and those were being expanded to spaces which overwrote my text. Vi apparently does not use tabs in the same way, which is why the problem was limited to emacs.
    The reason the problem manifested itself in Terminal.app but not in xterm is that tcsh executed inside a new Terminal.app window executes .login, whereas one executed inside a new xterm window does not.

  • ANSI Colors in Leopard's Terminal.app

    Has anyone figured out a way to customize the ANSI colors in the Leopard Terminal? The TCColorArray plist setting seems to be ignored.
    I've even gone so far as to copy the Terminal.app from Tiger onto Leopard. Still no go, even Tiger's terminal is ignoring TCColorArray when running on Leopard (which I find very strange).
    Could this be a termcap issue?

    The following will rid your Terminal of blue directory listings:
    1. Add the following to ~/.profile :
    alias ls='/bin/ls -G'
    export LSCOLORS=exfxcxdxbxegedabagacad
    2. Change the color(s) displayed by `ls` considering the following:
    For each pair of characters in the string 'exfxcxdxbxegedabagacad', the first character in the pair represents the foreground color, the second character in the pair represents the background color. Changing the character changes the color; see the following chart:
    a black
    b red
    c green
    d brown
    e blue
    f magenta
    g cyan
    h light grey
    A bold black, usually shows up as dark grey
    B bold red
    C bold green
    D bold brown, usually shows up as yellow
    E bold blue
    F bold magenta
    G bold cyan
    H bold light grey; looks like bright white
    x default foreground or background
    Each character pair in the string 'exfxcxdxbxegedabagacad' represents a type of file displayed by `ls`. The breakdown of character pairs follows:
    Pair 1 (ex) - directories
    Pair 2 (fx) - symbolic links
    Pair 3 (cx) - sockets
    Pair 4 (dx) - pipes
    Pair 5 (bx) - executable files
    Pair 6 (eg) - block special
    Pair 7 (ed) - character special
    Pair 8 (ab) - executable with setuid bit set
    Pair 9 (ag) - executable with setgid bit set
    Pair 10 (ac) - directory writable to others, with sticky bit
    Pair 11 (ad) - directory writable to others, without sticky bit
    So, following this through to conclusion, the following is the list of default color pairs:
    ex - blue/default - directories
    fx - magenta/default - symbolic links
    cx - green/default - sockets
    dx - brown/default - pipes
    bx - red/default - executable files
    eg - blue/cyan - block special
    ed - blue/brown - character special
    ab - black/red - executable with setuid bit set
    ag - black/cyan - executable with setgid bit set
    ac - black/green - directory writable to others, with sticky bit
    ad - black/brown - directory writable to others, without sticky bit
    Finally, to change the listing of directories from blue to cyan, change the first character pair (ex) to (gx) in .profile :
    export LSCOLORS=gxfxcxdxbxegedabagacad
    3. To have the color change take effect, quit and restart Terminal, or run the following command:
    . ~/.profile
    Message was edited by: Apple Scruffs

  • Mail keeps crashing and app store and terminal and wont open in Mavericks

    Help!
    Ever since I installed Mavericks last week, Mail keeps crashing with the following error message below. The App Store and Terminal also refuse to open, please can someone help?
    Process:         Mail [832]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         7.0 (1816)
    Build Info:      Mail-1816000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [143]
    Responsible:     Mail [832]
    User ID:         501
    Date/Time:       2013-10-26 19:09:16.302 +0100
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  1C21170D-FD0C-73AA-D36C-0A7DDD3092F3
    Sleep/Wake UUID: B7214CB9-92CE-4F2B-8D01-D47FE2EF1F97
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[NSViewController loadView] could not load the "MessageView" nib.'
    abort() called
    terminating with uncaught exception of type NSException
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8bbc441c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff8a253e75 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8bbc42cc +[NSException raise:format:] + 204
    3   AppKit                              0x00007fff898b7507 -[NSViewController loadView] + 361
    4   AppKit                              0x00007fff897e5748 -[NSViewController view] + 41
    5   Mail                                0x000000010cb7264f Mail + 370255
    6   Mail                                0x000000010cb72512 Mail + 369938
    7   Mail                                0x000000010cb7214e Mail + 368974
    8   Mail                                0x000000010cb71e27 Mail + 368167
    9   Mail                                0x000000010cb7182d Mail + 366637
    10  AppKit                              0x00007fff898a526b -[NSView _updateSuggestedContentRect] + 774
    11  AppKit                              0x00007fff898b3df1 -[NSView _updateSuggestedContentRectForVisibleRectChange] + 219
    12  AppKit                              0x00007fff898b3c87 -[NSScrollView(NSRulerSupport) _handleBoundsChangeForSubview:] + 331
    13  AppKit                              0x00007fff898b3af4 -[NSView _postBoundsChangeNotification] + 136
    14  AppKit                              0x00007fff898b3938 -[NSView translateOriginToPoint:] + 294
    15  AppKit                              0x00007fff8975ac7f -[NSClipView _immediateScrollToPoint:] + 2659
    16  AppKit                              0x00007fff8975a1da -[NSClipView scrollToPoint:] + 237
    17  AppKit                              0x00007fff898b2d8e -[NSScrollView scrollClipView:toPoint:] + 203
    18  AppKit                              0x00007fff8975ee39 -[NSClipView _scrollTo:animateScroll:flashScrollerKnobs:] + 1688
    19  AppKit                              0x00007fff8975e5bf -[NSClipView _reflectDocumentViewFrameChange] + 128
    20  AppKit                              0x00007fff89722f3c -[NSView _postFrameChangeNotification] + 203
    21  AppKit                              0x00007fff8972c712 -[NSView setFrameSize:] + 1586
    22  Mail                                0x000000010cb38ac4 Mail + 133828
    23  AppKit                              0x00007fff8972c099 -[NSView setFrame:] + 294
    24  Mail                                0x000000010cb6bc6a Mail + 343146
    25  Mail                                0x000000010cb71007 Mail + 364551
    26  Mail                                0x000000010cb70e36 Mail + 364086
    27  Mail                                0x000000010cb6fcfd Mail + 359677
    28  Mail                                0x000000010cb37db0 Mail + 130480
    29  Foundation                          0x00007fff8a676c18 NSKeyValueNotifyObserver + 387
    30  Foundation                          0x00007fff8a6b3e71 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 1115
    31  AppKit                              0x00007fff8977dc48 -[NSController _notifyObserversForKeyPath:change:] + 209
    32  AppKit                              0x00007fff898af6a7 -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] + 53
    33  AppKit                              0x00007fff8977da88 -[NSArrayController setContent:] + 826
    34  Mail                                0x000000010cb359a3 Mail + 121251
    35  Foundation                          0x00007fff8a6b46ce -[NSObject(NSKeyValueCoding) setValue:forKey:] + 389
    36  AppKit                              0x00007fff89786f5d -[NSObjectParameterBinder _updateObject:observedController:observedKeyPath:context:] + 1298
    37  AppKit                              0x00007fff8977df68 -[NSObject(NSKeyValueBindingCreation) bind:toObject:withKeyPath:options:] + 652
    38  Mail                                0x000000010cb88d6e Mail + 462190
    39  CoreFoundation                      0x00007fff8bb92fcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    40  CoreFoundation                      0x00007fff8ba86c5d _CFXNotificationPost + 2893
    41  Foundation                          0x00007fff8a6704aa -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    42  Foundation                          0x00007fff8a696055 -[NSBlockOperation main] + 75
    43  Foundation                          0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    44  Foundation                          0x00007fff8a67523b __NSOQSchedule_f + 64
    45  libdispatch.dylib                   0x00007fff8ac8e2ad _dispatch_client_callout + 8
    46  libdispatch.dylib                   0x00007fff8ac95f03 _dispatch_main_queue_callback_4CF + 333
    47  CoreFoundation                      0x00007fff8bb2b839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    48  CoreFoundation                      0x00007fff8bae6b14 __CFRunLoopRun + 1636
    49  CoreFoundation                      0x00007fff8bae6275 CFRunLoopRunSpecific + 309
    50  HIToolbox                           0x00007fff8f7fef0d RunCurrentEventLoopInMode + 226
    51  HIToolbox                           0x00007fff8f7fecb7 ReceiveNextEventCommon + 479
    52  HIToolbox                           0x00007fff8f7feabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    53  AppKit                              0x00007fff896f528e _DPSNextEvent + 1434
    54  AppKit                              0x00007fff896f48db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    55  AppKit                              0x00007fff896e89cc -[NSApplication run] + 553
    56  AppKit                              0x00007fff896d3803 NSApplicationMain + 940
    57  libdyld.dylib                       0x00007fff8b9265fd start + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8efa9866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff9282635c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff8af03bba abort + 125
    3   libc++abi.dylib                         0x00007fff8d3c9141 abort_message + 257
    4   libc++abi.dylib                         0x00007fff8d3eeabc default_terminate_handler() + 264
    5   libobjc.A.dylib                         0x00007fff8a25430d _objc_terminate() + 103
    6   libc++abi.dylib                         0x00007fff8d3ec3e1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff8d3ec456 std::terminate() + 54
    8   libobjc.A.dylib                         0x00007fff8a2540b0 objc_terminate + 9
    9   libdispatch.dylib                       0x00007fff8ac8e2c1 _dispatch_client_callout + 28
    10  libdispatch.dylib                       0x00007fff8ac95f03 _dispatch_main_queue_callback_4CF + 333
    11  com.apple.CoreFoundation                0x00007fff8bb2b839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    12  com.apple.CoreFoundation                0x00007fff8bae6b14 __CFRunLoopRun + 1636
    13  com.apple.CoreFoundation                0x00007fff8bae6275 CFRunLoopRunSpecific + 309
    14  com.apple.HIToolbox                     0x00007fff8f7fef0d RunCurrentEventLoopInMode + 226
    15  com.apple.HIToolbox                     0x00007fff8f7fecb7 ReceiveNextEventCommon + 479
    16  com.apple.HIToolbox                     0x00007fff8f7feabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    17  com.apple.AppKit                        0x00007fff896f528e _DPSNextEvent + 1434
    18  com.apple.AppKit                        0x00007fff896f48db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    19  com.apple.AppKit                        0x00007fff896e89cc -[NSApplication run] + 553
    20  com.apple.AppKit                        0x00007fff896d3803 NSApplicationMain + 940
    21  libdyld.dylib                           0x00007fff8b9265fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8efaa662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8ac9043d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8ac90152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_pthread.dylib                 0x00007fff92829fac start_wqthread + 0
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 8:: +[MFLibrary synchronouslyUpdateMessageFiles]  Dispatch queue: NSOperationQueue 0x6000002223c0
    0   libsystem_kernel.dylib                  0x00007fff8efaa9f2 read + 10
    1   com.apple.Foundation                    0x00007fff8a68118a _NSReadFromFileDescriptorWithProgress + 255
    2   com.apple.Foundation                    0x00007fff8a6deba4 -[NSConcreteFileHandle readDataOfLength:] + 257
    3   com.apple.Mail.framework                0x00007fff8e206d71 +[MFLibrary _emlxPListInFile:plistOffset:] + 51
    4   com.apple.Mail.framework                0x00007fff8e200c17 +[MFLibrary updateFileForMessage:] + 180
    5   com.apple.CoreFoundation                0x00007fff8bb0cd06 __53-[__NSArrayI enumerateObjectsWithOptions:usingBlock:]_block_invoke + 70
    6   com.apple.CoreFoundation                0x00007fff8bb0cc50 -[__NSArrayI enumerateObjectsWithOptions:usingBlock:] + 320
    7   com.apple.Mail.framework                0x00007fff8e1e3914 +[MFLibrary synchronouslyUpdateMessageFiles] + 503
    8   com.apple.CoreFoundation                0x00007fff8baafdec __invoking___ + 140
    9   com.apple.CoreFoundation                0x00007fff8baafc54 -[NSInvocation invoke] + 308
    10  com.apple.MailCore                      0x00007fff8b175b74 -[MCMonitoredInvocation invoke] + 211
    11  com.apple.MailCore                      0x00007fff8b198808 -[MCThrowingInvocationOperation main] + 40
    12  com.apple.MailCore                      0x00007fff8b13cf08 -[_MCInvocationOperation main] + 332
    13  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    14  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    15  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff8ac927ff _dispatch_async_redirect_invoke + 154
    17  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    18  libdispatch.dylib                       0x00007fff8ac9009e _dispatch_root_queue_drain + 326
    19  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    20  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    21  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 10:: -[MFSnippetManager _calculateSnippetForMessages]  Dispatch queue: NSOperationQueue Serial Queue
    0   libsystem_kernel.dylib                  0x00007fff8efaa9f2 read + 10
    1   com.apple.Foundation                    0x00007fff8a68118a _NSReadFromFileDescriptorWithProgress + 255
    2   com.apple.Foundation                    0x00007fff8a680f3b _NSReadBytesFromFileWithExtendedAttributes + 888
    3   com.apple.Foundation                    0x00007fff8a680b37 -[NSData(NSData) initWithContentsOfFile:] + 91
    4   com.apple.Foundation                    0x00007fff8a6e3c6c +[NSData(NSData) dataWithContentsOfFile:] + 43
    5   com.apple.Mail.framework                0x00007fff8e206f16 +[MFLibrary bodyDataAtPath:headerData:] + 49
    6   com.apple.Mail.framework                0x00007fff8e20737d +[MFLibrary bodyDataForMessage:andHeaderDataIfReadilyAvailable:] + 58
    7   com.apple.Mail.framework                0x00007fff8e2940c0 -[MFMessageStore bodyDataForMessage:fetchIfNotAvailable:allowPartial:] + 287
    8   com.apple.MailCore                      0x00007fff8b16e901 -[MCMimePart(MessageSupport) parseMimeBodyFetchIfNotAvailable:allowPartial:] + 141
    9   com.apple.Mail.framework                0x00007fff8e2966be -[MFMessageStore _fetchBodyForMessage:fetchIfNotAvailable:updateFlags:allowPartial:] + 154
    10  com.apple.Mail.framework                0x00007fff8e294326 -[MFMessageStore bodyForMessage:fetchIfNotAvailable:updateFlags:allowPartial:] + 156
    11  com.apple.Mail.framework                0x00007fff8e2de12d __48-[MFSnippetManager _calculateSnippetForMessages]_block_invoke + 363
    12  com.apple.CoreFoundation                0x00007fff8bb01a1f __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 111
    13  com.apple.CoreFoundation                0x00007fff8bb0192e -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 222
    14  com.apple.Mail.framework                0x00007fff8e2ddfa2 -[MFSnippetManager _calculateSnippetForMessages] + 287
    15  com.apple.CoreFoundation                0x00007fff8baafdec __invoking___ + 140
    16  com.apple.CoreFoundation                0x00007fff8baafc54 -[NSInvocation invoke] + 308
    17  com.apple.MailCore                      0x00007fff8b198808 -[MCThrowingInvocationOperation main] + 40
    18  com.apple.MailCore                      0x00007fff8b13cf08 -[_MCInvocationOperation main] + 332
    19  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    20  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    21  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    22  libdispatch.dylib                       0x00007fff8ac9068f _dispatch_queue_drain + 451
    23  libdispatch.dylib                       0x00007fff8ac919dd _dispatch_queue_invoke + 110
    24  libdispatch.dylib                       0x00007fff8ac8ffa3 _dispatch_root_queue_drain + 75
    25  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    26  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    27  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 14:: Dispatch queue: [MFLibrary writeQueue]
    0   libsystem_kernel.dylib                  0x00007fff8efaa962 pread + 10
    1   libsqlite3.dylib                        0x00007fff921cf1d4 unixRead + 100
    2   libsqlite3.dylib                        0x00007fff921f55ee readDbPage + 478
    3   libsqlite3.dylib                        0x00007fff921f418d sqlite3PagerAcquire + 349
    4   libsqlite3.dylib                        0x00007fff922298f7 sqlite3BtreeMovetoUnpacked + 1143
    5   libsqlite3.dylib                        0x00007fff9220f8c4 sqlite3VdbeExec + 5236
    6   libsqlite3.dylib                        0x00007fff9220d40a sqlite3_step + 666
    7   com.apple.Mail.framework                0x00007fff8e1e4392 setFlagsForMessage + 448
    8   com.apple.Mail.framework                0x00007fff8e1e4125 __83+[MFLibrary commitSynchronouslyPostingMessages:postFlags:postingOldFlagsByMessage:]_block_i nvoke + 210
    9   com.apple.Mail.framework                0x00007fff8e2109e5 +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 1328
    10  com.apple.Mail.framework                0x00007fff8e1e3f16 +[MFLibrary commitSynchronouslyPostingMessages:postFlags:postingOldFlagsByMessage:] + 644
    11  com.apple.Mail.framework                0x00007fff8e229303 __59-[MFLibraryStore async_setFlagsFromDictionary:forMessages:]_block_invoke + 435
    12  com.apple.Foundation                    0x00007fff8a696055 -[NSBlockOperation main] + 75
    13  com.apple.MailCore                      0x00007fff8b198564 -[MCTaskOperation main] + 642
    14  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    15  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    16  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff8ac927ff _dispatch_async_redirect_invoke + 154
    18  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    19  libdispatch.dylib                       0x00007fff8ac9009e _dispatch_root_queue_drain + 326
    20  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    21  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    22  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 18:: -[MFLibraryIMAPStore openSynchronously]  Dispatch queue: NSOperationQueue 0x60800023da00
    0   libsystem_kernel.dylib                  0x00007fff8efa9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff92827c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff8a6d7ae0 -[__NSOperationInternal _waitUntilFinishedOrTimeout:outer:] + 218
    3   com.apple.IMAP                          0x00007fff909d0fc0 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 228
    4   com.apple.IMAP                          0x00007fff909eafa1 -[IMAPGateway waitUntilClientOperationIsFinished:] + 184
    5   com.apple.IMAP                          0x00007fff909eaed7 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 397
    6   com.apple.IMAP                          0x00007fff909d9b3f -[IMAPConnection _authenticateWithAuthenticator:] + 136
    7   com.apple.MailCore                      0x00007fff8b12cd10 -[MCConnection authenticate] + 594
    8   com.apple.IMAP                          0x00007fff909d99e0 -[IMAPConnection authenticate] + 66
    9   com.apple.Mail.framework                0x00007fff8e1caa08 -[MFIMAPAccount connectAndAuthenticate:] + 1163
    10  com.apple.Mail.framework                0x00007fff8e1cba8b -[MFIMAPAccount _recoverFromConnectionlessStateHighPriority:] + 118
    11  com.apple.Mail.framework                0x00007fff8e1cb7ee -[MFIMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 168
    12  com.apple.Mail.framework                0x00007fff8e1cb486 -[MFIMAPAccount _gatewayForMailbox:name:options:] + 272
    13  com.apple.Mail.framework                0x00007fff8e220e88 -[MFLibraryIMAPStore _gatewayCreateIfNeeded:options:] + 158
    14  com.apple.Mail.framework                0x00007fff8e2179ca -[MFLibraryIMAPStore _openSynchronouslyUpdatingMetadata:withOptions:] + 279
    15  com.apple.CoreFoundation                0x00007fff8baafdec __invoking___ + 140
    16  com.apple.CoreFoundation                0x00007fff8baafc54 -[NSInvocation invoke] + 308
    17  com.apple.MailCore                      0x00007fff8b175b74 -[MCMonitoredInvocation invoke] + 211
    18  com.apple.MailCore                      0x00007fff8b198808 -[MCThrowingInvocationOperation main] + 40
    19  com.apple.MailCore                      0x00007fff8b13cf08 -[_MCInvocationOperation main] + 332
    20  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    21  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    22  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    23  libdispatch.dylib                       0x00007fff8ac927ff _dispatch_async_redirect_invoke + 154
    24  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    25  libdispatch.dylib                       0x00007fff8ac9009e _dispatch_root_queue_drain + 326
    26  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    27  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    28  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 19:: -[MFLibraryIMAPStore openSynchronously]  Dispatch queue: NSOperationQueue 0x60800023da00
    0   libsystem_kernel.dylib                  0x00007fff8efa5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8efa4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8bae7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8bae6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8bae6275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8a6d6a7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.MailCore                      0x00007fff8b1952cf -[MCSocket _waitForSecurityLayerNegotiationStreamsAreScheduled:] + 645
    7   com.apple.MailCore                      0x00007fff8b194a28 -[MCSocket connectToHost:withPort:isBackground:] + 1524
    8   com.apple.MailCore                      0x00007fff8b12bdd4 -[MCConnection connectDiscoveringBestSettings:] + 1115
    9   com.apple.Mail.framework                0x00007fff8e1ca923 -[MFIMAPAccount connectAndAuthenticate:] + 934
    10  com.apple.Mail.framework                0x00007fff8e1cba8b -[MFIMAPAccount _recoverFromConnectionlessStateHighPriority:] + 118
    11  com.apple.Mail.framework                0x00007fff8e1cb7ee -[MFIMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 168
    12  com.apple.Mail.framework                0x00007fff8e1cb486 -[MFIMAPAccount _gatewayForMailbox:name:options:] + 272
    13  com.apple.Mail.framework                0x00007fff8e220e88 -[MFLibraryIMAPStore _gatewayCreateIfNeeded:options:] + 158
    14  com.apple.Mail.framework                0x00007fff8e2179ca -[MFLibraryIMAPStore _openSynchronouslyUpdatingMetadata:withOptions:] + 279
    15  com.apple.CoreFoundation                0x00007fff8baafdec __invoking___ + 140
    16  com.apple.CoreFoundation                0x00007fff8baafc54 -[NSInvocation invoke] + 308
    17  com.apple.MailCore                      0x00007fff8b175b74 -[MCMonitoredInvocation invoke] + 211
    18  com.apple.MailCore                      0x00007fff8b198808 -[MCThrowingInvocationOperation main] + 40
    19  com.apple.MailCore                      0x00007fff8b13cf08 -[_MCInvocationOperation main] + 332
    20  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    21  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    22  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    23  libdispatch.dylib                       0x00007fff8ac927ff _dispatch_async_redirect_invoke + 154
    24  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    25  libdispatch.dylib                       0x00007fff8ac9009e _dispatch_root_queue_drain + 326
    26  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    27  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    28  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 22:: Dispatch queue: NSOperationQueue 0x6000002c2840
    0   libsystem_kernel.dylib                  0x00007fff8efa5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8efa4d18 mach_msg + 64
    2   libsystem_kernel.dylib                  0x00007fff8efa03f4 semaphore_create + 99
    3   libdispatch.dylib                       0x00007fff8ac92a8f _dispatch_semaphore_create_port + 62
    4   libdispatch.dylib                       0x00007fff8ac9299e _dispatch_semaphore_wait_slow + 87
    5   libxpc.dylib                            0x00007fff86cad733 xpc_connection_send_message_with_reply_sync + 195
    6   com.apple.CoreFoundation                0x00007fff8bab8193 -[CFPrefsPlistSource copyReplyForDaemonMessage:toConnection:error:] + 243
    7   com.apple.CoreFoundation                0x00007fff8bc12820 __47-[CFPrefsPlistSource alreadylocked_synchronize]_block_invoke_2 + 352
    8   com.apple.CoreFoundation                0x00007fff8bab7a9b withDaemonConnection + 299
    9   com.apple.CoreFoundation                0x00007fff8bab74fb -[CFPrefsPlistSource alreadylocked_synchronize] + 587
    10  com.apple.CoreFoundation                0x00007fff8bab71f3 _copyValueForKey + 131
    11  com.apple.CoreFoundation                0x00007fff8bab7147 -[CFPrefsPlistSource copyValueForKey:] + 71
    12  com.apple.CoreFoundation                0x00007fff8badf730 ___CFPreferencesCopyValueWithContainer_block_invoke + 32
    13  com.apple.CoreFoundation                0x00007fff8bab6097 +[CFPrefsSource withSourceForIdentifier:user:byHost:container:perform:] + 839
    14  com.apple.CoreFoundation                0x00007fff8badf6c7 _CFPreferencesCopyValueWithContainer + 231
    15  com.apple.framework.internetaccounts          0x00007fff86587602 __IADebugLog_block_invoke + 49
    16  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff8ac8e21c dispatch_once_f + 79
    18  com.apple.framework.internetaccounts          0x00007fff865875c7 IADebugLog + 407
    19  com.apple.framework.internetaccounts          0x00007fff86563719 -[IAGoogleAuthTokenManager init] + 182
    20  com.apple.framework.internetaccounts          0x00007fff8656361e __34+[IAGoogleAuthTokenManager shared]_block_invoke + 37
    21  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    22  libdispatch.dylib                       0x00007fff8ac8e21c dispatch_once_f + 79
    23  com.apple.framework.internetaccounts          0x00007fff865635f7 +[IAGoogleAuthTokenManager shared] + 103
    24  com.apple.Mail.framework                0x00007fff8e24c8ee -[MFMailAccount googleClientToken] + 165
    25  com.apple.MailCore                      0x00007fff8b18cf8f -[_MCPlainClientTokenSaslClient initialResponse] + 82
    26  com.apple.IMAP                          0x00007fff909c84a6 -[IMAPClientAuthenticateOperation newCommandDataForLiteralPlus:] + 174
    27  com.apple.IMAP                          0x00007fff909d81a1 -[IMAPConnection _sendCommand:response:] + 1359
    28  com.apple.IMAP                          0x00007fff909d9f2c -[IMAPConnection executeAuthenticate:] + 294
    29  com.apple.IMAP                          0x00007fff909c8581 -[IMAPClientAuthenticateOperation executeOnConnection:] + 26
    30  com.apple.IMAP                          0x00007fff909d7ada -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1216
    31  com.apple.IMAP                          0x00007fff909eaafe -[IMAPGateway _allowClientOperationThrough:] + 910
    32  com.apple.IMAP                          0x00007fff909ea715 -[IMAPGateway allowClientOperationThrough:] + 385
    33  com.apple.IMAP                          0x00007fff909ce20b -[IMAPClientOperation main] + 57
    34  com.apple.Foundation                    0x00007fff8a675591 -[__NSOperationInternal _start:] + 631
    35  com.apple.Foundation                    0x00007fff8a67523b __NSOQSchedule_f + 64
    36  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    37  libdispatch.dylib                       0x00007fff8ac927ff _dispatch_async_redirect_invoke + 154
    38  libdispatch.dylib                       0x00007fff8ac8e2ad _dispatch_client_callout + 8
    39  libdispatch.dylib                       0x00007fff8ac9009e _dispatch_root_queue_drain + 326
    40  libdispatch.dylib                       0x00007fff8ac91193 _dispatch_worker_thread2 + 40
    41  libsystem_pthread.dylib                 0x00007fff92826ef8 _pthread_wqthread + 314
    42  libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff8efa9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff92826f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff92829fb9 start_wqthread + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff8efa5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8efa4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8bae7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8bae6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8bae6275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff898951ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff92825899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9282572a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff92829fc9 thread_start + 13
    Thread 25:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8efa5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8efa4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8bae7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8bae6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8bae6275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8a6d4907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8a6d470b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff92825899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9282572a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff92829fc9 thread_start + 13
    Thread 26:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8efa99aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff8bb32d43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff92825899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9282572a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff92829fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff78923310  rcx: 0x00007fff530e5ea8  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff530e5ed0  rsp: 0x00007fff530e5ea8
       r8: 0x00007fff8d3efab4   r9: 0x00007fff8af2b900  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff530e6030  r13: 0x0000600000123160  r14: 0x0000000000000006  r15: 0x00007fff530e5f10
      rip: 0x00007fff8efa9866  rfl: 0x0000000000000206  cr2: 0x0000000113113000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x10cb18000 -        0x10ce07fff  com.apple.mail (7.0 - 1816) <E8B5953C-FD5C-3D3B-B481-34F23E45730A> /Applications/Mail.app/Contents/MacOS/Mail
           0x10d264000 -        0x10d266fff  apop.so (170) <79E840B4-6D30-3CBB-99D3-345D6C77D5DF> /usr/lib/sasl2/apop.so
           0x10d26a000 -        0x10d27afff  dhx.so (170) <A9EBA1D4-8ED8-37BB-BA1E-263091EAF96E> /usr/lib/sasl2/dhx.so
           0x10d286000 -        0x10d28efff  digestmd5WebDAV.so (170) <9DBE65CE-9B5C-37A3-8112-40F39BE3B5F8> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10d293000 -        0x10d295fff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
           0x10d299000 -        0x10d29bfff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
           0x10d2a0000 -        0x10d2a8ff7  libdigestmd5.2.so (170) <122C0383-F9B2-34D1-89AF-D317BC4D5164> /usr/lib/sasl2/libdigestmd5.2.so
           0x10d2ad000 -        0x10d2b1fff  libgssapiv2.2.so (170) <AA58D85E-916C-3B0B-959A-DCC58497D0F2> /usr/lib/sasl2/libgssapiv2.2.so
           0x10d2b6000 -        0x10d2b8fff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
           0x10d2bc000 -        0x10d2c1fff  libntlm.so (170) <18693B29-154F-339C-A329-4C42A43F6428> /usr/lib/sasl2/libntlm.so
           0x10d2c6000 -        0x10d2cdfff  libotp.2.so (170) <D1C70F92-1C75-340B-AD53-0C2CD79144FF> /usr/lib/sasl2/libotp.2.so
           0x10d2d6000 -        0x10d2d8fff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
           0x10d2dc000 -        0x10d2e0fff  libpps.so (170) <9BAB4F91-A2DF-3F11-A2E4-8E353562ECC8> /usr/lib/sasl2/libpps.so
           0x10d2e5000 -        0x10d2e8ff7  mschapv2.so (170) <7B006E8A-BEB7-3004-9C16-134D37C077A5> /usr/lib/sasl2/mschapv2.so
           0x10d2ed000 -        0x10d315ff6  com.apple.DirectoryService.PasswordServerFramework (10.9 - 36) <C36B818F-C1FE-3F3F-A01C-F4613F570D4D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x10d32b000 -        0x10d32dfff  smb_nt.so (170) <903A6BA5-5B1F-305A-98EA-27BE757A7CFF> /usr/lib/sasl2/smb_nt.so
           0x10d332000 -        0x10d334fff  pwauxprop.so (400) <924056F9-D203-3DAD-B78D-61439A2E6BE8> /usr/lib/sasl2/pwauxprop.so
           0x10d339000 -        0x10d33bfff  shadow_auxprop.so (170) <2E0153C3-9D36-3496-8885-DE8B91838036> /usr/lib/sasl2/shadow_auxprop.so
           0x10d340000 -        0x10d342fff  smb_ntlmv2.so (170) <15A0B3C1-DA72-3B4C-8234-EF24132FEB0B> /usr/lib/sasl2/smb_ntlmv2.so
           0x10eb61000 -        0x10eb68ff7  com.apple.SyncedDefaults (1.3 - 91.30) <FC5A4423-3D91-3A34-853A-C49971EEAE4E> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x11203f000 -        0x112042fff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x112198000 -        0x112199fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1365) <260EDDAA-A812-3097-BE14-A63EA4BEDD31> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x1121ab000 -        0x1121afff7  com.apple.DirectoryServicesSource (8.0 - 1365) <2F2D5BAA-F006-3701-922C-37EF076DE3D1> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x112cae000 -        0x112caeff9 +cl_kernels (???) <8008097B-D4F3-450E-9BED-7029C8AFAEDB> cl_kernels
           0x112cc3000 -        0x112cc4ffa +cl_kernels (???) <B93AD5F8-3BA3-4DF4-97D6-9A5137048DAD> cl_kernels
           0x112cc8000 -        0x112cc8ffd +cl_kernels (???) <8059D9F9-4700-4237-B5F6-10270270F41D> cl_kernels
           0x112d3e000 -        0x112e24fef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x112e76000 -        0x112f56ff7  unorm8_rgba.dylib (2.3.58) <DDD1AFEB-FD30-34D2-958A-823C3EFD649A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x112fa8000 -        0x112fa8fff +cl_kernels (???) <B57BB37D-07A8-4B44-9A8F-4BEB3395F62F> cl_kernels
           0x113048000 -        0x113048ffb +cl_kernels (???) <546122C5-B9C2-4A19-AD43-A811CB3F32FF> cl_kernels
           0x11305e000 -        0x11305fff2 +cl_kernels (???) <BDD50C1D-953E-4FF5-ADB7-53E484E19F72> cl_kernels
           0x113068000 -        0x113068ffe +cl_kernels (???) <ABA6783A-F44B-4959-98EB-7501AA205545> cl_kernels
           0x113071000 -        0x113071ff7 +cl_kernels (???) <7797CCA3-3341-43FC-B014-E29C2CC2B593> cl_kernels
           0x11307c000 -        0x11307cff7 +cl_kernels (???) <B46B5894-5999-4694-AC35-DC983EB41408> cl_kernels
           0x113293000 -        0x113294ff4 +cl_kernels (???) <B72DD580-7F28-41F5-A197-93E535A62AD0> cl_kernels
        0x7fff628d1000 -     0x7fff62904817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff864c6000 -     0x7fff864deff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff864df000 -     0x7fff86537ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff86538000 -     0x7fff86540ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff86541000 -     0x7fff8654cfff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
        0x7fff8654d000 -     0x7fff8659cff7  com.apple.framework.internetaccounts (2.1 - 210) <C77069C7-928C-315C-AA61-D90543901F20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8659d000 -     0x7fff868b7ff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff868b8000 -     0x7fff868c8ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff868c9000 -     0x7fff868d0ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff868d1000 -     0x7fff868d9ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff868da000 -     0x7fff86901ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff86902000 -     0x7fff8690affc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8690b000 -     0x7fff86969ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8696a000 -     0x7fff8696dfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8696e000 -     0x7fff8699cff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8699d000 -     0x7fff8699dffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8699e000 -     0x7fff869a3ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff869a4000 -     0x7fff86be7fff  com.apple.AddressBook.framework (8.0 - 1365) <816242B1-D45E-3B5D-BC98-BB23458D5367> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff86be8000 -     0x7fff86c45fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff86c46000 -     0x7fff86c88ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff86c8f000 -     0x7fff86ca2ff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff86ca3000 -     0x7fff86cc7fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff86d46000 -     0x7fff86d53ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff87632000 -     0x7fff87720fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8778c000 -     0x7fff877d3fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff877d4000 -     0x7fff877f1ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff877f2000 -     0x7fff87960ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff87961000 -     0x7fff87986ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff87987000 -     0x7fff887d3ff5  com.apple.WebCore (9537 - 9537.70) <7A90E9D3-4F26-3049-9C96-C6B8CB1395C8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff887d4000 -     0x7fff887f6fff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff887f7000 -     0x7fff887f8fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff887f9000 -     0x7fff88a51ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff88fd2000 -     0x7fff8900efff  com.apple.ids (10.0 - 1000) <22502AAF-CC59-33EC-9ACF-106315206701> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8903a000 -     0x7fff8903bff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8903c000 -     0x7fff8930aff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8930b000 -     0x7fff89378fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff89379000 -     0x7fff893beff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
        0x7fff893bf000 -     0x7fff893c7fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff89410000 -     0x7fff894adfff  com.apple.imcore (10.0 - 1000) <027E09B4-B4B6-3710-8806-B4CE41DF3242> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff894ae000 -     0x7fff894bdff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff894be000 -     0x7fff89587fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff89588000 -     0x7fff8959aff7  com.apple.addressbook.ContactsAutocomplete (8.0 - 1365) <9EF30F4C-2C3F-321C-8C32-1445395FD9C7> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/Versions/A/Con tactsAutocomplete
        0x7fff8959b000 -     0x7fff8966cff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8966d000 -     0x7fff8967aff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff896cc000 -     0x7fff896d0fff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff896d1000 -     0x7fff8a245ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8a246000 -     0x7fff8a3f3f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8a3f4000 -     0x7fff8a547ff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8a548000 -     0x7fff8a575ff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8a576000 -     0x7fff8a594ff7  com.apple.CalendarFoundation (7.0 - 111) <D5CEE7AE-3325-3E7E-924B-12834AE7D218> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
        0x7fff8a595000 -     0x7fff8a624ff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8a625000 -     0x7fff8a66cff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib

    I am having the same problem. Any solution?? in my case so far is photo booth appstore terminal, facetime the built in camera is not working with skype

  • Is there a way to change the font size and color of text in the calendar app?

    Does anyone know a way of changing the font size and color of text in the calendar app that comes with the iPad 2?  It is very hard to see the small gray numbers on the calendar.  Thanks

    Looks like you didn't get a reply on your post, but it is still a problem.  Font size is supposedly changeable via "Accessibility" in Settings, but it doesn't work.  You can turn on "Zoom".

  • I have a problem with my MacBook Pro is the almost of my app not working at all like a app store and terminal and other important apps please if u can help me as fast as you can cuz i don't wanna format it that's why am on Mac now not win ?

    i have a problem with my MacBook Pro is the almost of my app not working at all like a app store and terminal and other important apps please if u can help me as fast as you can cuz i don't wanna format it that's why am on Mac now not win ?

    Abdussalam.A,
    you mentioned that Terminal does not work at all for your MacBook Pro. What currently happens when you run Terminal? In what way does it not work?

  • Customizing ANSI Colors in Terminal.app

    Has anyone figured out a way to customize the ANSI colors in the Leopard Terminal? The TCColorArray plist setting seems to be ignored.
    I've even gone so far as to copy the Terminal.app from Tiger onto Leopard. Still no go, even Tiger's terminal is ignoring TCColorArray when running on Leopard (which I find very strange).
    Could this be a termcap issue?

    You might want to ask in the Unix forum:
    http://discussions.apple.com/forum.jspa?forumID=735

  • Terminal.app and the European Unicode characters?

    Does anyone have the unicode characters working properly in Terminal.app?
    If I try to write in GNU nano 1.2.4 for instance "örrör" it translates into:
    (one empty line)
    örr
    ör
    which isn't certainly right. This is especially awkward when editing an unicode text file where the text then easily becomes more or less garbled. Usually more.
    It doesn't seem to make any difference whether or not I use the Finnish extended (unicode) keyboard layout or the conventional one in nano. If the Terminal.app window preferences are set as UTF-8, it says:
    ?rr
    ?r
    which looks even more garbled.
    In plain bash the characters print like this:
    å = \345
    ä = \344
    ö = \366
    so my mighty apple translates the example string "örrör" as "\366rr\366r".
    Any ideas, anyone?
    PowerBook G4 @ 1.5 GHz   Mac OS X (10.4.4)   1.25 GB DDR SDRAM
    Debian Sarge 3.1 as a slave fetchmail server.

    Hi solarflare,
       My first (and essentially only) language is English as well. However enough folks have asked that I have experimented with multibyte characters. There are so many apps and options involved, it's difficult to get consistent results. However, I'll recount as many settings as I can recall.
       To begin with, you are right about the LC settings. It helps many apps to have:
    export LCALL=enUS.UTF-8
    export LANG=en_US.UTF-8
    set in your shell startup scripts. Then the system should be set to produce unicode when you type. In the "Input Menu" tab of the "International" pane of "System Preferences", you should select a unicode keyboard layout, such as U.S. Extended.
       To configure the Terminal, you need to open the "Terminal Inspector" by selecting "Window Settings..." in the "Terminal" menu. To type many multibyte characters, you need the option key. To use it, you must have the "Use option key as meta key" checkbox unchecked, although I find the meta key too important in UNIX to leave that unchecked. In the dropdown menu in the "Display" pane of the "Terminal Inspector", you should set the "Character Set Encoding" to "Unicode (UTF-8)". In the "Emulation" pane of the same window, you must uncheck the "Escape non-ASCII characters" checkbox. That is important as I've read that it is checked by default and that can produce some pretty strange results.
       Now it's helpful to use a very modern shell. For instance, the latest beta version of zsh-4.3 has the best unicode support of all versions of zsh. After you've chosen a good shell, you're at the mercy of the application that you're using. As I gather you've noticed, vim has excellent unicode support and picks up on the LC settings. I have no idea about nano but it is meant to be a minimal text editor.
       I know that my settings allow me to type extended characters and the "Character Palette" lets me insert more. As far as other command line utilities go, the best you can do is to choose well and keep your apps as up-to-date as possible. Fink or Darwin Ports can often help in that regard.
    Gary
    ~~~~
       This generation doesn't have emotional baggage.
       We have emotional moving vans.
             -- Bruce Feirstein

  • X11 and Terminal.app

    Has anyone else noticed strange behavior in X11 in Leopard? Whenever I tell Leopard to keep X11 in the Dock and click on it there to launch it . . it starts a new icon and hoses up.
    It also starts xterm by default . . but it's not listed in xinitrc anymore like it used to be before. . anyone know where I can remove this?
    Also terminal.app does not recognize the Scrollbar plist attribute now. Even if I manually insert Scrollbar No in com.apple.terminal.plist the scrollbar is always there.

    Well I have made some progress. I have found out the following.
    X11.app COMPLETELY ignores xinitrc and on top of that they moved it out of /etc/X11/xinit/xinitrc and buried it in /usr/X11/lib/X11/xinit/xinitrc
    Either that or they didn't use a symbolic link in /etc . . (which I will try later today)
    Also now something in X11.app generates 2 .plist files in ~/Library/Preferences/
    org.x.X11.plist
    org.x.X11_launcher.plist
    The second is what launches xterm by default. . . I tried removing the entry, but when I do it stops X11 from launching properly. Also trying to launch quartz-wm from here also stops it from running properly.
    Why did apple have to muck with something that already worked very well.
    Bring back the use of xinitrc and drop the .plist launcher PLEASE.
    And fix terminal so that we can dump the scrollbar PLEASE!
    If anyone else finds a work around for this stuff please post it here.
    Thanks,
    Bjones74

  • Terminal crashes and gives me this Application Specific Information: objc[375]: garbage collection is OFF *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSKeyedUnarchiver initForReadingWithData:]: incomprehensib

    Every time I try to open terminal I get this:
    Process:         Terminal [375]
    Path:            /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal
    Identifier:      com.apple.Terminal
    Version:         2.2.3 (303.2)
    Build Info:      Terminal-303002000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [243]
    Date/Time:       2013-04-27 21:01:14.584 -0700
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          -253893 sec
    Crashes Since Last Report:           20
    Per-App Interval Since Last Report:  108 sec
    Per-App Crashes Since Last Report:   15
    Anonymous UUID:                      F9AFDFB7-B568-4DCF-8FA3-DD4CDD3613ED
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[375]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSKeyedUnarchiver initForReadingWithData:]: incomprehensible archive (0x62, 0x70, 0x6c, 0x69, 0x73, 0x74, 0x30, 0x30)'
    *** First throw call stack:
              0   CoreFoundation                      0x00007fff89f0bf56 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff85920d5e objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff89f0bd8a +[NSException raise:format:arguments:] + 106
              3   CoreFoundation                      0x00007fff89f0bd14 +[NSException raise:format:] + 116
              4   Foundation                          0x00007fff868bb61b -[NSKeyedUnarchiver initForReadingWithData:] + 2611
              5   Foundation                          0x00007fff868fffbb +[NSKeyedUnarchiver unarchiveObjectWithData:] + 68
              6   Terminal                            0x0000000105c39e43 Terminal + 20035
              7   Terminal                            0x0000000105c37c99 Terminal + 11417
              8   Terminal                            0x0000000105c377b2 Terminal + 10162
              9   Terminal                            0x0000000105c373f2 Terminal + 9202
              10  Terminal                            0x0000000105c3731c Terminal + 8988
              11  Terminal                            0x0000000105c36d30 Terminal + 7472
              12  AppKit                              0x00007fff86bb0389 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1311
              13  AppKit                              0x00007fff86ba68bb loadNib + 322
              14  AppKit                              0x00007fff86ba5db8 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
              15  AppKit                              0x00007fff86ba5cd3 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
              16  AppKit                              0x00007fff86ba5c16 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
              17  AppKit                              0x00007fff86e16cd7 NSApplicationMain + 398
              18  Terminal                            0x0000000105c36164 Terminal + 4452
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff85d21ce2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8ac267d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x00007fff8ac17a7a abort + 143
    3   libc++abi.dylib                         0x00007fff890f07bc abort_message + 214
    4   libc++abi.dylib                         0x00007fff890edfcf default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff859211b9 _objc_terminate + 94
    6   libc++abi.dylib                         0x00007fff890ee001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib                         0x00007fff890ee05c std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff890ef152 __cxa_throw + 114
    9   libobjc.A.dylib                         0x00007fff85920e7a objc_exception_throw + 327
    10  com.apple.CoreFoundation                0x00007fff89f0bd8a +[NSException raise:format:arguments:] + 106
    11  com.apple.CoreFoundation                0x00007fff89f0bd14 +[NSException raise:format:] + 116
    12  com.apple.Foundation                    0x00007fff868bb61b -[NSKeyedUnarchiver initForReadingWithData:] + 2611
    13  com.apple.Foundation                    0x00007fff868fffbb +[NSKeyedUnarchiver unarchiveObjectWithData:] + 68
    14  com.apple.Terminal                      0x0000000105c39e43 0x105c35000 + 20035
    15  com.apple.Terminal                      0x0000000105c37c99 0x105c35000 + 11417
    16  com.apple.Terminal                      0x0000000105c377b2 0x105c35000 + 10162
    17  com.apple.Terminal                      0x0000000105c373f2 0x105c35000 + 9202
    18  com.apple.Terminal                      0x0000000105c3731c 0x105c35000 + 8988
    19  com.apple.Terminal                      0x0000000105c36d30 0x105c35000 + 7472
    20  com.apple.AppKit                        0x00007fff86bb0389 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1311
    21  com.apple.AppKit                        0x00007fff86ba68bb loadNib + 322
    22  com.apple.AppKit                        0x00007fff86ba5db8 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    23  com.apple.AppKit                        0x00007fff86ba5cd3 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    24  com.apple.AppKit                        0x00007fff86ba5c16 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    25  com.apple.AppKit                        0x00007fff86e16cd7 NSApplicationMain + 398
    26  com.apple.Terminal                      0x0000000105c36164 0x105c35000 + 4452
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff85d227e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff87b14786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff87b13316 _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff85d22192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ac26594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ac27b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff85d22192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ac26594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ac27b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff85d227e6 kevent + 10
    1   com.apple.Terminal                      0x0000000105c36b9d 0x105c35000 + 7069
    2   com.apple.Foundation                    0x00007fff868d672a -[NSThread main] + 68
    3   com.apple.Foundation                    0x00007fff868d66a2 __NSThread__main__ + 1575
    4   libsystem_c.dylib                       0x00007fff8ac248bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8ac27b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff65832fb8  rdx: 0x0000000000000000
      rdi: 0x0000000000000b07  rsi: 0x0000000000000006  rbp: 0x00007fff65832fe0  rsp: 0x00007fff65832fb8
       r8: 0x00007fff72276fb8   r9: 0x00007fff65832a48  r10: 0x00007fff85d21d0a  r11: 0xffffff80002dad60
      r12: 0x0000000105e245c0  r13: 0x0000000105e24b20  r14: 0x00007fff72279960  r15: 0x00007fff65833130
      rip: 0x00007fff85d21ce2  rfl: 0x0000000000000246  cr2: 0x00000001100f3000
    Logical CPU: 0
    Binary Images:
           0x105c35000 -        0x105ce5fff  com.apple.Terminal (2.2.3 - 303.2) <4FE3571C-852C-3F5E-BA6A-87B48ED5E043> /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal
        0x7fff65835000 -     0x7fff65869baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff810df000 -     0x7fff810f6fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff810f7000 -     0x7fff810f8fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff811ad000 -     0x7fff814d9fff  com.apple.HIToolbox (1.9 - ???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff81524000 -     0x7fff81566ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff815df000 -     0x7fff81a0cfff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff81a0d000 -     0x7fff81a0dfff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff81a0e000 -     0x7fff81aedfff  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <047DFE61-500F-3F11-9881-D0844D2FCE5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff81b1e000 -     0x7fff81b22ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff81b23000 -     0x7fff81c28fff  libFontParser.dylib (??? - ???) <D2E56B6E-3182-3667-A78C-4172C435523A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff820ba000 -     0x7fff820befff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff820bf000 -     0x7fff82117ff7  libTIFF.dylib (??? - ???) <59353B7F-EA9A-32D5-A501-283443B30C60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff82118000 -     0x7fff8224efff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8224f000 -     0x7fff82256fff  libGFXShared.dylib (??? - ???) <D3598924-B167-372E-8C9F-1BBF68852542> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff82258000 -     0x7fff8225dfff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff8226b000 -     0x7fff822f0ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff829c3000 -     0x7fff829e0ff7  com.apple.openscripting (1.3.3 - ???) <F5E34F54-CE85-334B-8F25-53581D43960C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff829e1000 -     0x7fff829f6fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff829f7000 -     0x7fff82a02fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff82a03000 -     0x7fff82a03fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff82a04000 -     0x7fff82a43fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff82cbb000 -     0x7fff82ebdfff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <0176782F-9526-3905-813A-7A5676EC2C86> /usr/lib/libicucore.A.dylib
        0x7fff82f0b000 -     0x7fff8317ffff  com.apple.CoreImage (7.99.1 - 1.0.1) <4BB09B79-275B-364C-9466-0FF36ABB1218> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff83180000 -     0x7fff831a9fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8342a000 -     0x7fff83431ff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff83432000 -     0x7fff83434fff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
        0x7fff83435000 -     0x7fff83435fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff834db000 -     0x7fff83543ff7  com.apple.coreui (1.2.2 - 165.11) <9316266A-39CA-3EC7-9C9E-726462CEFF4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff83792000 -     0x7fff83932ff7  com.apple.QuartzCore (1.7 - 270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8393f000 -     0x7fff83941fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff83942000 -     0x7fff83a26ff7  com.apple.CoreServices.OSServices (478.50 - 478.50) <3D6AA4EF-C601-36C7-8F3A-A00964F01759> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff83a66000 -     0x7fff83b2dff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff83e54000 -     0x7fff83e62fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff83e71000 -     0x7fff83e9efe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff83e9f000 -     0x7fff83f22fef  com.apple.Metadata (10.7.0 - 627.37) <B9BEB598-B6F2-3BFF-A8F3-C3C87CD076AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff83f23000 -     0x7fff83f75ff7  libGLU.dylib (??? - ???) <DB906997-0F70-3469-BA0E-2F1DDBEAD8D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff83fb0000 -     0x7fff83fb0fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff83fb1000 -     0x7fff83fc0ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff83fe9000 -     0x7fff8405ffff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff84060000 -     0x7fff84086fff  com.apple.framework.familycontrols (3.0 - 300) <6F0C58C0-22E7-3877-8CFA-1ED0CB3CE38B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff840a3000 -     0x7fff840a8fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff840fe000 -     0x7fff840ffff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff84187000 -     0x7fff84195ff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
        0x7fff84365000 -     0x7fff8436bfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8436c000 -     0x7fff84596fe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff84683000 -     0x7fff8468afff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff849e3000 -     0x7fff84a84fff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff84a85000 -     0x7fff84a97ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff84dbf000 -     0x7fff84dbffff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff85832000 -     0x7fff8585eff7  com.apple.CoreServicesInternal (113.19 - 113.19) <74532B3B-EDE0-3553-9BED-F02B9CDF1FF7> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8585f000 -     0x7fff8588fff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff858d9000 -     0x7fff858e0fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff858e1000 -     0x7fff85909fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8590a000 -     0x7fff859eee5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff859ef000 -     0x7fff859f8ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff859f9000 -     0x7fff85a5bff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff85a5c000 -     0x7fff85a64fff  libsystem_dnssd.dylib (??? - ???) <584B321E-5159-37CD-B2E7-82E069C70AFB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff85a65000 -     0x7fff85b18ff7  com.apple.CoreText (220.22.0 - ???) <A7A1096F-A211-3775-BA33-08FE98D27F08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff85b19000 -     0x7fff85b84ff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff85b85000 -     0x7fff85c1bff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff85c1c000 -     0x7fff85c45fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff85c51000 -     0x7fff85cc4fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff85d0a000 -     0x7fff85d0afff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff85d0b000 -     0x7fff85d2bfff  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
        0x7fff85d2c000 -     0x7fff85d49fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff85d4a000 -     0x7fff85eb1fff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff85fb0000 -     0x7fff85fb0fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff86377000 -     0x7fff8638aff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8638b000 -     0x7fff863affff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff863b0000 -     0x7fff86452fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff864e7000 -     0x7fff8650bfff  com.apple.RemoteViewServices (1.5 - 44.2) <A0417D7F-22E9-3FD8-AC55-67654D8E93EB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8655f000 -     0x7fff8687bfff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <4FC1AB30-022C-3C67-AC46-FDCBFCB7EEDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8687c000 -     0x7fff86b95fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff86b96000 -     0x7fff8779cfff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8779d000 -     0x7fff877a3fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff87ad8000 -     0x7fff87af7fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff87af8000 -     0x7fff87b07fff  com.apple.opengl (1.8.1 - 1.8.1) <51B34133-CEE3-3FC6-82AC-ADF567AE673C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff87b08000 -     0x7fff87b0dfff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff87b0e000 -     0x7fff87b10fff  libCVMSPluginSupport.dylib (??? - ???) <982F1ED4-3CBB-3161-8BEA-8A980C27FCC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff87b11000 -     0x7fff87b1ffff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
        0x7fff87b20000 -     0x7fff87b24fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff87c68000 -     0x7fff87c68fff  libOpenScriptingUtil.dylib (??? - ???) <A7847713-F410-39C0-884F-A7188A18E742> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff87c78000 -     0x7fff87c7efff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff87cd6000 -     0x7fff87cd9fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff87ff2000 -     0x7fff8806dff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8806e000 -     0x7fff8806ffff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff880d2000 -     0x7fff8816cff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff881ba000 -     0x7fff881bafff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff881bb000 -     0x7fff881cdff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff881dc000 -     0x7fff8824cfff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff883d8000 -     0x7fff883ddff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff883de000 -     0x7fff883e9ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff88851000 -     0x7fff88868fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff888b9000 -     0x7fff888befff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff888c4000 -     0x7fff888e0ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff889b1000 -     0x7fff889b4ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff889d0000 -     0x7fff889d6ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff88a33000 -     0x7fff88d28ff7  com.apple.security (7.0 - 55148.6) <4535E500-973A-3BA7-AF65-DF5CF0658F02> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff88d29000 -     0x7fff88d6afff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff88de8000 -     0x7fff88debfff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff88dec000 -     0x7fff88e2cff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <7D2E5016-A960-3ADE-B042-F74063E79550> /usr/lib/libcups.2.dylib
        0x7fff88e2d000 -     0x7fff88f22fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff88f2f000 -     0x7fff88f39ff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
        0x7fff88f3a000 -     0x7fff88fdffff  com.apple.ink.framework (10.7.5 - 113) <1AE6676D-490A-36C2-B6CC-00F93AEB31DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8902a000 -     0x7fff8904bfff  libPng.dylib (??? - ???) <E2B52527-4D0C-3595-BB13-8E8EF364E998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff890e8000 -     0x7fff890f3ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff890f4000 -     0x7fff890f5ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff890f6000 -     0x7fff89203fff  libJP2.dylib (??? - ???) <6AF1F5FC-34D4-3278-BEBB-0712B81890B4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff89204000 -     0x7fff89205fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff8920a000 -     0x7fff89323fff  com.apple.DesktopServices (1.6.5 - 1.6.5) <5E7DD5F4-B4DA-3F75-A14A-3494E81CFBA0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff89acd000 -     0x7fff89aceff7  libsystem_sandbox.dylib (??? - ???) <5422BA4A-4C96-3BC1-AF83-14F0CED0ECB5> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff89e68000 -     0x7fff8a03cff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8a03d000 -     0x7fff8a0c1ff7  com.apple.ApplicationServices.ATS (317.12.0 - ???) <BE3C156D-8326-37AA-BC4E-D3C0D31BF976> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8a0c2000 -     0x7fff8a0d8fff  libGL.dylib (??? - ???) <A4876AE9-DDFE-3B9A-874E-09BC29D46C39> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8a0d9000 -     0x7fff8a0dbff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8a130000 -     0x7fff8a1a6ff7  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <A24FC3DA-4FFA-3DD2-9DCC-2B8D1B3BF97C> /usr/lib/libc++.1.dylib
        0x7fff8a1a7000 -     0x7fff8ab45a27  com.apple.CoreGraphics (1.600.0 - ???) <576777EA-921B-3D94-98C3-40A9CF8EBD18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8ab46000 -     0x7fff8ab81fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff8abd6000 -     0x7fff8acb3fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff8acb4000 -     0x7fff8ad10ff7  com.apple.HIServices (1.21 - ???) <B012EE97-D1CD-3F4B-812D-9AC7E6852FE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8ad11000 -     0x7fff8ad1eff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff8af11000 -     0x7fff8af44ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8af45000 -     0x7fff8af7ffe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8af80000 -     0x7fff8af81fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff8af82000 -     0x7fff8afd6ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8afd7000 -     0x7fff8b025fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff8b445000 -     0x7fff8b499fff  libFontRegistry.dylib (??? - ???) <60FF9C2C-5E44-3C49-8A08-F26101898F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8b49a000 -     0x7fff8ba7efff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8ba8f000 -     0x7fff8baf7ff7  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <9987DC46-2A96-3BA0-B88B-04E573C0AD9B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8bb01000 -     0x7fff8bb15ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8bb16000 -     0x7fff8bb16fff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8bbcf000 -     0x7fff8bcd6fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff8bcd7000 -     0x7fff8bd23ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8beb0000 -     0x7fff8beeafff  libncurses.5.4.dylib (5.4.0 - compatibility 5.4.0) <387DE593-9CC5-38C7-911B-A5F2264D34F2> /usr/lib/libncurses.5.4.dylib
        0x7fff8c15d000 -     0x7fff8c624fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8c68c000 -     0x7fff8c68ffff  libCoreVMClient.dylib (??? - ???) <28CB0F3F-A202-391F-8CAC-FC9A1398A962> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8c690000 -     0x7fff8c6bbff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff8c6e5000 -     0x7fff8c842fff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <5F1E4695-BC74-3ADD-8345-627BCD68201A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8d5ac000 -     0x7fff8d5c2ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <1AD40E02-2126-377B-A0D2-CBB21D932558> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8d5c3000 -     0x7fff8d623fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8d624000 -     0x7fff8d631fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <72C53E7B-C222-3BE5-9984-FDC328CC4846> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8d632000 -     0x7fff8d68dff7  com.apple.opencl (2.0.19 - 2.0.19) <B05BF605-73B8-328F-A228-6FA59E1FC73A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8d86b000 -     0x7fff8d870fff  libGIF.dylib (??? - ???) <58A4492D-AAE7-3B8F-8B06-62867471A3EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8d8f7000 -     0x7fff8d9f9fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff8dd49000 -     0x7fff8de55fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8de56000 -     0x7fff8de96fe7  libGLImage.dylib (??? - ???) <0B7DAB2B-F1C6-39C7-B864-61EF683B6656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 606
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=143.5M resident=102.0M(71%) swapped_out_or_unallocated=41.4M(29%)
    Writable regions: Total=32.9M written=624K(2%) resident=3456K(10%) swapped_out=0K(0%) unallocated=29.6M(90%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG image                              4K
    CG shared images                    104K
    CoreServices                        800K
    MALLOC                             21.8M
    MALLOC guard page                    48K
    STACK GUARD                        56.0M
    Stack                              10.0M
    VM_ALLOCATE                          84K
    __CI_BITMAP                          80K
    __DATA                             12.9M
    __IMAGE                             528K
    __LINKEDIT                         49.1M
    __TEXT                             94.4M
    __UNICODE                           544K
    mapped file                        29.8M
    shared memory                       312K
    ===========                      =======
    TOTAL                             276.4M
    Model: MacBookPro4,1, BootROM MBP41.00C1.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.27f3
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR2 SDRAM, 667 MHz, 0xCE00000000000000, 0x4D342037305435363633435A332D43453620
    Memory Module: BANK 1/DIMM1, 2 GB, DDR2 SDRAM, 667 MHz, 0xCE00000000000000, 0x4D342037305435363633435A332D43453620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.36.15)
    Bluetooth: Version 4.0.8f17, 2 service, 11 devices, 1 incoming serial ports
    Network Service: smokerings, AirPort, en1
    Serial ATA Device: FUJITSU MHY2200BH, 200.05 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-867
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd400000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x820f, 0x1a110000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0230, 0x5d200000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x5d100000 / 2

    You probably need to reinstall OS X, but try this first.
    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, or by a peripheral device.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in 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, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • When I try to download from apps store and hit install button it just becomes a colored block and won't let me install anything.

    When I try to download from apps store and hit the install button it just becomes a colored box and nothing downloads. 

    If you have an iPod with iOS 3.1.3 then it is due to an Apple problem.

Maybe you are looking for

  • While selecting Frame for Table in Smartform

    hi   While i am selecting Frame for Table in Smartform , it displaying very Bold frame. wat is the reason, guide me

  • HT1386 How to get Wi-Fi syncing on my Ipod Touch 4G

    My Ipod can no longer be found on my computer that has Itunes installed on it. I talked to a professional and he said it's a major problem with my computer software that needs repairs, which I have no money for. I have another computer that can sync

  • IChat across subnets

    Hi, i`m having a big problem in my office, Because the size of office, we need to have two subnets (10.230.5.XX & 10.230.1.XX) The distribution of IPs let some the computer divided in these two subnets, but them can`t talk each other, through the bon

  • No audio on my Dell PC

    I installed DriverUpdate last March.  Suddenly getting messages ITunes not installed properly. and No audio devices detected, Codec error 10.  ?  any thoughts. Thx

  • New Advanced tab for Calibration-how to use properly?

    Dear Adobe and Lens profilers, I have just used the newest Lens Profile version and noticed the new "Advanced" tab on the right beside "Calibration".  There are lots of choices for rectilinear, fisheye, distortion, etc.  I need information on how to