Partial redeployment of archived app

Hello.
So, as in subj:
What I have: deployed war on weblogic, with a single jsp inside
What I want: to redeploy only that jsp without redeploying entire war.
When I try to use partial redeployment task with deltaFiles specified, I get DeploymentException: A partial update of an archived application is not allowed.
It is fully described here
http://download.oracle.com/docs/cd/E11035_01/wls100/messages/DeployerRuntime.html
But
I wonder if there is some walkaround of this situation, maybe somebody has done smth similar.
Thanks in advance

Hi Frf,
You can partially deploy some part of your applications on the Server like following: http://jaysensharma.wordpress.com/2010/02/08/redeploying-a-single-jsp/
In your ANT Task you can write then following to update new resources (Classes) in your WAR ...:
<target name=”reBuildWAR”>
<font color=maroon>
<war destfile=”YourWarArchieve.war” update=”true”>
<classes dir="dest/"/>
</war>
</font>
</target>
To Change the Library of your App:
<target name=”reBuildWAR”>
<font color=maroon>
<war destfile=”YourWarArchieve.war” update=”true”>
<lib dir="someLocation/jars">
<exclude name="ojdbc14.jar"/>
</lib>
</war>
</font>
</target>
To Change the JSPs of your App:
<target name="reBuildWAR">
<font color=maroon>
<war destfile="${war.name}" update=”true”>
<fileset dir="${jsps}"/>
</war>
</font>
</target>
.Thanks
Jay SenSharma

Similar Messages

  • Partial redeploy of an application ear fails intermittently

    Hi,
    I am trying to redeploy my application ear using deployment API provided by weblogic. The list of files which i try to redeploy are couple of jars and couple of wars one at a time. The problem is most of the times the deployment paritally goes through informing me that weblogic has transitioned application status from activated at last. But in some cases i see "<b>javax.management.InstanceAlreadyExistsException"</b> though the application is already present. Why does this happen where in the handle to ApplicationMBean tries to register the application as though it was new which is not the case. Check the exception below.
    javax.management.InstanceAlreadyExistsException: vgndomain:Location=VgnVCMServer,Name=VgnVCMServer_VgnContentSvcs,ServerRuntime=VgnVCMServer,Type=ApplicationRuntime
         at com.sun.management.jmx.RepositorySupport.addMBean(RepositorySupport.java:134)
         at com.sun.management.jmx.MBeanServerImpl.internal_addObject(MBeanServerImpl.java:2371)
         at com.sun.management.jmx.MBeanServerImpl.registerMBean(MBeanServerImpl.java:876)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_registerMBean(RemoteMBeanServerImpl.java:582)
         at weblogic.management.internal.RemoteMBeanServerImpl.registerMBean(RemoteMBeanServerImpl.java:524)
         at weblogic.management.runtime.RuntimeMBeanDelegate.register(RuntimeMBeanDelegate.java:166)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:122)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:85)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:62)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:74)
         at weblogic.j2ee.J2EEApplicationRuntimeMBeanImpl.<init>(J2EEApplicationRuntimeMBeanImpl.java:42)
         at weblogic.j2ee.J2EEApplicationContainer.initRuntimeMBean(J2EEApplicationContainer.java:781)
         at weblogic.j2ee.J2EEApplicationContainer.<init>(J2EEApplicationContainer.java:448)
         at weblogic.j2ee.J2EEApplicationContainerFactory.createApplicationContainer(J2EEApplicationContainerFactory.java:131)
         at weblogic.j2ee.J2EEApplicationContainerFactory.getOrCreateApplicationContainer(J2EEApplicationContainerFactory.java:113)
         at weblogic.management.deploy.slave.SlaveDeployer$Application.getContainer(SlaveDeployer.java:3011)
         at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2550)
         at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2474)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:798)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:507)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:465)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    Any help on this would be appreciated.
    Thanks,
    Sandeep

    The info for the 149080 error is included below:
    Basically, you can only do a partial redeploy if you are using an exploded directory app.
    Error: A partial update of an archived application is not allowed. Application app cannot be redeployed.
    Description
         There was an attempt to partially redeploy an archived application. Partial redeployment of an archived application is not allowed.
    Cause
         There was an attempt to partially redeploy an archived application
    Action
         Try deploying entire application
    Refer to the deployment documentation for more info.
    http://download.oracle.com/docs/cd/E11035_01/wls100/deployment/redeploy.html#wp1031505
    8.1.2.2 Partial Redeployment of J2EE Modules
    Partial redeployment also enables you to redeploy a single module or subset of
    modules in a deployed Enterprise Application. Again, partial deployment is
    supported only for applications that are deployed using an exploded archive directory.

  • Partial redeployment of a static jar file with weblogic.Deployer

    Hello,
    We are working on an application serving jar files to customers, via Java Web Start, hence that are considered from our point of view as static files, like our HTML and Javascript pages.
    Moreover, we have one jar that changes regularly, so every time it's loaded on the server we need to do a partial redeployment of this jar file, as documented here: http://docs.oracle.com/cd/E13222_01/wls/docs103/deployment/redeploy.html#wp1025739
    However, it does not work, as I believe WebLogic doesn't consider my jar file as a static file.
    C:\>java -cp weblogic.jar weblogic.Deployer -adminurl http://mymachine:7001 -user weblogic -password mystrongpassword -name myapp -redeploy launcher/downloadme.jar
    weblogic.Deployer invoked with options: -adminurl http://mymachine:7001 -user weblogic -name myapp -redeploy launcher/downloadme.jar
    <Mar 8, 2013 7:09:36 PM CET> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating redeploy operation for application, myapp [archive: null], to configured targets.>
    Task 24 initiated: [Deployer:149026]redeploy application myapp [Version=7] on WebServer.
    Task 24 failed: [Deployer:149026]redeploy application myapp [Version=7] on WebServer.
    Target state: redeploy failed on Server WebServer
    weblogic.management.DeploymentException:
    The application myapp#7 cannot have the resource launcher/downloadme.jar updated dynamically. Either:
    1.) The resource does not exist.
    or
    2) The resource cannot be changed dynamically.
    Please ensure the resource uri is correct, and redeploy the entire application for this change to take effect.
    As a side note, if I rename downloadme.jar to downloadme.jar.*html*, then WebLogic agrees to redeploy it!
    Is there any way to force the static redeployment of my jar file?
    Thanks and regards,
    Julien

    Hi,
    The feature you are trying to use works only when web application is deployed in exploded format. Is your app deployed in exploded format?
    Also jars are never considered static, so I doubt this will work here.
    As an alternative you can go for Oracle Weblogic Production redployment feature. Refer to - http://middlewaresupport.wordpress.com/2013/03/21/production-redeployment-feature-in-weblogic/
    Thanks,
    Ranjan
    Edited by: Ranjan K on Apr 12, 2013 5:45 AM

  • Partial redeployment problem for J2EE module update

    hi, all
    I have one application file (.ear) composed of three EJB modules. I tried to paritally redeploy one of them, but it didn't work.
    Here is the command-line for partial redeployment: java weblogic.Deployer -adminurl t3://XX.XX.XX.XX:XXXX -username XXXX -password XXXX -name XA_MOrderEAR -source XAMOrderEAR -targets MOrderBM.jar@SquadA_N1 -redeploy, where XAMOrderEAR is the name of the exploded archive, MOrderBM.jar is the EJB module to be partially redeployed, SquadA_N1 is a cluster.
    Here is the result:
    <2010/2/22 下午02時10分06秒 GMT+08:00> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating redeploy operation for appl
    ication, XA_MOrderEAR [archive: null], to SquadA_N1 .>
    Task 29 initiated: [Deployer:149026]redeploy application XA_MOrderEAR on SquadA_N1.
    Task 29 failed: [Deployer:149026]redeploy application XA_MOrderEAR on SquadA_N1.
    Target state: redeploy failed on Cluster SquadA_N1
    weblogic.application.CannotRedeployException: Module 'MOrderBM.jar' has the same ClassLoader as the Application 'XA_MOrd
    erEAR'. Consider redeploying the entire application.
    Please tell me how to solve the problem. I tried to set enable-bean-class-redeploy to true in weblogic-ejb-jar.xml. It didn't work too.
    thanks
    Blithe Meng

    Hiya
    You can debug this quite easily yourself.
    Enable the SQL Trace for that session and see the Last SQL in the raw trace file.
    You can also run the trace with the option to view bind variables.
    This way you can find out why the SQL is returning no_data_found
    thanks
    anil passi

  • Partial Redeployment

    I'm using wls 8.1. I'm deploying an exploded EAR containing EJB modules and web
    apps. Can I redeploy only the classes loaded by the EJB classloader, or does
    the entire application have to be reloaded? If so, how? What partial redeployment
    options are available when the deployed module is an EAR? Thanks...
    ..Brian

    "Brian" <[email protected]> wrote:
    >
    Rob Woollen <[email protected]> wrote:
    You'll need to add the <enable-bean-class-redeploy> tag to your
    weblogic.ejb-jar.xml
    http://e-docs.bea.com/wls/docs81/ejb/reference.html#1431359
    Then you redeploy by specifying the class that was updated. Something
    like this:
    java weblogic.Deployer -username system -password gumby1234 -redeploy
    -name beanimpl ejb/com/acme/ejb/HelloWorldEJB.class
    This updates the application beanimpl with a new version of my
    HelloWorldEJB class. You just specify the path relative to the topof
    the EAR.
    -- Rob
    Brian wrote:
    I'm using wls 8.1. I'm deploying an exploded EAR containing EJB modulesand web
    apps. Can I redeploy only the classes loaded by the EJB classloader,or does
    the entire application have to be reloaded? If so, how? What partialredeployment
    options are available when the deployed module is an EAR? Thanks...
    ..Brian
    Thanks Rob. You've been a great help. One more question; If I use
    manifest
    classpath to cause a utility JAR to be loaded by the EJB classloader,
    will I need
    to reload the entire application to refresh it?
    Also, the EJB jar file has to be exploded in order to update the implementation
    class, right? I can't seem to update or replace an unexploded EJB JAR.

  • [svn] 3779: Continue fix for BLZ-262: null pointer exception on redeploy of web app/servlet.

    Revision: 3779
    Author: [email protected]
    Date: 2008-10-21 10:23:55 -0700 (Tue, 21 Oct 2008)
    Log Message:
    Continue fix for BLZ-262: null pointer exception on redeploy of web app/servlet.
    Remove finally block in servlet init() as the call to destroy() in the catch block will clear ThreadLocals
    if there is an error. Move it to the end of try block instead since the init() thread doesn't need any
    thread locals set.
    Log the startup error before calling destroy() in init() catch clause.
    QA: Yes
    Doc: No
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-262
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/MessageBrokerServlet.java

    Hello!
    I had a similar problem under WebLogic 6.1 SP4 after deploying a war-file with
    a bug.
    After deploying the corrected file, it seemed that the old version was deployed
    again.
    Perhaps this behaviour will help you to load the new application/ejb:
    - undeploy
    - remove from targets
    - move to targets
    - deploy
    Claudia
    "Marco" <[email protected]> wrote:
    >
    hi all,
    i have found a werid problem in deploying applications in Solaris 8
    for weblogic
    7.0.
    i have deployed one EJB, and the first time i access it (thru teh web
    app embedded
    in the .ear) it gave me a null pointer exception because i was failing
    to lookup
    one environment variable.
    so, i fix the code, rebuild the ear and redeployed, and the same error
    happened
    again.
    i am sure i did not do any mistakees because i have put some system.err
    statements
    in the bean code to show the workflow, and when i have deployed it on
    Window 2k
    the statemens appeared.
    but in solaris they didnot appear, and i got the same exception that
    i had before..
    it looks like wls is caching teh ejb, because whenever i redeploy it
    (adding more
    and more system.err statements) it always execute the faulty code of
    when deployed
    the very first time.
    anyone can help?
    regards
    marco

  • [svn] 3768: Fix BLZ-262: null pointer exception on redeploy of web app/ servlet.

    Revision: 3768
    Author: [email protected]
    Date: 2008-10-21 07:48:14 -0700 (Tue, 21 Oct 2008)
    Log Message:
    Fix BLZ-262: null pointer exception on redeploy of web app/servlet.
    I was too agressive in releasing the ThreadLocal variables when the servlet shut down.
    Leave the nulling out code there, but add a createThreadLocalObjects() API that is called
    on MessageBrokerServlet startup that will re-allocate these static variables if they are null.
    QA: Yes
    Doc: No
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-262
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/FlexContext.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/MessageBroker.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/MessageBrokerServlet.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/io/SerializationContext.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/io/TypeMarshallingContext.jav a

    Revision: 3768
    Author: [email protected]
    Date: 2008-10-21 07:48:14 -0700 (Tue, 21 Oct 2008)
    Log Message:
    Fix BLZ-262: null pointer exception on redeploy of web app/servlet.
    I was too agressive in releasing the ThreadLocal variables when the servlet shut down.
    Leave the nulling out code there, but add a createThreadLocalObjects() API that is called
    on MessageBrokerServlet startup that will re-allocate these static variables if they are null.
    QA: Yes
    Doc: No
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-262
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/FlexContext.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/MessageBroker.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/MessageBrokerServlet.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/io/SerializationContext.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/io/TypeMarshallingContext.jav a

  • Partial redeployment in exploded EAR gets blown away on restart

    I have an exploded EAR with an (exploded) WAR and a JSP inside the WAR. On the filesystem it looks like this:
    /.../foo.ear/blah.war/my.jsp
    The EAR was initially deployed in stage mode, then I switched to nostage. my.jsp is still under development and continues to change. I wrote a simple script that has two steps: 1) copy my.jsp from /some/dir to /.../foo.ear/blah.war/ 2) do a partial deployment/update with weblogic.Deployer -targets <cluster> -name foo -redeploy blah.war/my.jsp .
    The cluster is WL 10.3.3 in Production mode. I start the managed server, run the script that deploys changed JSPs and test the app. Everything is good. Then I restart the managed server...and my changed JSP is no longer there. I have to run the script again in order to make the managed server update the JSP.
    I can't run the deploy script on every server restart. What am I missing here?

    No one here is going to do anything about it. Send feedback to Apple.
    http://www.apple.com/feedback/ipad.html
    Basic troubleshooting steps. 
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 

  • SAP TM Display Partial Rate table Archive on UI

    Hi ,
    I have Archived Partial rate table by using Archive object /SCMTMS/RA as there is no Info structure for this Archive object 
    create a custom one . Rate table records are getting archived propely but its not getting viewed in POWL/NWBC at Archived document on UI.
    As requirement is to show Partially Archived rate table on Web UI  I also set parameter /BOFU/ARCH_DAC = X in SU3.
    I have also debug and found the query /BOFU/CL_Q_ARCHIVE  which is of Select from query is getting called and as a
    result no output.
    I also tried the same in Conf UI by passing the Partially  Archived rate table and its DB key .
    As I am new to Archiving do I missing some configuration or is there any other way to view the partial archived rate table on UI please suggest .
    Regards.
    Farroque.

    Hi,
    Use create_popup_2_confirm method of window manager. Write the below code in the Event hanlder( on enter) method
    DATA: lr_popup  TYPE REF TO if_bsp_wd_popup.
        IF lr_popup IS NOT BOUND.
          CALL METHOD comp_controller->window_manager->create_popup_2_confirm
            EXPORTING
              iv_title          = 'Title of Window'
              iv_text           = 'Your Message Text'
              iv_btncombination = if_bsp_wd_window_manager=>co_btncomb_ok "OK Button
            RECEIVING
              rv_result         = lr_popup.
          lr_popup->set_display_mode(    if_bsp_wd_popup=>c_display_mode_surrounded ).
        ENDIF.
        lr_popup->open( ).
    Hope this helps u,
    Regards,
    Kiran

  • Error when archiving app for distribution

    Hey guys here is a bit of info about my problem
    Basically I’m getting an error when I try to archive my app for distribution. The error has to do with my certificate/distribution/provisioning profile(s).
    Here's the error:
    Command /usr/bin/codesign failed with exit code 1
    If anybody has any pointers, would be highly appreciated.
    Cheers all
    BigMik

    Note that 'Command /usr/bin/codesign failed with exit code 1' is a generic error. There can be any number of reasons that can can combine in any number of ways to cause it.
    No one can pick your issue apart based on that error alone. You'll waste timing trying this and that, only to wind up back at TN2250, which is flatly your best resource.
    I can't emphasize enough that you need to follow it to the letter. A hit/miss trail/error approach WILL dig a hole that you'll never get out of and I suspect you're there now. Visit the iOS Dev Center to witness thread after thread and to see that you're just spinning your wheels otherwise.
    Your best approach now is to houseclean and start over. Then step thru TN2250, stopping when you don't understand any step and asking specific questions about it - use the iOS Dev Center forums.

  • Xcode crashes when i'm trying to archive app.

    I've this problem since yesterday. After archive the app, organizer xcode goes to crash with this errors:
    Process:               Xcode [809]
    Path:                  /Applications/Xcode.app/Contents/MacOS/Xcode
    Identifier:            com.apple.dt.Xcode
    Version:               6.1.1 (6611)
    Build Info:            IDEFrameworks-6611000000000000~4
    App Item ID:           497799835
    App External ID:       810788292
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Xcode [809]
    User ID:               501
    Date/Time:             2015-02-13 15:30:43.702 +0100
    OS Version:            Mac OS X 10.10.2 (14C109)
    Report Version:        11
    Anonymous UUID:        17AE134E-DDDF-1E9E-0E23-3BD977B51B5E
    Time Awake Since Boot: 1300 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    ProductBuildVersion: 6A2008a
    UNCAUGHT EXCEPTION (NSInvalidArgumentException): -[__NSCFBoolean length]: unrecognized selector sent to instance 0x7fff7a3576d8
    UserInfo: (null)
    Hints:
      0: Replacement view is installing: <AAVArchivedApplicationsViewController: 0x7f8169986220 representing: <DVTExtension 0x7f8168150240: Archived Applications (Xcode.OrganizerSource.ArchivedApplications) v0.1>>
    Backtrace:
      0  0x00007fff942f0654 __exceptionPreprocess (in CoreFoundation)
      1  0x000000010d877274 DVTFailureHintExceptionPreprocessor (in DVTFoundation)
      2  0x00007fff9674f76e objc_exception_throw (in libobjc.A.dylib)
      3  0x00007fff942f36dd -[NSObject(NSObject) doesNotRecognizeSelector:] (in CoreFoundation)
      4  0x00007fff9423aaa4 ___forwarding___ (in CoreFoundation)
      5  0x00007fff9423a618 _CF_forwarding_prep_0 (in CoreFoundation)
      6  0x00007fff93eb1c91 _LSBundleCopyLocalizedName (in LaunchServices)
      7  0x00007fff93f1514f _LSCopyNodeAttribute_DisplayNameIfDifferentFromFSNameWithLanguage(LSNodeAttribu teStateCache*, __CFString const*) (in LaunchServices)
      8  0x00007fff93f1398d _LSCopyNodeAttributes (in LaunchServices)
      9  0x00007fff93f1ab23 _LSCopyItemAttributesForRefInfoWithOptionsCommon(LSExtendedFSRefInfo const*, unsigned int, __CFArray const*, unsigned int, __CFDictionary const**) (in LaunchServices)
    10  0x00007fff93ea13e3 _LSCopyItemAttributeForRefInfoWithOptions (in LaunchServices)
    11  0x00007fff93ea12de prepareAttributeValueForKey(__CFURL const*, __FileCache*, __CFString const*, void const**, __CFError**) (in LaunchServices)
    12  0x00007fff93ea5284 prepareDistinctLocalizedNameValue(__CFURL const*, __FileCache*, __CFError**) (in LaunchServices)
    13  0x00007fff93e9a2e6 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) (in LaunchServices)
    14  0x00007fff90f6674f prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) (in CoreServicesInternal)
    15  0x00007fff90f640ea _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) (in CoreServicesInternal)
    16  0x00007fff941eb06b CFURLCopyResourcePropertyForKey (in CoreFoundation)
    17  0x00007fff941f2f5e -[NSURL getResourceValue:forKey:error:] (in CoreFoundation)
    18  0x00007fff9005b723 -[NSFileManager displayNameAtPath:] (in Foundation)
    19  0x000000010ebab29a -[IDEArchive(AAVArchiveViewerExtensions) aav_displayName] (in IDEKit)
    20  0x00007fff8ff8fbf8 -[NSObject(NSKeyValueCoding) valueForKey:] (in Foundation)
    21  0x00007fff8ffa8673 -[NSObject(NSKeyValueCoding) valueForKeyPath:] (in Foundation)
    22  0x00007fff97710912 -[NSArrayController _singleValueForKeyPath:] (in AppKit)
    23  0x00007fff8ffa863f -[NSObject(NSKeyValueCoding) valueForKeyPath:] (in Foundation)
    24  0x00007fff977103ff -[NSBinder valueForBinding:resolveMarkersToPlaceholders:] (in AppKit)
    25  0x00007fff97714240 -[NSValueBinder _adjustObject:mode:observedController:observedKeyPath:context:editableState:adj ustState:] (in AppKit)
    26  0x00007fff9771407b -[NSValueBinder _observeValueForKeyPath:ofObject:context:] (in AppKit)
    27  0x00007fff97713eeb -[NSTextValueBinder _observeValueForKeyPath:ofObject:context:] (in AppKit)
    28  0x00007fff8ff69a03 NSKeyValueNotifyObserver (in Foundation)
    29  0x00007fff8ffa8036 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] (in Foundation)
    30  0x00007fff97706f0a -[NSController _notifyObserversForKeyPath:change:] (in AppKit)
    31  0x00007fff97802e1a -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] (in AppKit)
    32  0x00007fff97706d4f -[NSArrayController setContent:] (in AppKit)
    33  0x00007fff9790860b -[NSArrayDetailBinder _refreshDetailContentInBackground:] (in AppKit)
    34  0x00007fff8ff69a03 NSKeyValueNotifyObserver (in Foundation)
    35  0x00007fff8ffa8036 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] (in Foundation)
    36  0x00007fff97706f0a -[NSController _notifyObserversForKeyPath:change:] (in AppKit)
    37  0x00007fff97802e1a -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] (in AppKit)
    38  0x00007fff97706d4f -[NSArrayController setContent:] (in AppKit)
    39  0x00007fff9790860b -[NSArrayDetailBinder _refreshDetailContentInBackground:] (in AppKit)
    40  0x00007fff8ff69a03 NSKeyValueNotifyObserver (in Foundation)
    41  0x00007fff8ff68bd8 NSKeyValueDidChange (in Foundation)
    42  0x00007fff8ff6d73d -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] (in Foundation)
    43  0x000000010eb963fa -[AAVArchivedApplicationsViewController _updateArchiveGroups] (in IDEKit)
    44  0x000000010eb956fe __49-[AAVArchivedApplicationsViewController loadView]_block_invoke80 (in IDEKit)
    45  0x000000010d888b37 -[NSObject(DVTObservingConvenience) _dvt_newObserverForKeyPath:options:owner:withHandlerBlock:] (in DVTFoundation)
    46  0x000000010d6e2076 -[NSObject(DVTObservingConvenience) dvt_newObserverForKeyPath:options:withHandlerBlock:] (in DVTFoundation)
    47  0x000000010eb9558b -[AAVArchivedApplicationsViewController loadView] (in IDEKit)
    48  0x00007fff97a73417 -[NSViewController _loadViewIfRequired] (in AppKit)
    49  0x00007fff977439b1 -[NSViewController view] (in AppKit)
    50  0x000000010dcaf231 -[DVTViewController view] (in DVTKit)
    51  0x000000010eb95c47 -[AAVArchivedApplicationsViewController organizerSourceWillAppearInWindowController:] (in IDEKit)
    52  0x000000010eadde07 -[IDEOrganizerWindowController replacementView:willInstallViewController:] (in IDEKit)
    53  0x000000010dd938bb __42-[DVTReplacementView _setupViewController]_block_invoke (in DVTKit)
    54  0x000000010d876fb2 DVTInvokeWithFailureHint (in DVTFoundation)
    55  0x000000010dcb274f -[DVTReplacementView _setupViewController] (in DVTKit)
    56  0x000000010dcb25c4 -[DVTReplacementView installedViewController] (in DVTKit)
    57  0x000000010e96d9fe -[IDEOrganizerWindowController showWindow:] (in IDEKit)
    58  0x000000010eb97358 +[AAVArchivedApplicationsViewController revealArchive:] (in IDEKit)
    59  0x000000010eb972da +[AAVArchivedApplicationsViewController revealArchiveNotification:] (in IDEKit)
    60  0x00007fff942accdc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ (in CoreFoundation)
    61  0x00007fff9419e244 _CFXNotificationPost (in CoreFoundation)
    62  0x00007fff8ff62c31 -[NSNotificationCenter postNotificationName:object:userInfo:] (in Foundation)
    63  0x000000010d857a7e -[NSNotificationCenter(DVTNSNotificationCenterAdditions) _dvt_postNotificationName:object:userInfo:] (in DVTFoundation)
    64  0x000000010e28808d __42-[IDEArchiveManager _revealArchiveAtPath:]_block_invoke (in IDEFoundation)
    65  0x000000010d8ad646 __DVTAsyncPerformBlock_block_invoke (in DVTFoundation)
    66  0x00007fff9420e56c __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ (in CoreFoundation)
    67  0x00007fff94200675 __CFRunLoopDoBlocks (in CoreFoundation)
    68  0x00007fff942001b6 __CFRunLoopRun (in CoreFoundation)
    69  0x00007fff941ff858 CFRunLoopRunSpecific (in CoreFoundation)
    70  0x00007fff8f0ceaef RunCurrentEventLoopInMode (in HIToolbox)
    71  0x00007fff8f0ce86a ReceiveNextEventCommon (in HIToolbox)
    72  0x00007fff8f0ce6ab _BlockUntilNextEventMatchingListInModeWithFilter (in HIToolbox)
    73  0x00007fff97684f81 _DPSNextEvent (in AppKit)
    74  0x00007fff97684730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] (in AppKit)
    75  0x000000010dddb6fd -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] (in DVTKit)
    76  0x00007fff97678593 -[NSApplication run] (in AppKit)
    77  0x00007fff97663a14 NSApplicationMain (in AppKit)
    78  0x00007fff945795c9 start (in libdyld.dylib)
    79  0x0000000000000001
    abort() called
    Application Specific Signatures:
    NSInvalidArgumentException
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff942f066c __exceptionPreprocess + 172
    1   DVTFoundation                       0x000000010d877274 DVTFailureHintExceptionPreprocessor + 194
    2   libobjc.A.dylib                     0x00007fff9674f76e objc_exception_throw + 43
    3   CoreFoundation                      0x00007fff942f36dd -[NSObject(NSObject) doesNotRecognizeSelector:] + 205
    4   CoreFoundation                      0x00007fff9423aaa4 ___forwarding___ + 1028
    5   CoreFoundation                      0x00007fff9423a618 _CF_forwarding_prep_0 + 120
    6   LaunchServices                      0x00007fff93eb1c91 _LSBundleCopyLocalizedName + 702
    7   LaunchServices                      0x00007fff93f1514f _ZL65_LSCopyNodeAttribute_DisplayNameIfDifferentFromFSNameWithLanguageP25LSNode AttributeStateCachePK10__CFString + 241
    8   LaunchServices                      0x00007fff93f1398d _LSCopyNodeAttributes + 377
    9   LaunchServices                      0x00007fff93f1ab23 _ZL48_LSCopyItemAttributesForRefInfoWithOptionsCommonPK19LSExtendedFSRefInfojPK 9__CFArrayjPPK14__CFDictionary + 367
    10  LaunchServices                      0x00007fff93ea13e3 _LSCopyItemAttributeForRefInfoWithOptions + 129
    11  LaunchServices                      0x00007fff93ea12de _ZL27prepareAttributeValueForKeyPK7__CFURLP11__FileCachePK10__CFStringPPKvPP9__ CFError + 178
    12  LaunchServices                      0x00007fff93ea5284 _ZL33prepareDistinctLocalizedNameValuePK7__CFURLP11__FileCachePP9__CFError + 92
    13  LaunchServices                      0x00007fff93e9a2e6 _ZL31LSPropertyProviderPrepareValuesPK7__CFURLP11__FileCachePKPK10__CFStringPPK vlSA_PP9__CFError + 53
    14  CoreServicesInternal                0x00007fff90f6674f _ZL22prepareValuesForBitmapPK7__CFURLP11__FileCacheP19_FilePropertyBitmapPP9__C FError + 227
    15  CoreServicesInternal                0x00007fff90f640ea _ZL40_FSURLCopyResourcePropertyForKeyInternalPK7__CFURLPK10__CFStringPvS5_PP9__ CFErrorh + 211
    16  CoreFoundation                      0x00007fff941eb06b CFURLCopyResourcePropertyForKey + 123
    17  CoreFoundation                      0x00007fff941f2f5e -[NSURL getResourceValue:forKey:error:] + 190
    18  Foundation                          0x00007fff9005b723 -[NSFileManager displayNameAtPath:] + 86
    19  IDEKit                              0x000000010ebab29a -[IDEArchive(AAVArchiveViewerExtensions) aav_displayName] + 245
    20  Foundation                          0x00007fff8ff8fbf8 -[NSObject(NSKeyValueCoding) valueForKey:] + 385
    21  Foundation                          0x00007fff8ffa8673 -[NSObject(NSKeyValueCoding) valueForKeyPath:] + 324
    22  AppKit                              0x00007fff97710912 -[NSArrayController _singleValueForKeyPath:] + 127
    23  Foundation                          0x00007fff8ffa863f -[NSObject(NSKeyValueCoding) valueForKeyPath:] + 272
    24  AppKit                              0x00007fff977103ff -[NSBinder valueForBinding:resolveMarkersToPlaceholders:] + 164
    25  AppKit                              0x00007fff97714240 -[NSValueBinder _adjustObject:mode:observedController:observedKeyPath:context:editableState:adj ustState:] + 302
    26  AppKit                              0x00007fff9771407b -[NSValueBinder _observeValueForKeyPath:ofObject:context:] + 276
    27  AppKit                              0x00007fff97713eeb -[NSTextValueBinder _observeValueForKeyPath:ofObject:context:] + 43
    28  Foundation                          0x00007fff8ff69a03 NSKeyValueNotifyObserver + 382
    29  Foundation                          0x00007fff8ffa8036 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 1142
    30  AppKit                              0x00007fff97706f0a -[NSController _notifyObserversForKeyPath:change:] + 206
    31  AppKit                              0x00007fff97802e1a -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] + 126
    32  AppKit                              0x00007fff97706d4f -[NSArrayController setContent:] + 768
    33  AppKit                              0x00007fff9790860b -[NSArrayDetailBinder _refreshDetailContentInBackground:] + 1034
    34  Foundation                          0x00007fff8ff69a03 NSKeyValueNotifyObserver + 382
    35  Foundation                          0x00007fff8ffa8036 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 1142
    36  AppKit                              0x00007fff97706f0a -[NSController _notifyObserversForKeyPath:change:] + 206
    37  AppKit                              0x00007fff97802e1a -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] + 126
    38  AppKit                              0x00007fff97706d4f -[NSArrayController setContent:] + 768
    39  AppKit                              0x00007fff9790860b -[NSArrayDetailBinder _refreshDetailContentInBackground:] + 1034
    40  Foundation                          0x00007fff8ff69a03 NSKeyValueNotifyObserver + 382
    41  Foundation                          0x00007fff8ff68bd8 NSKeyValueDidChange + 463
    42  Foundation                          0x00007fff8ff6d73d -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 118
    43  IDEKit                              0x000000010eb963fa -[AAVArchivedApplicationsViewController _updateArchiveGroups] + 1342
    44  IDEKit                              0x000000010eb956fe __49-[AAVArchivedApplicationsViewController loadView]_block_invoke80 + 31
    45  DVTFoundation                       0x000000010d888b37 -[NSObject(DVTObservingConvenience) _dvt_newObserverForKeyPath:options:owner:withHandlerBlock:] + 533
    46  DVTFoundation                       0x000000010d6e2076 -[NSObject(DVTObservingConvenience) dvt_newObserverForKeyPath:options:withHandlerBlock:] + 60
    47  IDEKit                              0x000000010eb9558b -[AAVArchivedApplicationsViewController loadView] + 946
    48  AppKit                              0x00007fff97a73417 -[NSViewController _loadViewIfRequired] + 75
    49  AppKit                              0x00007fff977439b1 -[NSViewController view] + 30
    50  DVTKit                              0x000000010dcaf231 -[DVTViewController view] + 39
    51  IDEKit                              0x000000010eb95c47 -[AAVArchivedApplicationsViewController organizerSourceWillAppearInWindowController:] + 89
    52  IDEKit                              0x000000010eadde07 -[IDEOrganizerWindowController replacementView:willInstallViewController:] + 68
    53  DVTKit                              0x000000010dd938bb __42-[DVTReplacementView _setupViewController]_block_invoke + 89
    54  DVTFoundation                       0x000000010d876fb2 DVTInvokeWithFailureHint + 83
    55  DVTKit                              0x000000010dcb274f -[DVTReplacementView _setupViewController] + 337
    56  DVTKit                              0x000000010dcb25c4 -[DVTReplacementView installedViewController] + 138
    57  IDEKit                              0x000000010e96d9fe -[IDEOrganizerWindowController showWindow:] + 52
    58  IDEKit                              0x000000010eb97358 +[AAVArchivedApplicationsViewController revealArchive:] + 107
    59  IDEKit                              0x000000010eb972da +[AAVArchivedApplicationsViewController revealArchiveNotification:] + 60
    60  CoreFoundation                      0x00007fff942accdc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    61  CoreFoundation                      0x00007fff9419e244 _CFXNotificationPost + 3140
    62  Foundation                          0x00007fff8ff62c31 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
    63  DVTFoundation                       0x000000010d857a7e -[NSNotificationCenter(DVTNSNotificationCenterAdditions) _dvt_postNotificationName:object:userInfo:] + 125
    64  IDEFoundation                       0x000000010e28808d __42-[IDEArchiveManager _revealArchiveAtPath:]_block_invoke + 108
    65  DVTFoundation                       0x000000010d8ad646 __DVTAsyncPerformBlock_block_invoke + 39
    66  CoreFoundation                      0x00007fff9420e56c __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
    67  CoreFoundation                      0x00007fff94200675 __CFRunLoopDoBlocks + 341
    68  CoreFoundation                      0x00007fff942001b6 __CFRunLoopRun + 1814
    69  CoreFoundation                      0x00007fff941ff858 CFRunLoopRunSpecific + 296
    70  HIToolbox                           0x00007fff8f0ceaef RunCurrentEventLoopInMode + 235
    71  HIToolbox                           0x00007fff8f0ce86a ReceiveNextEventCommon + 431
    72  HIToolbox                           0x00007fff8f0ce6ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
    73  AppKit                              0x00007fff97684f81 _DPSNextEvent + 964
    74  AppKit                              0x00007fff97684730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    75  DVTKit                              0x000000010dddb6fd -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 237
    76  AppKit                              0x00007fff97678593 -[NSApplication run] + 594
    77  AppKit                              0x00007fff97663a14 NSApplicationMain + 1832
    78  libdyld.dylib                       0x00007fff945795c9 start + 1
    79  ???                                 0x0000000000000001 0x0 + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff9463d286 __pthread_kill + 10
    1   libsystem_c.dylib             0x00007fff8fc58b53 abort + 129
    2   com.apple.dt.IDEKit           0x000000010eab0986 +[IDEAssertionHandler _handleAssertionWithLogString:assertionSignature:assertionReason:extraBacktrace :] + 1510
    3   com.apple.dt.IDEKit           0x000000010eab1c08 -[IDEAssertionHandler handleUncaughtException:] + 1077
    4   com.apple.dt.IDEKit           0x000000010eab1cd7 IDEHandleUncaughtException + 94
    5   com.apple.dt.DVTFoundation     0x000000010d8ad6e8 __DVTAsyncPerformBlock_block_invoke + 201
    6   com.apple.CoreFoundation       0x00007fff9420e56c __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
    7   com.apple.CoreFoundation       0x00007fff94200675 __CFRunLoopDoBlocks + 341
    8   com.apple.CoreFoundation       0x00007fff942001b6 __CFRunLoopRun + 1814
    9   com.apple.CoreFoundation       0x00007fff941ff858 CFRunLoopRunSpecific + 296
    10  com.apple.HIToolbox           0x00007fff8f0ceaef RunCurrentEventLoopInMode + 235
    11  com.apple.HIToolbox           0x00007fff8f0ce86a ReceiveNextEventCommon + 431
    12  com.apple.HIToolbox           0x00007fff8f0ce6ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
    13  com.apple.AppKit               0x00007fff97684f81 _DPSNextEvent + 964
    14  com.apple.AppKit               0x00007fff97684730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    15  com.apple.dt.DVTKit           0x000000010dddb6fd -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 237
    16  com.apple.AppKit               0x00007fff97678593 -[NSApplication run] + 594
    17  com.apple.AppKit               0x00007fff97663a14 NSApplicationMain + 1832
    18  libdyld.dylib                 0x00007fff945795c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff9463e232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8a32ea6a _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff946384de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff9463764f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94200b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff941ffffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff941ff858 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff90d94c80 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff8ffc890a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff946384de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff9463764f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94200b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff941ffffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff941ff858 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation           0x00007fff8ffca849 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    6   com.apple.DTDeviceKitBase     0x000000011c6cb1d2 -[DTDKRemoteDeviceDataListener listenerThreadImplementation] + 676
    7   com.apple.Foundation           0x00007fff8ffc890a __NSThread__main__ + 1345
    8   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff9463d3fa __select + 10
    1   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff946384de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff9463764f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94200b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff941ffffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff941ff858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff977e833b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 6:: DYMobileDeviceManager
    0   libsystem_kernel.dylib         0x00007fff946384de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff9463764f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94200b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff941ffffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff941ff858 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation           0x00007fff8ffca849 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    6   com.apple.Foundation           0x00007fff900c624f -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.GPUToolsMobileFoundation 0x000000011f0fa9eb -[DYMobileDeviceManager _deviceNotificationThread:] + 134
    8   com.apple.Foundation           0x00007fff8ffc890a __NSThread__main__ + 1345
    9   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    10  libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    11  libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff9463d136 __psynch_cvwait + 10
    1   com.apple.Xcode.DevToolsCore   0x0000000117594ebe -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 519
    2   com.apple.Foundation           0x00007fff8ffc890a __NSThread__main__ + 1345
    3   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff9463d136 __psynch_cvwait + 10
    1   com.apple.Xcode.DevToolsCore   0x0000000117594ebe -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 519
    2   com.apple.Foundation           0x00007fff8ffc890a __NSThread__main__ + 1345
    3   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff9463d136 __psynch_cvwait + 10
    1   com.apple.Xcode.DevToolsCore   0x0000000117594ebe -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 519
    2   com.apple.Foundation           0x00007fff8ffc890a __NSThread__main__ + 1345
    3   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff9463d136 __psynch_cvwait + 10
    1   com.apple.Xcode.DevToolsCore   0x0000000117594ebe -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 519
    2   com.apple.Foundation           0x00007fff8ffc890a __NSThread__main__ + 1345
    3   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff9463d136 __psynch_cvwait + 10
    1   com.apple.Xcode.DevToolsCore   0x0000000117594ebe -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 519
    2   com.apple.Foundation           0x00007fff8ffc890a __NSThread__main__ + 1345
    3   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib         0x00007fff9463d94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8bbfd40d start_wqthread + 13
    Thread 24:
    0   libsystem_kernel.dylib         0x00007fff946384de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff9463764f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94200b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff941ffffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff941ff858 CFRunLoopRunSpecific + 296
    5   com.apple.CoreFoundation       0x00007fff942b5ef1 CFRunLoopRun + 97
    6   com.apple.DebugSymbols         0x00007fff947deb8f SpotlightQueryThread(void*) + 463
    7   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib         0x00007fff9463d48a __semwait_signal + 10
    1   com.apple.CoreSymbolication   0x00007fff8a40ff27 0x7fff8a3fd000 + 77607
    2   libsystem_pthread.dylib       0x00007fff8bbff268 _pthread_body + 131
    3   libsystem_pthread.dylib       0x00007fff8bbff1e5 _pthread_start + 176
    4   libsystem_pthread.dylib       0x00007fff8bbfd41d thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff52554188  rdx: 0x0000000000000000
      rdi: 0x000000000000130f  rsi: 0x0000000000000006  rbp: 0x00007fff525541b0  rsp: 0x00007fff52554188
       r8: 0x0000000000000fff   r9: 0x00007f8163438e50  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff9674a440  r13: 0x00007f8169a330b0  r14: 0x00007fff7903a300  r15: 0x00007f8163421900
      rip: 0x00007fff9463d286  rfl: 0x0000000000000206  cr2: 0x00000001100bb2d0
    Logical CPU:     0
    Error Code:      0x020000b8
    Trap Number:     133
    Binary Images:
           0x10d6aa000 -        0x10d6aaff7  com.apple.dt.Xcode (6.1.1 - 6611) <EBE49928-20E6-390D-9AF9-391AD8B2900A> /Applications/Xcode.app/Contents/MacOS/Xcode
           0x10d6af000 -        0x10dae1ff7  com.apple.dt.DVTFoundation (6.1.1 - 6608) <8CF25201-C4E0-38FB-B35F-6701179C0EAB> /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versi ons/A/DVTFoundation
           0x10dc9b000 -        0x10dfa2fff  com.apple.dt.DVTKit (6.1.1 - 6608) <DB1B2A1B-EE7F-3AE4-9C27-394716055A12> /Applications/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Versions/A/D VTKit
           0x10e181000 -        0x10e5afff7  com.apple.dt.IDEFoundation (6.1.1 - 6611) <8A1AD8FD-7934-382F-A8FF-8775162253BD> /Applications/Xcode.app/Contents/Frameworks/IDEFoundation.framework/Versions/A/ IDEFoundation
           0x10e863000 -        0x10f09eff7  com.apple.dt.IDEKit (6.1.1 - 6611) <80C0C035-4DBE-3871-AD0E-78FE76180A84> /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/IDEKit
           0x10f63e000 -        0x10f65bff7  com.apple.dt.instruments.DTXConnectionServices (1.0 - 56085) <DAF79423-E5A3-3DDB-942B-A56EA13B5DEB> /Applications/Xcode.app/Contents/SharedFrameworks/DTXConnectionServices.framewo rk/Versions/A/DTXConnectionServices
           0x10f67b000 -        0x10f6b9ff7  com.apple.framework.ConfigurationProfiles (7.0 - 742) <6C1F3738-453F-368D-8962-7FB81BCA0DFD> /System/Library/PrivateFrameworks/ConfigurationProfiles.framework/Versions/A/Co nfigurationProfiles
           0x10f6db000 -        0x10f6dcfff  libsysmon.dylib (78.10.1) <1D1D6867-B855-3504-B4CD-45E789122B1B> /usr/lib/libsysmon.dylib
           0x10f6e3000 -        0x110176fff +libclang.dylib (600.0.56) <AF31E840-5A20-3151-A9EB-71996DA85AB4> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/ usr/lib/libclang.dylib
           0x110314000 -        0x110348ff7  com.apple.dt.Xcode.DVTSourceControl (1.0 - 1) <A4059AF6-78EB-3998-AF46-1FC707B4B7B0> /Applications/Xcode.app/Contents/SharedFrameworks/DVTSourceControl.framework/Ve rsions/A/DVTSourceControl
           0x110376000 -        0x11038bfff  com.apple.DADocSetManagement (6.1 - 6033) <9EED13AE-5A6F-3126-BE1E-F02CC1873479> /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetManagement.framework/ Versions/A/DADocSetManagement
           0x11039c000 -        0x11039dff7  com.apple.dt.DVTDeveloperModeHelper (1.0 - 1) <CF0209F8-67DD-3663-A44F-5CC151F14B88> /Applications/Xcode.app/Contents/SharedFrameworks/DVTDeveloperModeHelper.framew ork/Versions/A/DVTDeveloperModeHelper
           0x1103aa000 -        0x1103d3ff7  com.apple.dt.instruments.DTGraphKit (6.1 - 56074) <F21064FB-AF1D-3D0F-8A7D-0C3B1A85D313> /Applications/Xcode.app/Contents/SharedFrameworks/DTGraphKit.framework/Versions /A/DTGraphKit
           0x1103ed000 -        0x110435fff  com.apple.DADocSetAccess (6.1 - 6033) <3DECFFA8-E12D-33A9-8176-FCCDE826CF7A> /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetAccess.framework/Vers ions/A/DADocSetAccess
           0x1104be000 -        0x1104d9ff3  com.apple.security.csparser (3.0 - 57031.10.10) <6AC29346-B10D-3986-B06E-876B57392FC2> /System/Library/Frameworks/Security.framework/Versions/A/PlugIns/csparser.bundl e/Contents/MacOS/csparser
           0x1116f7000 -        0x1116f7ffe +cl_kernels (???) <211EEC21-206B-4AFF-AF72-3B81DFAD1E93> cl_kernels
           0x111801000 -        0x111801fff +cl_kernels (???) <21518C27-0E41-4FC9-BC67-44A8CDEC2F0A> cl_kernels
           0x111805000 -        0x111805ff5 +cl_kernels (???) <39650866-E436-447D-8A5A-6473EB0E1A7C> cl_kernels
           0x113274000 -        0x113274fff +cl_kernels (???) <21518C27-0E41-4FC9-BC67-44A8CDEC2F0A> cl_kernels
           0x113283000 -        0x113283ff7 +cl_kernels (???) <6BE7EFA0-FFA6-406A-8256-D073BA1C052E> cl_kernels
           0x113285000 -        0x11336bfef  unorm8_bgra.dylib (2.4.5) <9423FFD4-6EF3-31BF-9DE9-6D55BA76D59E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x1134b3000 -        0x1134b8ff7  com.apple.dt.IDEContinuousIntegration (1.0 - 1) <4678E0F0-266D-364A-B18A-74BE9531DC86> /Applications/Xcode.app/Contents/PlugIns/IDEContinuousIntegration.ideplugin/Con tents/MacOS/IDEContinuousIntegration
           0x1134c1000 -        0x1134c2ff3  com.apple.MTLTools (1.0 - 1) <B5263985-F044-3112-BB71-0C93496E5583> /Applications/Xcode.app/Contents/SharedFrameworks/MTLTools.framework/Versions/A /MTLTools
           0x1134c8000 -        0x1134d4ff3  com.apple.MTLToolsCore (1.0 - 1) <BB559536-ADFA-3018-AB3C-D8D5BB6E63AD> /Applications/Xcode.app/Contents/SharedFrameworks/MTLToolsCore.framework/Versio ns/A/MTLToolsCore
           0x1134df000 -        0x1134dfff7  com.apple.dt.IDE.IDEAppleScriptEditor (6.1.1 - 6254) <C3693423-CCE0-3254-AE46-D51B84967219> /Applications/Xcode.app/Contents/PlugIns/IDEAppleScriptEditor.ideplugin/Content s/MacOS/IDEAppleScriptEditor
           0x1134f0000 -        0x1134f1ff7  com.apple.dt.dbg.DebuggerLLDBService (6.1.1 - 6254) <DF620C49-8758-36D5-967E-BB34D0571FB8> /Applications/Xcode.app/Contents/PlugIns/DebuggerLLDBService.ideplugin/Contents /MacOS/DebuggerLLDBService
           0x11350b000 -        0x11350bfff  com.apple.Metal (1.0 - 1) <D14A8E93-4F85-3D4B-BFBB-2841AC2E20D1> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/Metal.xcplugin/Contents/MacOS/Metal
           0x113565000 -        0x11357cfff  com.apple.DVTiPhoneSimulatorRemoteClient (6.1.1 - 6274) <6481B057-AAD0-31AB-A27A-BAC5C364D8BA> /Applications/Xcode.app/Contents/SharedFrameworks/DVTiPhoneSimulatorRemoteClien t.framework/Versions/A/DVTiPhoneSimulatorRemoteClient
           0x113591000 -        0x1135aafff  com.apple.DeviceLinkX (5.0 - 264) <D86F03AF-EAB0-33B4-B21B-0EB0A85E1258> /System/Library/PrivateFrameworks/DeviceLink.framework/Versions/A/DeviceLink
           0x1135ba000 -        0x1135f0ff7  libssl.0.9.8.dylib (52.10.1) <4A2D6ECA-A07E-38B5-98D4-315A4A1E8CE6> /usr/lib/libssl.0.9.8.dylib
           0x114217000 -        0x11424bff7  com.apple.CoreSimulator (110.4 - 110.4) <3C2AE6EA-1F23-39A4-B316-9120003F75B1> /Applications/Xcode.app/Contents/Developer/Library/PrivateFrameworks/CoreSimula tor.framework/CoreSimulator
           0x114379000 -        0x114386fff  com.apple.dt.IDELanguageSupportCore (6.1.1 - 6743) <54A0BF3F-BC86-3845-94A3-140E31C402D0> /Applications/Xcode.app/Contents/PlugIns/IDELanguageSupportCore.ideplugin/Conte nts/MacOS/IDELanguageSupportCore
           0x114394000 -        0x1143edff7  com.apple.sourcekitd (1.0 - 600.0.56.1) <58C89ADF-9024-3277-B63F-CFB5D0E4F174> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/ usr/lib/sourcekitd.framework/Versions/A/sourcekitd
           0x114415000 -        0x114451ff7  com.apple.dt.dbg.DebuggerFoundation (6.1.1 - 6254) <ACD560EA-A46A-3EE0-83BA-6759B59461DA> /Applications/Xcode.app/Contents/PlugIns/DebuggerFoundation.ideplugin/Contents/ MacOS/DebuggerFoundation
           0x11448e000 -        0x11448ffff  libpanel.5.4.dylib (44) <FB699180-AF56-34A8-90C7-8C0DC748F22B> /usr/lib/libpanel.5.4.dylib
           0x114494000 -        0x1144b2fff  libedit.3.dylib (40) <6049084C-478A-3A89-A9A1-E641B5F8C1A7> /usr/lib/libedit.3.dylib
           0x1144c3000 -        0x1144cbfff  com.apple.DevToolsFoundation (8.1.1 - 6269) <8C846FE6-3E91-3822-994D-58112C8B5428> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsFoundation.framework/Versions/A/DevToolsFoundation
           0x114625000 -        0x1146b3ff7  com.apple.dt.IBAutolayoutFoundation (1.0 - 6254) <E9CD59F5-4644-3135-9BB9-EC3972933A43> /Applications/Xcode.app/Contents/Frameworks/IBAutolayoutFoundation.framework/Ve rsions/A/IBAutolayoutFoundation
           0x114711000 -        0x1147b1fff  com.apple.dt.IBFoundation (1.0 - 6254) <E99B011E-5FF5-3537-BA8B-F6C1C53B6139> /Applications/Xcode.app/Contents/Frameworks/IBFoundation.framework/Versions/A/I BFoundation
           0x114824000 -        0x11486eff7  com.apple.CoreThemeDefinition (2.0 - 182) <11BB8A48-8C00-3C63-BBF1-2BF8FE612B2F> /System/Library/PrivateFrameworks/CoreThemeDefinition.framework/Versions/A/Core ThemeDefinition
           0x1148a6000 -        0x1148edff7  com.apple.dt.dbg.DebuggerLLDB (6.1.1 - 6254) <96077ACE-B40D-346F-A943-A9D4DF5902AE> /Applications/Xcode.app/Contents/PlugIns/DebuggerLLDB.ideplugin/Contents/MacOS/ DebuggerLLDB
           0x114920000 -        0x1169e4f6b  com.apple.LLDB.framework (1.320.4.156 - 320.4.156) <1597D391-C69B-30F1-82B1-683DB68538A6> /Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLD B
           0x1172a3000 -        0x117394ff7  org.python.python (2.7.6 - 2.7.6) <A5C1B694-31A0-3966-B6BC-C40694DC707F> /System/Library/Frameworks/Python.framework/Versions/2.7/Python
           0x1173fa000 -        0x117436fff  com.apple.dt.IDE.Xcode3Core (6.1.1 - 6269) <E141FDDD-CE38-3936-BBAA-A0DA1182EB17> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/MacOS/Xc ode3Core
           0x11745c000 -        0x1177bbfff  com.apple.Xcode.DevToolsCore (8.1.1 - 6269) <6BE0D774-F7AB-397F-97C3-1C7595B6BD05> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsCore.framework/Versions/A/DevToolsCore
           0x117958000 -        0x11798ffff  com.apple.Xcode.DevToolsSupport (8.1.1 - 6269) <021EAD1B-3BEF-33C6-9B6F-4C03A38D8587> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Framewor ks/DevToolsSupport.framework/Versions/A/DevToolsSupport
           0x117ab7000 -        0x117c5efff  com.apple.dt.IDE.Xcode3UI (6.1.1 - 6269) <E1ADC095-369E-35FE-BC82-9C8E3C8D1B18> /Applications/Xcode.app/Contents/PlugIns/Xcode3UI.ideplugin/Contents/MacOS/Xcod e3UI
           0x117d7c000 -        0x117de8ff7  com.apple.dt.IDE.IDEDocViewer (6.1.1 - 6254) <504856EB-486D-30BA-B66F-0030C55B6DE1> /Applications/Xcode.app/Contents/PlugIns/IDEDocViewer.ideplugin/Contents/MacOS/ IDEDocViewer
           0x117e3e000 -        0x117e5dfff  com.apple.dt.IDE.IDEQuickHelp (6.1.1 - 6254) <50B92ACD-68A8-38AB-A0D8-1A2D950D8351> /Applications/Xcode.app/Contents/PlugIns/IDEQuickHelp.ideplugin/Contents/MacOS/ IDEQuickHelp
           0x117e7a000 -        0x117ebafff  com.apple.dt.IDE.iCloudSupport (6.1.1 - 6254) <F876E702-FD72-36C9-847B-1826940344D4> /Applications/Xcode.app/Contents/PlugIns/iCloudSupport.ideplugin/Contents/MacOS /iCloudSupport
           0x117ef4000 -        0x118401ff7  com.apple.dt.IDE.IDEInterfaceBuilderKit (6.1.1 - 6254) <CB2B752B-5982-3D87-8F94-8C2022159663> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderKit.ideplugin/Conte nts/MacOS/IDEInterfaceBuilderKit
           0x118792000 -        0x1187c6ffb  com.apple.GPUTools (1.0 - 16738) <04AC823C-BAC2-3691-B7DF-70DE0BBCC44C> /Applications/Xcode.app/Contents/SharedFrameworks/GPUTools.framework/Versions/A /GPUTools
           0x1187fa000 -        0x118801ff7  com.apple.dt.IDE.HexEditor (6.1.1 - 6254) <0C2003E2-2971-338D-91B2-5616E05D6598> /Applications/Xcode.app/Contents/PlugIns/HexEditor.ideplugin/Contents/MacOS/Hex Editor
           0x11880b000 -        0x118839ff7 +com.ridiculousfish.HexFiendFramework (6.1.1 - 6254) <32F0B5F7-0C97-3D5C-9C7F-C8E911CBE856> /Applications/Xcode.app/Contents/SharedFrameworks/HexFiend.framework/Versions/A /HexFiend
           0x118860000 -        0x118863fff  com.apple.dt.dbg.DebuggerKit (1.0 - 1) <9C4A616E-0A53-36B2-9E47-545034B681E3> /Applications/Xcode.app/Contents/PlugIns/DebuggerKit.ideplugin/Contents/MacOS/D ebuggerKit
           0x11886c000 -        0x118938ff7  com.apple.dt.dbg.DebuggerUI (6.1.1 - 6254) <3661559D-8080-3059-A76F-E4681BB2CE95> /Applications/Xcode.app/Contents/PlugIns/DebuggerUI.ideplugin/Contents/MacOS/De buggerUI
           0x1189e5000 -        0x118e29ff7  com.apple.SceneKit (5.0 - 260.7.1) <61A4433D-A28A-37FF-BF20-1D69EDE78AF8> /System/Library/Frameworks/SceneKit.framework/Versions/A/SceneKit
           0x1190cc000 -        0x11918dff7  com.apple.dt.IDE.IDESourceEditor (6.1.1 - 6254) <24558466-B611-301D-8504-9F4F551B6519> /Applications/Xcode.app/Contents/PlugIns/IDESourceEditor.ideplugin/Contents/Mac OS/IDESourceEditor
           0x119204000 -        0x119233fff  com.apple.dt.gpu.GPUDebuggerFoundation (6.1.1 - 16738) <A3441AEC-682E-3D9E-9F27-7408B27D8C01> /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerFoundation.ideplugin/Conten ts/MacOS/GPUDebuggerFoundation
           0x11925f000 -        0x11929dffb  com.apple.GPUToolsCore (1.0 - 16738) <19E72634-C3CC-39E3-ACA0-A927714920B5> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsCore.framework/Versio ns/A/GPUToolsCore
           0x1192f1000 -        0x1192f9fff  com.apple.dt.IDE.IDEOSXSupportCore (6.1.1 - 6056) <6CF2A8F4-CD93-34D3-A252-260EB5912BCB> /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/ Library/Xcode/PrivatePlugIns/IDEOSXSupportCore.ideplugin/Contents/MacOS/IDEOSXSu pportCore
           0x119307000 -        0x119316ff7  com.apple.DTDeviceKit (4.2 - 6274) <0923D371-9E54-3A33-9C4D-D6A3C568F642> /Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKit.framework/Version s/A/DTDeviceKit
           0x119326000 -        0x11932afff  com.apple.audio.AppleHDAHALPlugIn (269.25 - 269.25) <D7562B22-F5ED-3FD6-894E-4F4876DE14FF> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x11932f000 -        0x1193feff7  com.apple.GPUToolsServices (1.0 - 16738) <7060880D-35F8-36AD-90C5-0E259475E261> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsServices.framework/Ve rsions/A/GPUToolsServices
           0x119466000 -        0x11946bffb  com.apple.GPUToolsInterface (1.0 - 16738) <D9DC1D8B-2527-31C3-B0F4-C549CBB9FB7F> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsInterface.framework/V ersions/A/GPUToolsInterface
           0x119473000 -        0x11949bff3  com.apple.GLToolsInterface (1.0 - 16738) <56DEBFD8-B9B6-3B7A-A31B-E588EB429DAD> /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsInterface.framework/Ve rsions/A/GLToolsInterface
           0x1194b9000 -        0x11953cff7  com.apple.GLToolsCore (1.0 - 16738) <833E69EE-8BEC-362A-AE43-63B4C263697F> /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsCore.framework/Version s/A/GLToolsCore
           0x11955a000 -        0x11956bff3  com.apple.GLTools (1.0 - 16738) <612A093E-34E1-372B-9851-61A452D13E81> /Applications/Xcode.app/Contents/SharedFrameworks/GLTools.framework/Versions/A/ GLTools
           0x119573000 -        0x1195c9ff3  com.apple.GLToolsServices (1.0 - 16738) <70E50EE3-C00F-3CDF-8166-22D657C880AF> /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsServices.framework/Ver sions/A/GLToolsServices
           0x11960f000 -        0x119696ff7  com.apple.gputools.GLToolsAnalysisEngine (1.0 - 16738) <7E492003-01EE-3D4B-BA0B-6DA4240EFB06> /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsAnalysisEngine.framewo rk/Versions/A/GLToolsAnalysisEngine
           0x119720000 -        0x119720ff7  com.apple.xcode.compilers.coredata (8.1.1 - 6269) <ECC08123-F948-3CDA-AAFF-C78E0B0B833E> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/Core Data.xcplugin/Contents/MacOS/Core Data
           0x119764000 -        0x119769ff7  com.apple.dt.gpu.GPUTraceDebugger (6.1.1 - 16738) <93E8E56C-7D20-32DB-9C29-D445C15885E2> /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebugger.ideplugin/Contents/Ma cOS/GPUTraceDebugger
           0x119771000 -        0x11977cfff  com.apple.dt.gpu.GPUDebuggerKit (6.1.1 - 16738) <8EB5F440-743E-3E7C-91F3-4F96BCF95BB3> /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerKit.ideplugin/Contents/MacO S/GPUDebuggerKit
           0x11978f000 -        0x1197fdfff  com.apple.dt.gpu.GPUTraceDebuggerUI (6.1.1 - 16738) <B155A56D-BB3B-34B1-A01B-8F18E6EF5432> /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebuggerUI.ideplugin/Contents/ MacOS/GPUTraceDebuggerUI
           0x11a988000 -        0x11aa00fff  com.apple.dt.IDE.IDEiOSSupportCore (6.1.1 - 6274) <9049E0FB-9370-3047-BF0B-A527AB678868> /Applications/Xcode.app/Contents/PlugIns/IDEiOSSupportCore.ideplugin/Contents/M acOS/IDEiOSSupportCore
           0x11aacb000 -        0x11aaf0ff7  com.apple.DiscRecordingUI (9.0 - 9000.4.2) <F1DC628C-5B6F-3AB5-912E-81DB1A9F0FA3> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
           0x11ab11000 -        0x11ab53ff7  com.apple.glut (3.6.2 - GLUT-3.6.2) <48FFD2D2-8347-3E09-88EE-53DF5DB912A0> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
           0x11ad86000 -        0x11ad96fff  com.apple.dt.XCLanguageSupport (6.1.1 - 6743) <B2B93EDC-1696-3E83-90EE-ADFAFC98A5E0> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/XCLanguageSupport.xcplugin/Contents/MacOS /XCLanguageSupport
           0x11ada4000 -        0x11adaefff  com.apple.xcode.plug-in.CoreBuildTasks (8.1.1 - 6269) <6E29F1BC-B350-3CE7-A9D8-A5DF04E82781> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/MacOS/Co reBuildTasks
           0x11adb6000 -        0x11adb6ff7  com.apple.compilers.clang (8.1.1 - 6269) <88A626F9-D8FF-356A-8B9D-7DCC4C3152F9> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSu pport/Developer/Library/Xcode/Plug-ins/Clang LLVM 1.0.xcplugin/Contents/MacOS/Clang LLVM 1.0
           0x11adba000 -        0x11adbdff7  com.apple.platform.iphonesimulator.plugin (1.0 - 1.0) <AD85F733-ABA7-3919-AE01-93B4A9DCBDDB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/Xcode/PrivatePlugIns/iPhoneSimulator Build System Support.xcplugin/Contents/MacOS/iPhoneSimulator Build System Support
           0x11adc3000 -        0x11adc4ff7  com.apple.platform.iphoneos.plugin (1.0 - 1.0) <9E32CF38-9E8A-3188-B099-ED4AF81A061D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope r/Library/Xcode/PrivatePlugIns/iPhoneOS Build System Support.xcplugin/Contents/MacOS/iPhoneOS Build System Support
           0x11adc8000 -        0x11adccff7  com.apple.dt.IDEIODebugGaugesCore (6.1.1 - 6254) <76638143-2636-3FC5-B961-18FE6A99D8DD> /Applications/Xcode.app/Contents/PlugIns/IDEIODebugGaugesCore.ideplugin/Content s/MacOS/IDEIODebugGaugesCore
           0x11add6000 -        0x11ade3ff7  com.apple.dt.IDEIODebugGaugesUI (6.1.1 - 6254) <1B9A74A2-B7F1-3ADA-82A5-8C972490A8E8> /Applications/Xcode.app/Contents/PlugIns/IDEIODebugGaugesUI.ideplugin/Contents/ MacOS/IDEIODebugGaugesUI
           0x11c6a6000 -        0x11c725ff7  com.apple.DTDeviceKitBase (6.1.1 - 6274) <3D1BBDB3-A2A3-3D87-8E18-8032001DE9E5> /Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKitBase.framework/Ver sions/A/DTDeviceKitBase
           0x11c776000 -        0x11c88efff  com.apple.mobiledevice (757.3.2.0.4 - 757.3.2.0.4) <7593205C-1F64-3BD2-A1E0-81B2CCF853A4> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
           0x11c98d000 -        0x11cb5afff  com.apple.dt.IDE.IDEInterfaceBuilderCocoaIntegration (6.1.1 - 6254) <70370059-1756-3378-93D0-E44CE62E3F25> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderCocoaIntegration.id eplugin/Contents/MacOS/IDEInterfaceBuilderCocoaIntegration
           0x11d0df000 -        0x11d2d3fff  com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchIntegration (6.1.1 - 6247) <025FDE46-34BB-3E85-B2DD-9201DF88835C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderCocoaTouchIntegration.i deplugin/Contents/MacOS/IDEInterfaceBuilderCocoaTouchIntegration
           0x11d3c2000 -        0x11d5dcfff  com.apple.audio.units.Components (1.12 - 1.12) <95245456-EE5C-3D29-8E18-5E02E74A2683> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x11d697000 -        0x11d6dbfff  com.apple.dt.IDE.IDEiPhoneSupport (6.1.1 - 6274) <F721A366-0288-31BD-A2DF-82099D14D885> /Applications/Xcode.app/Contents/PlugIns/IDEiPhoneSupport.ideplugin/Contents/Ma cOS/IDEiPhoneSupport
           0x11db1c000 -        0x11db3cffb  com.apple.MTLToolsServices (1.0 - 1) <E85779EB-83EB-3F80-82C8-D0C86F4B5B3E> /Applications/Xcode.app/Contents/SharedFrameworks/MTLToolsServices.framework/Ve rsions/A/MTLToolsServices
           0x11db57000 -        0x11db6dfff  com.apple.dt.IDE.IDESubversion (6.1.1 - 6254) <9B7A80F8-C70B-3371-B9A5-1C28CD6BBC97> /Applications/Xcode.app/Contents/PlugIns/IDESubversion.ideplugin/Contents/MacOS /IDESubversion
           0x11e1a4000 -        0x11e1a4ffe +cl_kernels (???) <211EEC21-206B-4AFF-AF72-3B81DFAD1E93> cl_kernels
           0x11e443000 -        0x11e4afff7  com.apple.dt.gpu.GPURenderTargetEditor (6.1.1 - 16738) <177EC5FF-ED4C-3D13-90FB-D7DDE4187C7D> /Applications/Xcode.app/Contents/PlugIns/GPURenderTargetEditor.ideplugin/Conten ts/MacOS/GPURenderTargetEditor
           0x11e4f3000 -        0x11e4fcff7  com.apple.dt.PlistEditor (6.1.1 - 6254) <56213BF0-BEE9-302F-913C-E43260E3E6F9> /Applications/Xcode.app/Contents/PlugIns/PlistEditor.ideplugin/Contents/MacOS/P listEditor
           0x11e508000 -        0x11e559fff  com.apple.IDESpriteKitParticleEditor (2.0 - 2) <1D89DF54-E7DE-3918-B924-0B7C81476BAB> /Applications/Xcode.app/Contents/PlugIns/IDESpriteKitParticleEditor.ideplugin/C ontents/MacOS/IDESpriteKitParticleEditor
           0x11e58b000 -        0x11e6f1fff  com.apple.SpriteKit (1.0 - 1) <54E947B4-A15E-327B-8E8B-42409CB2A3AC> /System/Library/Frameworks/SpriteKit.framework/Versions/A/SpriteKit
           0x11e788000 -        0x11e7deff7  com.apple.PhysicsKit (1.0 - 1) <F7CF543C-70F5-312F-B230-D09349848EAD> /System/Library/PrivateFrameworks/PhysicsKit.framework/Versions/A/PhysicsKit
           0x11e80b000 -        0x11e832ff7  com.apple.GLKit (1.0 - 27) <AFCF7EC6-B06D-316C-842C-DAE5FFA115F9> /System/Library/Frameworks/GLKit.framework/Versions/A/GLKit
           0x11e856000 -        0x11e87cff7  com.apple.audio.OpenAL (1.8 - 1.8) <B05578A8-FE08-310C-BF91-C1BDE10858CD> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
           0x11e88e000 -  

    I've solved the problem by updating Windows.

  • Cant get archived app to work!!!!!!

    archived all 49 class files using:
    'jar cvf Tutorial.jar Tutorial.class Tutorial$1.class' ........etc
    goes fine.
    Then I create a text file called 'mainClass', containing the text:
    Main-Class: Tutorial
    ,then add this to the manifest file, using:
    jar cmf mainClass.txt Tutorial.jar Tutorial.class
    goes fine!! Then I try and run the app using:
    java -jar Tutorial.jar
    then get the error message:
    'failed to load Main-Class manifest attribute from Tutorial.jar'
    Dont know what the h*ll im doing wrong....been trying it for hours!! - been following the JAR tutorial on the sun website......Am i doing something basic wrong.....??
    cheerz :)

    ok.....got it working.....
    ....its a bit stupid tho! I unpacked the jar file, and it only ended up unpacking the main class file Tutorial.class. All the other 48 class files I had archived just didnt seem to be in there! So I re-archived it with the new meta file, and had to specify all the bloomin 49 class files again!! ..there must be an easier way?
    .surely there is a program that can just read in a java file, then compile it and then archive it!!.....jbuilder can probably do it, but I cant even get my java file to compile in it!!....is there a simple, free program??!!
    glad i got it workin tho!!
    cheerz

  • Partially Collected Config Archive

    Hello,
    For 3 switches config archive is partially collected,After searching from enough threads i have done the below but still no sucess
    i have given enough rights to tftpboot dir for caususer
    created a vlan.dat in tftpboot folder
    manually copied vlan.dat from switch to the file in vlan.dat
    start a job of syn but no sucess.
    Any hints experts.
    Thanks

    Dear's
    Waiting for ur replies??
    Thanks.

  • Can anyone recommend a quality archiving App?

    Hi,
    We're wanting to archive all our backed-up dvd's which contain our family pics, home movies, work files etc.
    We would like a nice little slick App that lists all files on each disk in some kind of database so we can quickly see which disk contains each file without inserting every disk & searching it.
    Or can this be done within Mountain Lion?
    Cheers
    Wayne & Family :-)

    Dvds are not an archiving solution - they can deteriorate within a few years. Some Blu-ray disks are intended for archiving (they claim for centuries!) and so are better suited - provided you can find amuseum with a blu-ray disk reader that works in 20 years.
    I have started using an MCE blu-ray burner with 25Gb disks for archiving photos etc. i expect there  is software around to create a catalogue while burning disks.

  • Lost Part of Partial Visual Field of App

    While scrolling through an App..I have lost 1/4 of the visual field on my screen...in other words the App only fills 3/4 of the iPad screen and leaves 1/4 strip blank...Thank you for any help with this... I am very grateful for this community

    It sounds like you've got an app that's optimized for the iPhone screen.

Maybe you are looking for

  • Opening SWF to its exact size in HTML (ASP page)

    Hi, I have one popup window to open any SWF. User clicks a button from some other page and the file name is passed to this popup window through parameter. The popup window itself is sized at 100% to accomodate with any SWF file. For the SWF object, i

  • Problem in opening .ics and .vcs file types through servlet in IE browser.

    I'm having problem in downloading an .ics and .vcs file through servlet in I.E browser. It is happening fine in Mozilla firefox(they both are getting opened in OutLook), but in IE it says as undefined file type. I'm using Content Type as : 'text/Cale

  • Payload as Attachment in mail

    Dear All I have an XML file which I need to convert to a flat file and send as a mail attachment. The problem is that I dont want the payload of the file to be a part of the message text. Please suggest a solution Sourabh

  • Openldap client compile in Solaris 8/9

    Did anyone compile openldap client with ssl/TLS in solaris 8/9 platform and authenticate against SUN one iplanet directory server 5.1 sp2 successfully? I cannot get the openldap client talk to the IDS ? Thanks DMA

  • Creating pdf

    I down loaded an app from HP to create pdf docs, called "Open office to PDF"   with no luck in working or contacting the app provider, does anyone know another way to create PDF docs from office documents on my new cool touchpad? Post relates to: HP