Mac App Store app running programs in /usr/bin or /sbin

Hello,
The Mac Developer Program License Agreement says:
3.3.4          All files necessary for the Application to execute must be in the Application bundle submitted to Apple and must be installed by the Mac App Store.
This precludes using NSTask to run a program in /usr/bin or /sbin to obtain some output. Seems pretty restrictive since there is a lot of good functionality there and most of it without copyright. There is a fine line between running /sbin/md5 on a file to get a hash, and calling md5() in libssl.dylib, making me wonder what is the purpose of the restriction.
The question, dumb as it may sound given section 3.3.4 of the agreement, is, should I eliminate all code that runs other programs?
If the Mac App Store app runs without running other programs, but includes other features by running those programs, does it still violate section 3.3.4?
Has anyone submitted a program that calls others and, if so, was it accepted?
Thanks

CTSdev wrote:
I've never had a problem with NSTask. In what way is it clunky?
You have to set it up, launch it, possibly send it data, collect the output, parse it. I have an app circulating around here called EtreCheck that does lots and lots of NSTask. It isn't sandboxed though. The problem is that your NSTask inherits your app sandbox and it may expect to read or write to places that it can't. You can use it, but if there is an alternative in a framework or library, that would be better. I think the biggest problem with NSTask is that they are procedural. You have to start it, run it, wait for it, and then handle the output. You will have to do that in a thread or block.
I used /sbin/md5 as an example since it has an analog library routine. /usr/bin/cksum is the more direct way to verify file integrity. I would also like to run /usr/bin/compress. Certainly easier than writing & testing LZW or Huffman code.
I think you could probably run both of those. There may be easier versions around. iOS people can't do any of that so there may be some handy Cocoa libraries that will do just what you need. If you just want to compress data, libz is in the OS and not too terribly difficult to use.
I will probably just have my app run those programs and describe this in my submission to Apple, If they say no, then I'll code those pieces too.
I don't think you really have to describe anything other than some of your entitlements. As long as it works on your machine and you aren't calling any private APIs then you should be fine. I was only half-joking before. If you really aren't a fraudster, then you really have nothing to worry about at all.
I don't know what kind of checks they do for that kind of thing. Pretty much everything I have done so far has some feature that looks like it should be forbidden by the sandbox, but really isn't. I display copyrighted Apple art in ways that aren't normally possible. I launch Terminal. I just released an app that has serious amounts of integration with the Finder. No problems.

Similar Messages

  • Mac Apps run on a PPC?

    Are there Mac Apps that run on a PPC or only for Intel based Macs?

    There are many, many apps that run on PPC and even more that are Universal, which means they run both on PPCs and intels.  When you fins an app you like, see if it's either one of those, if it says intel only, you're out of luck.

  • Fedora merging /usr/bin with /sbin and /bin

    I just read this mail on the fedora list regaring the proposal to merge the different directories for binaries:
    https://lists.fedoraproject.org/piperma … 58845.html
    It does seem like a practice from times long gone.
    What is your take on this? Wouldn't this be something in the spirit of Arch, too?

    I came across this interesting proposal and was interested how the Archlinux community feels about this:
    http://www.freedesktop.org/wiki/Software/systemd/TheCaseForTheUsrMerge wrote:
    Improved compatibility with other Unixes/Linuxes in behaviour: After the /usr merge all binaries become available in both /bin and /usr/bin, resp. both /sbin and /usr/sbin (simply because /bin becomes a symlink to /usr/bin, resp. /sbin to /usr/sbin). That means scripts/programs written for other Unixes or other Linuxes and ported to your distribution will no longer need fixing for the file system paths of the binaries called, which is otherwise a major source of frustration. /usr/bin and /bin (resp. /usr/sbin and /sbin) become entirely equivalent.
    Improved compatibility with other Unixes (in particular Solaris) in appearance: The primary commercial Unix implementation is nowadays Oracle Solaris. Solaris has already completed the same /usr merge in Solaris 11. By making the same change in Linux we minimize the difference towards the primary Unix implementation, thus easing portability from Solaris.
    Improved compatibility with GNU build systems: The biggest part of Linux software is built with GNU autoconf/automake (i.e. GNU autotools), which are unaware of the Linux-specific /usr split. Maintaining the /usr split requires non-trivial project-specific handling in the upstream build system, and in your distribution's packages. With the /usr merge, this work becomes unnecessary and porting packages to Linux becomes simpler.
    Improved compatibility with current upstream development: In order to minimize the delta from your Linux distribution to upstream development the /usr merge is key.

  • Can't start apps bought in Mac App store

    One of the users (my son) on my Mac is having trouble running programs bought on the Mac App Store.  The account has parental controls "on" but as far as I can tell, all programs from the app store have been set so that they can be run.
    If I restart the computer and log in as that user, the app can be run, but later on it won't start.  Is there a preferences file that can get corrupted?  Is there another way to fix this?
    thanks!
    Dan

    Thanks for the suggestion.  I tried this but it did not fix the problem.
    I did try turning off parental controls, which enabled me to run the program.  I then turned parental controls on for the account, and am still able to run the program.  I have had this behavior before though - something I do lets me run the program for a short time, but the problem returns a few hours later.  I'll try it in the morning and see if it still works...

  • /usr/bin/bash runs a new shell where PS1 is not set

    When I execute the command bash in my terminal, it opens a new shell which properly reads all bashrc contents. But when I run /usr/bin/bash, then it is as if  $PS1 is not set and those parts in my bashrc that are supposed to used only for interactive shells are not read at all.
    The weird part is running which bash gives /usr/bin/bash. So, I'm not able to figure out why running bash and /usr/bin/bash produce different results. Also, although it appears as if $PS1 is not being set (based on reading of my bashrc), the prompt is still being set.
    Can anyone explain why this variation is happening?
    PS: Not sure if this matters, but my bashrc is not in the default location. It is in ~/.config/bash and I've modified my /etc/bash.bashrc to source the local bashrc from the custom location.
    Last edited by hashken (2015-04-15 13:19:03)

    Does the behaviour persist if you move .bashrc back to the conventional location?
    Yeah, the behaviour persists even after moving back bashrc.
    The contents of my /etc/bash.bashrc file:
    # /etc/bash.bashrc
    # If not running interactively, don't do anything
    if [[ ! $- != *i* ]]; then
    PS1='[\u@\h \W]\$ '
    PS2='> '
    PS3='> '
    PS4='+ '
    case ${TERM} in
    xterm*|rxvt*|Eterm|aterm|kterm|gnome*)
    PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
    screen)
    PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033_%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
    esac
    [ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
    fi
    XDG_CONFIG_HOME=$HOME/.config
    XDG_CACHE_HOME=$HOME/.cache
    XDG_DATA_HOME=$HOME/.local/share
    if [ -f "$XDG_CONFIG_HOME/bash/bashrc" ] && [ "$0" = "bash" ]; then
    . "$XDG_CONFIG_HOME/bash/bashrc"
    fi
    if [ -f "$XDG_DATA_HOME/bash/history" ] && [ "$0" = "bash" ]; then
    HISTFILE="${XDG_DATA_HOME}/bash/history"
    fi
    The contents of my bashrc file:
    if [ -f $XDG_CONFIG_HOME/bash/xdg ]; then
    . $XDG_CONFIG_HOME/bash/xdg
    fi
    if [ -f $XDG_CONFIG_HOME/bash/private ]; then
    . $XDG_CONFIG_HOME/bash/private
    fi
    # If not running interactively, don't do anything else
    if [ -z "$PS1" ]; then
    PATH=$PATH:$HOME/bin/others
    return
    fi
    #test "$PS1" || return
    if [ -f $XDG_CONFIG_HOME/bash/colors ]; then
    . $XDG_CONFIG_HOME/bash/colors
    fi
    if [ -f $XDG_CONFIG_HOME/bash/general ]; then
    . $XDG_CONFIG_HOME/bash/general
    fi
    if [ -f $XDG_CONFIG_HOME/bash/aliases ]; then
    . $XDG_CONFIG_HOME/bash/aliases
    fi
    if [ -f $XDG_CONFIG_HOME/bash/functions ]; then
    . $XDG_CONFIG_HOME/bash/functions
    fi
    if [ -f $XDG_CONFIG_HOME/bash/completion ]; then
    . $XDG_CONFIG_HOME/bash/completion
    fi
    What makes you think $PS1 is not being set if the prompt is correct?
    Both bash/xdg and bash/private are getting sourced. But when I run /bin/bash, the other files (colors, general, aliases etc.) are not getting sourced. Since, I'm doing a $PS1 test before sourcing these files, I concluded that $PS1 is not being set.

  • [SOLVED] .. error: coreutils: /usr/bin/install exists in filesystem

    Hi All,
    Getting the following error:
    (85/85) checking for file conflicts [###########################] 100%
    error: failed to commit transaction (conflicting files)
    coreutils: /usr/bin/install exists in filesystem
    I am reluctant to delete/move /usr/bin/install for fear of breaking the system ..
    Anyone help here?
    Last edited by bmentink (2012-04-05 02:26:42)

    I just ran into this same issue today while performing a full system upgrade. After some investigation, I came to agree with the OP that manually removing "/usr/bin/install" is the correct action to take.
    Prior to successfully executing the full system upgrade, I found that /usr/bin/install was a symlink to /bin/install. Using "pacman -Qo /bin/install", I found that the file /bin/install was owned by the coreutils 8.15-1 package. The symlink /usr/bin/install, however, was not owned by any package. The conflict arises because coreutils 8.16-2 wants to put the new install program in /usr/bin instead of its previous location under /bin.
    My memory is a bit fuzzy, but I seem to recall running into a problem installing some third party library that had /usr/bin/install hard-coded into its build script and claimed the file didn't exist. I may have manually created the symlink /usr/bin/install to /bin/install as a quick-fix, then forgot to remove it. In retrospect, I could have confirmed/refuted this hypothesis by comparing the time stamp on the symlink /usr/bin/install to /bin/install. If the symlink was created well after /bin/install, then I'm probably to blaim; on the other hand, if the symlink was created essentially at the time /bin/install was created, then most likely the creators of the coreutils package forgot to claim ownership of the symlink.

  • Sub:   /usr/bin/ksh: sqlplus:  not found.

    Hi,
    I installed Oracle 9R2 client on one server and i'm not able to execute sqlplus command it's throwing following error's
    :oracle:/home/oracle#sqlplus
    /usr/bin/ksh: sqlplus: not found.
    :oracle:/u01/app/oracle/product/9.2.0#sqlplus
    /usr/bin/ksh: sqlplus: 0403-006 Execute permission denied.
    then i gave 777 permission to /u01/app/oracle/product/9.2.0
    if i execute /u01/app/oracle/product/9.2.0/bin#sqlplus
    i can able to connect
    this is the Env variable i set in the .profile(AIX 5.2) PATH=/usr/bin:/etc:/usr/sbin:$ORACLE_HOME/bin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:.
    Can anyone help me on this
    Thanks!
    Krishna R

    then i gave 777 permission to /u01/app/oracle/product/9.2.0well, I would not do that...

  • /usr/bin binaries automatically executed?

    "Houston, we have a problem"
    I've put in /usr/bin/ a simple script  /usr/bin/pumount (I moved the original pumount in pumount_normal)
    the pumount content is this:
    #!/bin/bash
    pumount_original $1
    notify-send -i drive-removable-media 'USB storage device removed: ' $1
    echo media_removed > /dev/vc/1
    the problem is that it is AUTOMATICALLY launched at every startup, so (I suppose) every /usr/bin/ is launched on startup...
    (I have my noteo notify the launch of the notify-send and "media_removed" appear on my vc1)
    and this appen too for some other "folder" for scripts... (I tried /usr/sbin too)
    now, maybe this is totally normal and I'm simply stupid (:P) but /usr/bin contains 1140 files on my system....
    I'm not sure why this happen, and I reinstalled arch one month ago, so I don't think I already broke it << (I hope at least..)
    Tell me if you too experiment this issue, and if it's an issue..
    Thanks for the attention..
    bye

    sniffles wrote:
    _Marco_ wrote:@sniffles
    why should my system call a "pumount " without args in the boot?
    I think obviously there is a problem, the point is "it's only for me or for every archer?"
    I have no idea why, I don't have that particular thing on my system. Now that iphitus gave you a reason, my scenario does not seem so laughable, does it? A lot more credible than "omg my system runs everything in /usr/bin/ on every boot!" (do you even realise what that would do?)
    well, did you have an idea before iphitus pointed out this?
    I just had mine script executed on every boot and I didn't found any reason for this...
    I realise what that would do, but if I don't understand something I study it (tried to get it work for two hours) and, if I still don't understand, I ask to someone more expert.
    excuse me if I choose this forum.. didn't know it was a philosophy forum, I thought it was ArchLinux forum.
    edit:
    for the fork bomb it was more a "demonstrative" thing that anything else... (the "aim" were more important of the "result")
    if I had the will to crash his computer I would have tested it on my box first... don't you think?
    anyway this is not the point.
    next time I ask something stupid, please,  simply start reading another topic.
    Nobody need that kind of help.
    Last edited by _Marco_ (2008-06-09 10:16:26)

  • Can I run Mac App Store programs from an external drive?

    I have a 13" MacBook Air (128); but I have tons of programs that I have purchased from the Mac App Store, especially large training video programs. Even though I don't have a shortage of drive space yet, I certainly could find myself in that position if I keep ALL my programs and data on the flash drive. I really don't need to keep all these on my main drive; but I would like to be able to run one when I need it. Is there any problem with moving the program from APPLICATIONS to an external drive and running it from there? Should I leave the support files & folders (preference & application support) on the flash drive?
    THANKS.

    Thanks for your help on this.
    The MacBook Air is a joy; but the limited drive space is the only caveat. I really should have spent the extra money on the 256 gb flash drive; but at the time I was in the mood to go minimalist. Unfortunately that doesn't work well for me.
    I have already moved all my music to iTunes Match and moved the backups to the external drive. I also keep most of my archive data on the 3 tb external drive. It's mostly those training video programs which are about a gig each that I want to move to the external drive ... ones I would not use that often ... so it's nice to know I can do that.
    THANKS AGAIN.

  • Some programs do not run: update software, mac App Store, Calendar, ibooks.V the same time, the program iTunes, iPhoto and other work normally. What to do?

    Some programs do not run: update software, mac App Store, Calendar, ibooks.V the same time, the program iTunes, iPhoto and other work normally. What to do?

    Hello JohnnyChin95,
    You absolutely can just reinstall OS X Mavericks without having to erase and install. The steps to do that are almost the same as the only thing you do differently is that you do not go to Disk Utility to erase the drive. Just go to the Reinstall OS X option and pick your Hard Drive and follow the on screen instructions to get it going. Check out the article below for the step by step process. 
    OS X Mavericks: Reinstall OS X
    http://support.apple.com/kb/PH13871
    Regards,
    -Norm G.  

  • Re-install Lion, reinstall 10.6.8 combo, error running Mac App Store

    I need to re-download and install Lion. To do so I need to get to the App Store.
    To get to the App Store I need the App Store installer for Mac OS X 10.6.8, the
    latest Snow Leopard.
    I cannot go to the Mac App Store because the App Store program I have is for
    Lion, not Snow Leopard. I moved the Lion App Store application out of the
    Applications folder and deleted it and ran Software Update, SU says I'm up
    to date. So I download the OS X 10.6.8 Combo update.
    I try to run that Mac App Store application and got a memory dump looking
    dialog that says I had an unknown error and it may be because the version of the Mac App Store
    I tried to run is for the wrong version of OSX. This  the error I got when I ran the Lion version
    of the Mac App Store application resulting in my deleting it back before I installed the Combo update for 10.6.8.
    Perhaps I missed deleting another component still hanging around from Lion?
    Any ideas of what to try next?

    I was on the delevoper's list for LIon and have now had to put a new hard drive in and want to reinstall Lion on my new hard drive but when I go to App store and sign in, under purchases it says I have not purchased anything.
    Any ideas as to how to get back to Lion?
    GH

  • Running 10.6.8, I can't access the Mac App store. WHy not?

    Running 10.6.8, I can't access the Mac App store. WHy not?
    Thanks,
    Ty Ford

    Apparently, 10.6.8 can't access the app store. How weird is that?
    When I get to the front door and try to get in, I get this..the app quits.
    Process: App Store [20498]
    Path: /Applications/App Store.app/Contents/MacOS/App Store
    Identifier: com.apple.appstore
    Version: 1.0.2 (63.1)
    Build Info: Firenze-630100~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [95]
    Date/Time: 2012-06-27 10:13:00.711 -0400
    OS Version: Mac OS X 10.6.8 (10K549)
    Report Version: 6
    Interval Since Last Report: 3924860 sec
    Crashes Since Last Report: 8
    Per-App Interval Since Last Report: 12 sec
    Per-App Crashes Since Last Report: 8
    Anonymous UUID: 420C741C-8E1D-477C-8A9B-BBCFB0D59A0F
    Exception Type: EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    *** Terminating app due to uncaught exception 'NSImageCacheException', reason: 'Cannot lock focus on image , because it is size zero.'
    *** Call stack at first throw:
    0 CoreFoundation 0x00007fff82904784 __exceptionPreprocess + 180
    1 libobjc.A.dylib 0x00007fff894f8f03 objc_exception_throw + 45
    2 CoreFoundation 0x00007fff829045a7 +[NSException raise:format:arguments:] + 103
    3 CoreFoundation 0x00007fff82904534 +[NSException raise:format:] + 148
    4 AppKit 0x00007fff8531b9cc -[NSImage _lockFocusOnRepresentation:rect:context:hints:flipped:] + 319
    5 AppKit 0x00007fff8531b883 __-[NSImage lockFocusWithRect:context:hints:flipped:]_block_invoke_1 + 100
    6 AppKit 0x00007fff852afc1d -[NSImage _usingBestRepresentationForRect:context:hints:body:] + 178
    7 AppKit 0x00007fff8531b809 -[NSImage lockFocusWithRect:context:hints:flipped:] + 289
    8 AppKit 0x00007fff8531b6d3 -[NSImage lockFocusFlipped:] + 142
    9 App Store 0x000000010001c840 0x0 + 4295084096
    10 AppKit 0x00007fff852a4444 -[NSControl drawRect:] + 405
    11 AppKit 0x00007fff8529ccc5 -[NSView _drawRect:clip:] + 3390
    12 AppKit 0x00007fff8529b938 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1325
    13 AppKit 0x00007fff8529bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    14 AppKit 0x00007fff8529bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    15 AppKit 0x00007fff852c0c5a -[NSToolbarItemViewer _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 301
    16 AppKit 0x00007fff8529bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    17 AppKit 0x00007fff8529bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    18 AppKit 0x00007fff8529bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    19 AppKit 0x00007fff8529a00a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 767
    20 AppKit 0x00007fff85299b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    21 AppKit 0x00007fff852963de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    22 AppKit 0x00007fff8520fc0e -[NSView displayIfNeeded] + 969
    23 AppKit 0x00007fff851d7c3b -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1050
    24 AppKit 0x00007fff851d77d2 -[NSWindow orderWindow:relativeTo:] + 94
    25 AppKit 0x00007fff851a3974 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1726
    26 AppKit 0x00007fff851a1a91 loadNib + 226
    27 AppKit 0x00007fff851a11a4 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 763
    28 AppKit 0x00007fff851a0dd9 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 326
    29 AppKit 0x00007fff8519e35b NSApplicationMain + 279
    30 App Store 0x00000001000013f4 0x0 + 4294972404
    31 ??? 0x0000000000000002 0x0 + 2
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff8882c0b6 __kill + 10
    1 libSystem.B.dylib 0x00007fff888cc9f6 abort + 83
    2 libstdc++.6.dylib 0x00007fff83f0a5d2 __tcf_0 + 0
    3 libobjc.A.dylib 0x00007fff894fcb39 _objc_terminate + 100
    4 libstdc++.6.dylib 0x00007fff83f08ae1 __cxxabiv1::__terminate(void (*)()) + 11
    5 libstdc++.6.dylib 0x00007fff83f08b16 __cxxabiv1::__unexpected(void (*)()) + 0
    6 libstdc++.6.dylib 0x00007fff83f08bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    7 libobjc.A.dylib 0x00007fff894f8fa2 object_getIvar + 0
    8 com.apple.CoreFoundation 0x00007fff8295c969 -[NSException raise] + 9
    9 com.apple.AppKit 0x00007fff85296924 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4033
    10 com.apple.AppKit 0x00007fff8520fc0e -[NSView displayIfNeeded] + 969
    11 com.apple.AppKit 0x00007fff851d7c3b -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1050
    12 com.apple.AppKit 0x00007fff851d77d2 -[NSWindow orderWindow:relativeTo:] + 94
    13 com.apple.AppKit 0x00007fff851a3974 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1726
    14 com.apple.AppKit 0x00007fff851a1a91 loadNib + 226
    15 com.apple.AppKit 0x00007fff851a11a4 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 763
    16 com.apple.AppKit 0x00007fff851a0dd9 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 326
    17 com.apple.AppKit 0x00007fff8519e35b NSApplicationMain + 279
    18 com.apple.appstore 0x00000001000013f4 0x100000000 + 5108
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff887f6c0a kevent + 10
    1 libSystem.B.dylib 0x00007fff887f8add _dispatch_mgr_invoke + 154
    2 libSystem.B.dylib 0x00007fff887f87b4 _dispatch_queue_invoke + 185
    3 libSystem.B.dylib 0x00007fff887f82de _dispatch_worker_thread2 + 252
    4 libSystem.B.dylib 0x00007fff887f7c08 _pthread_wqthread + 353
    5 libSystem.B.dylib 0x00007fff887f7aa5 start_wqthread + 13
    Thread 2:
    0 libSystem.B.dylib 0x00007fff887f7a2a __workq_kernreturn + 10
    1 libSystem.B.dylib 0x00007fff887f7e3c _pthread_wqthread + 917
    2 libSystem.B.dylib 0x00007fff887f7aa5 start_wqthread + 13
    Thread 3: WebCore: LocalStorage
    0 libSystem.B.dylib 0x00007fff88818a6a __semwait_signal + 10
    1 libSystem.B.dylib 0x00007fff8881c881 _pthread_cond_wait + 1286
    2 com.apple.JavaScriptCore 0x00007fff80fbf3b0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.WebCore 0x00007fff862a9a91 WebCore::LocalStorageThread::threadEntryPoint() + 177
    4 libSystem.B.dylib 0x00007fff88816fd6 _pthread_start + 331
    5 libSystem.B.dylib 0x00007fff88816e89 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff887ddd7a mach_msg_trap + 10
    1 libSystem.B.dylib 0x00007fff887de3ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8289f902 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff8289ed8f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff808c914f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff8084a114 __NSThread__main__ + 1429
    6 libSystem.B.dylib 0x00007fff88816fd6 _pthread_start + 331
    7 libSystem.B.dylib 0x00007fff88816e89 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff887f7a2a __workq_kernreturn + 10
    1 libSystem.B.dylib 0x00007fff887f7e3c _pthread_wqthread + 917
    2 libSystem.B.dylib 0x00007fff887f7aa5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000000 rbx: 0x00007fff710e32f8 rcx: 0x00007fff5fbff2e8 rdx: 0x0000000000000000
    rdi: 0x0000000000005012 rsi: 0x0000000000000006 rbp: 0x00007fff5fbff300 rsp: 0x00007fff5fbff2e8
    r8: 0x00007fff710e6a60 r9: 0x0000000000000063 r10: 0x00007fff888280fa r11: 0x0000000000000206
    r12: 0x00007fff82989b09 r13: 0x0000000000000000 r14: 0x00000001003468f0 r15: 0x00007fff70a31190
    rip: 0x00007fff8882c0b6 rfl: 0x0000000000000206 cr2: 0x00007fff70727fd0
    Binary Images:
    0x100000000 - 0x100044fff com.apple.appstore 1.0.2 (63.1) /Applications/App Store.app/Contents/MacOS/App Store
    0x100065000 - 0x10018eff7 com.apple.CommerceKit 1.0 (60.8) /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) /usr/lib/dyld
    0x7fff80003000 - 0x7fff80446fef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff80478000 - 0x7fff80518fff com.apple.LaunchServices 362.3 (362.3) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff80839000 - 0x7fff80abbfff com.apple.Foundation 6.6.8 (751.63) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff80c1d000 - 0x7fff80c31fff libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff80c32000 - 0x7fff80c43ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) /usr/lib/libz.1.dylib
    0x7fff80cbb000 - 0x7fff80cf2ff7 com.apple.DiskManagement 3.6 (358) /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x7fff80f13000 - 0x7fff80f7dfe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff80fb5000 - 0x7fff812d8fe7 com.apple.JavaScriptCore 6534.57 (6534.57.3) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff812d9000 - 0x7fff812ddff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff812de000 - 0x7fff8149dfff com.apple.ImageIO.framework 3.0.5 (3.0.5) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff8149e000 - 0x7fff814f1ff7 com.apple.HIServices 1.8.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff81580000 - 0x7fff81680fef com.apple.DiskImagesFramework 10.6.8 (289.1) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff81681000 - 0x7fff816acff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
    0x7fff816ad000 - 0x7fff816f6fef libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff816f7000 - 0x7fff81775ff7 com.apple.CoreText 151.12 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff81776000 - 0x7fff8177dfff com.apple.OpenDirectory 10.6 (10.6) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8177e000 - 0x7fff81780fff com.apple.print.framework.Print 6.1 (237.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff819c4000 - 0x7fff819d1fe7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff819d2000 - 0x7fff819d3ff7 libScreenReader.dylib ??? (???) /usr/lib/libScreenReader.dylib
    0x7fff819d4000 - 0x7fff819d4ff7 com.apple.CoreServices 44 (44) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff819d5000 - 0x7fff81a8efff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) /usr/lib/libsqlite3.dylib
    0x7fff81b11000 - 0x7fff81b16fff libGIF.dylib ??? (???) <3FD1157B-C002-5268-DEF4-70DDC40E6EDE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff81b17000 - 0x7fff81b52fff com.apple.AE 496.5 (496.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff81b53000 - 0x7fff81b54ff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff81b55000 - 0x7fff81b55ff7 com.apple.Carbon 150 (152) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff81b56000 - 0x7fff81b90fff com.apple.bom 10.0 (164) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff81ba7000 - 0x7fff81be1fff libcups.2.dylib 2.8.0 (compatibility 2.0.0) /usr/lib/libcups.2.dylib
    0x7fff81be2000 - 0x7fff81c24fe7 com.apple.MediaKit 10.5.1 (490) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff81cf8000 - 0x7fff81dddfef com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff81e5b000 - 0x7fff81e8afff com.apple.framework.Admin 4.6 (4.6) <376BC531-CE46-A147-9AF5-4D8F8E1522C5> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x7fff81e97000 - 0x7fff81eb0fff com.apple.CFOpenDirectory 10.6 (10.6) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff81eb1000 - 0x7fff81eb1ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff81eee000 - 0x7fff81f0ffff libresolv.9.dylib 41.1.0 (compatibility 1.0.0) /usr/lib/libresolv.9.dylib
    0x7fff81f1b000 - 0x7fff81f2fff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff81f31000 - 0x7fff81f54fff com.apple.opencl 12.3.6 (12.3.6) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff81f71000 - 0x7fff8277bfe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff8277c000 - 0x7fff8277fff7 libCoreVMClient.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff82780000 - 0x7fff8281afff com.apple.ApplicationServices.ATS 275.19 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8281b000 - 0x7fff8282afef com.apple.opengl 1.6.14 (1.6.14) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff82853000 - 0x7fff829cafe7 com.apple.CoreFoundation 6.6.6 (550.44) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff829cb000 - 0x7fff82a0cfff com.apple.SystemConfiguration 1.10.8 (1.10.2) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff82a0d000 - 0x7fff82c96ff7 com.apple.security 6.1.2 (55002) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff82fcf000 - 0x7fff836cbff7 com.apple.CoreGraphics 1.545.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff83722000 - 0x7fff83722ff7 com.apple.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff83753000 - 0x7fff83810fff com.apple.CoreServices.OSServices 359.2 (359.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff83874000 - 0x7fff83924fff edu.mit.Kerberos 6.5.11 (6.5.11) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff83925000 - 0x7fff83946fe7 libPng.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff83947000 - 0x7fff83953fff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) /usr/lib/libbz2.1.0.dylib
    0x7fff83954000 - 0x7fff83962ff7 libkxld.dylib ??? (???) /usr/lib/system/libkxld.dylib
    0x7fff83963000 - 0x7fff839b8ff7 com.apple.framework.familycontrols 2.0.2 (2020) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff839b9000 - 0x7fff839c8fff libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
    0x7fff83c03000 - 0x7fff83c52ff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff83c53000 - 0x7fff83c5eff7 com.apple.bsd.ServiceManagement 1.3 (1.3) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff83c5f000 - 0x7fff83d9dfff com.apple.CoreData 102.1 (251) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff83d9e000 - 0x7fff83ebdfe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) /usr/lib/libcrypto.0.9.8.dylib
    0x7fff83ebe000 - 0x7fff83f3bfef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff83f3c000 - 0x7fff84019fff com.apple.vImage 4.1 (4.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff84076000 - 0x7fff8408cfe7 com.apple.MultitouchSupport.framework 207.11 (207.11) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8408d000 - 0x7fff84090ff7 com.apple.securityhi 4.0 (36638) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff840ac000 - 0x7fff841e1fff com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff841e2000 - 0x7fff84383fe7 com.apple.WebKit 6534.57 (6534.57.2) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff843ca000 - 0x7fff84414ff7 com.apple.Metadata 10.6.3 (507.15) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff844a1000 - 0x7fff847d5fef com.apple.CoreServices.CarbonCore 861.39 (861.39) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff847d6000 - 0x7fff84822fff libauto.dylib ??? (???) /usr/lib/libauto.dylib
    0x7fff84823000 - 0x7fff84824ff7 com.apple.TrustEvaluationAgent 1.1 (1) /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff84825000 - 0x7fff8482afff libGFXShared.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff84bb1000 - 0x7fff84cc7ff7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
    0x7fff84cd6000 - 0x7fff84d12fe7 libcurl.4.dylib 6.1.0 (compatibility 6.0.0) /usr/lib/libcurl.4.dylib
    0x7fff84d86000 - 0x7fff84dc3ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) /usr/lib/libssl.0.9.8.dylib
    0x7fff84dc4000 - 0x7fff84e05fef com.apple.QD 3.36 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff84e06000 - 0x7fff84ed2fff com.apple.installframework 596 (596.1) /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install
    0x7fff84ef8000 - 0x7fff84f40ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff84f41000 - 0x7fff84f69fff com.apple.DictionaryServices 1.1.2 (1.1.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff84f6a000 - 0x7fff84fcafe7 com.apple.framework.IOKit 2.0 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff85034000 - 0x7fff8507dff7 com.apple.securityinterface 4.0.1 (40418.0.1) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8507e000 - 0x7fff8509eff7 com.apple.DirectoryService.Framework 3.6 (621.14) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff8509f000 - 0x7fff85161fe7 libFontParser.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8519c000 - 0x7fff85b96ff7 com.apple.AppKit 6.6.8 (1038.36) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff85b97000 - 0x7fff85c4cfe7 com.apple.ink.framework 1.3.3 (107) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff85eb7000 - 0x7fff85ec6fff com.apple.NetFS 3.2.2 (3.2.2) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff86082000 - 0x7fff8615aff7 com.apple.DiscRecording 5.0.9 (5090.4.2) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff861d9000 - 0x7fff861dfff7 IOSurface ??? (???) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff861e0000 - 0x7fff861fbff7 com.apple.openscripting 1.3.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff861fc000 - 0x7fff86288fef SecurityFoundation ??? (???) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff86289000 - 0x7fff872f3fef com.apple.WebCore 6534.57 (6534.57.2) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff872f4000 - 0x7fff872ffff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff87319000 - 0x7fff8731bfff libRadiance.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff8786e000 - 0x7fff87880fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) /usr/lib/libsasl2.2.dylib
    0x7fff8798c000 - 0x7fff879e2fff libTIFF.dylib ??? (???) <31FA0318-105B-9E11-B4D4-246BFD5B18E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff879e3000 - 0x7fff87a20fff com.apple.LDAPFramework 2.0 (120.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff87a21000 - 0x7fff87aa6ff7 com.apple.print.framework.PrintCore 6.3 (312.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff87b0d000 - 0x7fff87b0dff7 com.apple.ApplicationServices 38 (38) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff87b0e000 - 0x7fff87b13ff7 com.apple.CommonPanels 1.2.4 (91) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff87b14000 - 0x7fff87e12fff com.apple.HIToolbox 1.6.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff87e96000 - 0x7fff87ed4fe7 libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff87f15000 - 0x7fff883b2fff com.apple.RawCamera.bundle 3.8.0 (577) <38481531-657E-DFFA-1EF4-ADFCA15DAC49> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff88403000 - 0x7fff88406fff com.apple.help 1.3.2 (41.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff88407000 - 0x7fff884dbfe7 com.apple.CFNetwork 454.12.4 (454.12.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff884dc000 - 0x7fff8855bfe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff88578000 - 0x7fff88583fff com.apple.CrashReporterSupport 10.6.7 (258) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff88783000 - 0x7fff887dcfe7 com.apple.PackageKit 1.1.4 (93) /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x7fff887dd000 - 0x7fff8899efef libSystem.B.dylib 125.2.11 (compatibility 1.0.0) /usr/lib/libSystem.B.dylib
    0x7fff8899f000 - 0x7fff889a5ff7 com.apple.DiskArbitration 2.3 (2.3) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff889a6000 - 0x7fff889a7fff liblangid.dylib ??? (???) /usr/lib/liblangid.dylib
    0x7fff889a8000 - 0x7fff889bdff7 com.apple.LangAnalysis 1.6.6 (1.6.6) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff889ca000 - 0x7fff889f1ff7 libJPEG.dylib ??? (???) <32EDAB18-08ED-B31A-D2BD-12EFFE60D83C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff88b1a000 - 0x7fff88b61ff7 com.apple.coreui 2 (114) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff88b64000 - 0x7fff88b95fff libGLImage.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff88b96000 - 0x7fff88badfff com.apple.ImageCapture 6.1 (6.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff88bae000 - 0x7fff88baeff7 com.apple.Cocoa 6.6 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff88c21000 - 0x7fff88c64ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff88c65000 - 0x7fff88d26fef com.apple.ColorSync 4.6.8 (4.6.8) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff88d57000 - 0x7fff88d5bff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) /usr/lib/system/libmathCommon.A.dylib
    0x7fff88d5c000 - 0x7fff88f1afff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) /usr/lib/libicucore.A.dylib
    0x7fff88f1b000 - 0x7fff88f28ff7 com.apple.AppleFSCompression 24.4 (1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff88f31000 - 0x7fff88f47fef libbsm.0.dylib ??? (???) /usr/lib/libbsm.0.dylib
    0x7fff88f48000 - 0x7fff88f6dff7 com.apple.CoreVideo 1.6.2 (45.6) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff89151000 - 0x7fff894eefe7 com.apple.QuartzCore 1.6.3 (227.37) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff894ef000 - 0x7fff895a5ff7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) /usr/lib/libobjc.A.dylib
    0x7fff895a6000 - 0x7fff895a6ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff895a7000 - 0x7fff896c1fff libGLProgrammability.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff89736000 - 0x7fff89769ff7 libTrueTypeScaler.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff897b4000 - 0x7fff897baff7 com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8a783000 - 0x7fff8a813fff com.apple.SearchKit 1.3.0 (1.3.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    Model: MacBook3,1, BootROM MB31.008E.B02, 2 processors, Intel Core 2 Duo, 2.2 GHz, 2 GB, SMC 1.24f3
    Graphics: Intel GMA X3100, GMA X3100, Built-In, 144 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHY2120BH, 111.79 GB
    Parallel ATA Device: HL-DT-ST DVDRW GSA-S10N
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x1a100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0229, 0x5d200000 / 3
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000 / 2

  • Pages tells me I need to upgrade to 5.0 to open documents from iCloud.  When I go to the mac app store it says pages 5.0 is installed, but Pages says it's running 4.3.  I just want to open documents on my mac that were created on my iPad.

    Pages tells me I need to upgrade to 5.0 to open documents from iCloud, but the mac app store says its already installed and won't let me upgrade.  when I check the version of pages I am running it says 4.3.  I just want to be able to open documents on my mac that were created on my iPad.  How can i get Pages 5.0?

    Welcome to Apple Support Communities
    You already have got Pages 5.0, but you still have got Pages 4.3, so Pages 4.3 is being opened instead of the newest version, being this the reason why you get a message telling you to update Pages to the most recent version.
    If you don't need the old version, open a Finder window, choose Applications in the sidebar and delete the old Pages icon or move it to an external drive. I don't recommend you to do this, as users are complaining about the lack of features of the new version.
    Instead, what you can do is to put the new Pages icon in the Dock by dragging it from the Finder window to the Dock, so you can open the new Pages version from the Dock and you can open all your documents with it after opening the application

  • Downloaded adobe photoshop elements 10 editor from Mac app store onto my mac book pro, set i photo preferences to APE 10 Editor, but can not open any files from my library, error saying " program error". What else do I need to do?

    Have downloaded Adobe Photoshop Elements 10 Editor from the Mac App Store onto my Mac Book Pro, set i photo preferences to Adobe PSE 10 editor, but when I try to open a file from my photo library, the following message appears: "could not complete your request because of a program error". What can I do to resolve this issue?

    Hi..
    Post your topic in the iPhoto community here. That way you can get feedback from iPhoto users.
    This community is primairly for issues with the App Store.

  • HT1338 The Mac App Store shows an update available for iMovie but when I click "update" it gives me this message, "The product distribution file could not be verified. It may be damaged or was not signed." What can I do to update this program?

    The Mac App Store shows an update available for iMovie but when I click "update" it gives me this message, "The product distribution file could not be verified. It may be damaged or was not signed." What can I do to update this program?

    http://www.apple.com/support/mac/app-store/contact.html?form=account

Maybe you are looking for

  • How to get comparable Oracle JDBC performance using Java 1.4 vs 1.1.7?

    Our application makes extensive use of JDBC to access an Oracle database. We wrote it a number of years ago using java 1.1.7 and we have been unable to move to new versions of java because of the performance degradation. I traced the problem to JDBC

  • How can I boot from USB drive?

    I have installed a Kingston SSD drive on my Macbook Pro. The original HDD is now in a USB enclosure. I tried to boot from the supplied CD by selecting it in the preferences. However they supplied a CD with Aarons for Windows. Now I cannot either clon

  • HOST command and Forms 4.5

    We were using HOST command(to start SQL Plus) in one of the form of our application (forms version 4.5) and this application was running fine on Win NT. Now this application is moved onto Windows 2000. Now we noticed that once the HOST command statem

  • Screen Flakeout when waking up

    So for the past couple of days I've had an issue where I wake my iPhone using the home button or top button and get the unlock screen as normal. I slide to unlock and the screen goes black, flickers a few times, then returns to the unlock screen. Aft

  • Iweb domain name

    Hi, When publishing a site with iWeb, I always get very long domain names like www.ostendbeach.be/OSTENDBEACH/index.html in my browser. Can I choose to only see www.ostendbeach.be with no other referrals to sub-folders in my browser ? Thanx, Jan