Unexpected Full GC's?

I'm trying to track down a Java performance issue, and believe it may
be related to GC behavior. Quick background: j2se app server running
Caucho Resin 2.1.12, on RHEL3 with Sun JDK 1.4.2_04, modest number of
threads, serving approx 50-150 requests per second.
The system runs as expected until the first Full GC, which happens as
normal, when the heap has reached near full.
9235.733: [GC 777863K->768933K(780864K), 0.0228370 secs]
9236.850: [GC 779237K->779416K(780864K), 0.0259900 secs]
9236.876: [Full GC 779416K->168274K(780864K), 1.5076750 secs]
9241.554: [GC 217616K->212151K(780864K), 0.0139170 secs]
9241.677: [GC 221815K->172838K(780736K), 0.0124830 secs]
Then, it starts doing Full GC's much more frequently, every 30-300
seconds (notice that it was 9000 seconds before the first full GC),
and the heap isn't anywhere near full
9282.828: [GC 225917K->176877K(780992K), 0.0097920 secs]
9282.838: [Full GC 176877K->166557K(781120K), 1.0936260 secs]
9286.648: [GC 216409K->214382K(781248K), 0.0105110 secs]
9282.828: [GC 225917K->176877K(780992K), 0.0097920 secs]
9282.838: [Full GC 176877K->166557K(781120K), 1.0936260 secs]
9286.648: [GC 216409K->214382K(781248K), 0.0105110 secs]
This continues for the entire life of the application. As you'd
expect, this is significantly lowering throughput. I've tried all
sorts of jvm options, including DisableExplicitGC, even though I'm
pretty sure we aren't calling System.gc().
Any ideas??

If you look at your scavenge collections you're not actually removing a lot of data per scavenge. Therefore your new space is filling up with many objects that are long lived. The new space is filling up quickly and so results in a full collection where the majority of your objects are copied into the longer lived "old" space.
Basically your scavenge collections are inefficeient and so you are just filling up your old space until it becomes full and a full GC happens to clear it out. I'd suggest increasing your new space size using -Xmn, this would give your objects more time to potentially go out of scope and become elligible for collection.
You might also want to look at your code and see if you are holding on to any object references for too long which delays their collection.

Similar Messages

  • Unexpected full memory

    I keep getting unexpected full memory. please help.

    Hope this helps.
    1. Startup in Safe Mode
        http://support.apple.com/kb/PH14204
    2. Increase Disk Space
        http://support.apple.com/kb/PH13806?viewlocale=en_US
    3. Delete "Recovered Messages", if any.
        Hold the option key down and click "Go" menu in the Finder menu bar.
        Select "Library" from the dropdown.
        Library > Mail > V2 > Mailboxes
        Delete "Recovered Messages", if any.
        Empty Trash. Restart.
    4. Repair Disk
        Steps 1 through 7
        http://support.apple.com/kb/PH5836
    5. Local Time Machine Snap Shots
        http://support.apple.com/kb/PH14329
    6. Re-index Macintosh HD
       System Preferences > Spotlight > Privacy
       http://support.apple.com/kb/ht2409
    If this does not help, you have to move iPhoto, iMovie and iTunes data to an external HD.

  • Unexpected Full GC: Why did we have a Full GC here?

    Hi,
    I have a scenario where a Full GC occurred. Here are the VM parameters.
    /usr/jdk/jdk1.6.0_24/bin/java -ms6144M -mx6144M -XX:MaxPermSize=256M -XX:+UseParNewGC -XX:SurvivorRatio=8 -XX:ParallelGCThreads=20 -Xloggc:logs/JVM_GC.log -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintTenuringDistribution -XX:+PrintHeapAtGC -XX:+PrintVMOptions
    Note: I am not using a CMS here. Parallel GC is used by default due to my system configs.
    Here is the corresponding log messages: I failed to understand what is the cause of this Full GC. There is no failures in GC log. Tenured is still have lot of space. This Full GC is not by RMI. PERM Gen remained same before and after GC.
    Can someone explain why a Full GC occurred here?
    {Heap before GC invocations=8427 (full 34):
    par new generation total 1887488K, used 1076526K [0x0000000670000000, 0x00000006f0000000, 0x00000006f0000000)
    eden space 1677824K, 60% used [0x0000000670000000, 0x00000006adf8a0e0, 0x00000006d6680000)
    from space 209664K, 29% used [0x00000006e3340000, 0x00000006e6f01a20, 0x00000006f0000000)
    to space 209664K, 0% used [0x00000006d6680000, 0x00000006d6680000, 0x00000006e3340000)
    tenured generation total 4194304K, used 2897518K [0x00000006f0000000, 0x00000007f0000000, 0x00000007f0000000)
    the space 4194304K, 69% used [0x00000006f0000000, 0x00000007a0d9b848, 0x00000007a0d9ba00, 0x00000007f0000000)
    compacting perm gen total 169280K, used 169279K [0x00000007f0000000, 0x00000007fa550000, 0x0000000800000000)
    the space 169280K, 99% used [0x00000007f0000000, 0x00000007fa54ffc8, 0x00000007fa550000, 0x00000007fa550000)
    No shared spaces configured.
    +2013-02-07T21:48:06.801+0000: 418726.755: [Full GC 418726.755: [Tenured: 2897518K->1136578K(4194304K), 2.6452830 secs] 3974044K->1136578K(6081792K), [Perm : 169279K->169279K(169280K)], 2.6458510 secs] [Times: user=2.64 sys=0.01, real=2.65 secs]+
    Heap after GC invocations=8428 (full 35):
    par new generation total 1887488K, used 0K [0x0000000670000000, 0x00000006f0000000, 0x00000006f0000000)
    eden space 1677824K, 0% used [0x0000000670000000, 0x0000000670000000, 0x00000006d6680000)
    from space 209664K, 0% used [0x00000006e3340000, 0x00000006e3340000, 0x00000006f0000000)
    to space 209664K, 0% used [0x00000006d6680000, 0x00000006d6680000, 0x00000006e3340000)
    tenured generation total 4194304K, used 1136578K [0x00000006f0000000, 0x00000007f0000000, 0x00000007f0000000)
    the space 4194304K, 27% used [0x00000006f0000000, 0x00000007355f08a8, 0x00000007355f0a00, 0x00000007f0000000)
    compacting perm gen total 169280K, used 169279K [0x00000007f0000000, 0x00000007fa550000, 0x0000000800000000)
    the space 169280K, 99% used [0x00000007f0000000, 0x00000007fa54ffc8, 0x00000007fa550000, 0x00000007fa550000)
    No shared spaces configured.
    Thanks,
    Karthik

    Hello,
    We have the exact same issue. Did you ever solve this issue? We have a t5220 and have just upgraded our 11.5.10.2 11i system on it from 9.2.0.8 32-bit sparc to 11.2.0.1 64-bit sparc. Things should be faster but arent, and our consultant has tracked it down to high wait times when the apps tier using forms connects to the database tier on the same box. So even though the t5220 is both server and client, there is something about the client sql connection.through TNS that his having trouble. Thanks for any information. We've also created an S/R with Oracle.
    Note: I am well aware of the other issues with the CMT server series but this particular issue seems independent of the regular / known issues and remains a mystery to us. Other known issues with the CMT servers for SPARC:
    Metalink Note 781763.1 (Migration from fast single threaded CPU machine to CMT UltraSPARC T1 & T2)
    http://blogs.sun.com/glennf/resource/Optimizing_Oracle_CMT_v1.pdf
    http://blogs.sun.com/glennf/tags/throughput
    http://blogs.sun.com/glennf/entry/getting_past_go_with_sparc
    http://www.oracle.com/apps_benchmark/doc/E-Bus-11i-PAY_ORA_SUN-T5220.pdf (this paper has some oracle init settings at the end. The kernel settings have been included in the OS upgrade)
    http://blogs.sun.com/mandalika/entry/siebel_on_sun_cmt_hardware

  • Unreasonable full GC's

    hi,
    we're experiencing very (IMHO!) unreasonable/unexpected full GCs after some time in a jboss webapplication. Here is an example:
    11113.762: [Full GC {Heap before gc invocations=863:
    par new generation   total 235968K, used 212112K [0xfffffffe20000000, 0xfffffffe30000000, 0xfffffffe30000000)
      eden space 209792K, 100% used [0xfffffffe20000000, 0xfffffffe2cce0000, 0xfffffffe2cce0000)
      from space 26176K,   8% used [0xfffffffe2e670000, 0xfffffffe2e8b43e8, 0xfffffffe30000000)
      to   space 26176K,   0% used [0xfffffffe2cce0000, 0xfffffffe2cce0000, 0xfffffffe2e670000)
    concurrent mark-sweep generation total 3932160K, used 464922K [0xfffffffe30000000, 0xffffffff20000000, 0xffffffff20000000)
    concurrent-mark-sweep perm gen total 131072K, used 91372K [0xffffffff20000000, 0xffffffff28000000, 0xffffffff40000000)
    11113.763: [ParNew: 212112K->3048K(235968K), 0.0205527 secs] 677035K->467972K(4168128K)Heap after gc invocations=864:
    par new generation   total 235968K, used 3048K [0xfffffffe20000000, 0xfffffffe30000000, 0xfffffffe30000000)
      eden space 209792K,   0% used [0xfffffffe20000000, 0xfffffffe20000000, 0xfffffffe2cce0000)
      from space 26176K,  11% used [0xfffffffe2cce0000, 0xfffffffe2cfda2f0, 0xfffffffe2e670000)
      to   space 26176K,   0% used [0xfffffffe2e670000, 0xfffffffe2e670000, 0xfffffffe30000000)
    concurrent mark-sweep generation total 3932160K, used 464923K [0xfffffffe30000000, 0xffffffff20000000, 0xffffffff20000000)
    concurrent-mark-sweep perm gen total 131072K, used 91372K [0xffffffff20000000, 0xffffffff28000000, 0xffffffff40000000)
    }As you see the heap is far away from being full (600 mb to 700 mb while the heap size is actually 4gb). Such full gcs happen like 5 to 10 times in a day which aren't critical but since most of our caches are soft referenced they would, afaik understood soft-references and full gcs, be removed on a full gc. I don't see any endless loops or similar in thread dumps which may lead to excessive full gc's.
    I'd like to know why the JVM decides to do these full gc's, is there any possibility to get this information by special vm parameters or some analysis tool?
    The VM actually runs with the following parameters:
    -d64 -Djava.net.preferIPv4Stack=true -Djava.awt.headless=true
    -Xms4g -Xmx4g -XX:PermSize=128M -XX:MaxPermSize=512m -XX:ThreadStackSize=256 -XX:NewSize=256M
    -XX:+DisableExplicitGC -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSClassUnloadingEnabled -XX:SurvivorRatio=8  -XX:ParallelGCThreads=8 -XX:LargePageSizeInBytes=256m 
    -XX:+PrintHeapAtGC -Xloggc:[...] -XX:+PrintHeapAtGCMost of the heap size parameters were taken from http://www.sun.com/bigadmin/features/articles/jboss_sf_t2000.jsp since the machine is a sun fire t2000 and we're running jboss on it. Also all of the kernel parameters were adopted.
    Java version:
    java version "1.5.0_17"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_17-b04)
    Java HotSpot(TM) 64-Bit Server VM (build 1.5.0_17-b04, mixed moderegards,
    stefan
    Edited by: slotties on Mar 26, 2009 2:23 AM

    Which version of the JRE are you running?
    Note that you didn't capture the entire GC event log in your quote: you are missing the statement of how long the full collection took, e.g., up through the closing "]" that matches the one that starts "[Full GC ".
    You have -XX:+DisableExplicitGC, so the full GC's are *not* caused by calls to System.gc(), which also rules out RMI, a usual source of otherwise unexplained full collections.  Is there some periodicity to the full collections?  (You only say "5 to 10 times in a day".)
    The right answer is to work through your Sun Support Engineer to figure out why these collections are happening and to get help in tuning the collector to avoid them (if they are a problem).  If you are not willing to go to that much effort, you could post a day's GC log to [email protected] and see if anyone there had some suggestions.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Unix command sorely needed

    Hi
    Our tmp file was rammed up to 98% early this morning and I was called to deal with it.
    I needed to see the largest files then decide if we could eliminate them.
    I really need a Unix command that will list the largest files first (or last) from a given directory.
    Does this command exist? I already tried googling to meagre avail.
    Thanks.
    AIX 5.2
    9.2.0.2
    DA

    Hi Dan,
    I really need a Unix command that will list the largest files first (or last) from a given directory.Here is how I do it, using the "find" command:
    http://www.dba-oracle.com/t_unix_script_find_files_older_date.htm
    Finding large files on Linux
    The following command is very useful in cases where a Linux file system has become full. As we may know, Oracle will hang whenever Oracle must expand a tablespace and Oracle cannot extend the UNIX filesystem.
    When a UNIX file become unexpectedly full, it may be because Oracle has written a huge core or trace file into the UNIX filesystem.
    The script below will display all files that are greaten then one megabyte in size. Note that the size parameter is specified in K-bytes.
    root> find . -size +1024 –print
    ./prodsid_ora_22951.trc
    Of course, you can easily append the xargs of –exec command to automatically remove the large file:
    root> find . -size +1024 –print|xargs –i rm \;
    This find command will do a "stats" on all files in a directory structure, showing the total size of all files in the directory. You can also incorporate the "df -k" command"
    find ${START_DIR} -mtime -${DAYS} |xargs stat -c "%s"|awk '{sum += $1}END{print sum}'
    Hope this helps . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference"
    http://www.rampant-books.com/book_2005_1_awr_proactive_tuning.htm

  • 5-10 minutes of use on a full charge then unexpected shutdown

    Just recently I have only been getting 5 - 10 minutes of use out of my battery after being fully charged. just a month or two ago I would get 1 - 1.5 hrs. The computer will just unexpectedly shut down with no warning. The battery meter in the menu bar shows almost full charge when it shutsdown. Last year Apple replaced my battery after it started swelling. I have tried resetting the SMC controller by unplugging the battery, disconnecting the power cord and holding the power button down for 5 seconds.
    Mac Book Pro 2Ghz Core Duo
    Battery Full Charge Capacity 2498mAh
    Battery Cycle Count 334
    SMC Version 1.2f10
    Battery Update 1.2

    While that's technically true, the Full Charge Capacity is very low for a battery with just over 300 cycles.
    Several posters in the forums have reported getting free replacement batteries from Apple under their 2 year battery warranty extension even with +more than+ 300 cycles. It's probably worth a visit to an Apple Store or a call to AppleCare to try.
    FYI, the warranty extension and an an acknowledgement of the battery issues is here:
    http://www.apple.com/support/macbook_macbookpro/batteryupdate/
    Hope this helps...

  • 'Full List' option shows ' encountered an unexpected error.....' error

    Hi,
    I am trying to see all the notifications on the same page with 'Full List' button available on first page. It is giving error "You have encountered an unexpected error. Please contact the System Administrator for assistance.
    Click here for exception details. "
    ================
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: java.lang.ArrayIndexOutOfBoundsException: 16
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:912)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1169)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:3247)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:3042)
         at OA.jspService(_OA.java:228)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    java.lang.ArrayIndexOutOfBoundsException: 16
         at oracle.cabo.ui.data.ArrayDataSet.getItem(Unknown Source)
         at oracle.apps.fnd.framework.webui.OABoundValueColumnHeaderData.getDefaultColumnHeaders(OABoundValueColumnHeaderData.java:251)
         at oracle.apps.fnd.framework.webui.OABoundValueColumnHeaderData.getValue(OABoundValueColumnHeaderData.java:148)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.getAttributeValueImpl(OAWebBeanHelper.java:1809)
         at oracle.apps.fnd.framework.webui.beans.table.OATableBean.getAttributeValueImpl(OATableBean.java:851)
         at oracle.cabo.ui.BaseUINode.getAttributeValue(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.TableRenderingContext.getTableAttribute(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.TableRenderingContext.getTableDataObjectListAttribute(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.table.ColumnData._getHeaderData(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.table.ColumnData._setHeaderData(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.table.ColumnData.setColumnData(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.ColumnRenderer._computeMode(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.ColumnRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.composite.UINodeRenderer.renderInCompositeContext(Unknown Source)
         at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderSpecialColumns(Unknown Source)
         at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderSingleRow(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.TableRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.apps.fnd.framework.webui.OARendererProxy.render(OARendererProxy.java:76)
         at oracle.apps.fnd.framework.webui.OAWebBeanTableRendererProxy.render(OAWebBeanTableRendererProxy.java:67)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.table.OATableBean.render(OATableBean.java:640)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderIndexedChildren(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.composite.ContextPoppingUINode$ContextPoppingRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.laf.swan.desktop.HeaderRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.oracle.desktop.HeaderRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.swan.desktop.HeaderRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderIndexedChildren(Unknown Source)
         at oracle.cabo.ui.laf.swan.desktop.ContentRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.composite.UINodeRenderer.renderWithNode(Unknown Source)
         at oracle.cabo.ui.composite.UINodeRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.oracle.desktop.PageLayoutRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.BodyRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.render(OABodyBean.java:403)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.DocumentRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.DocumentRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.partial.PartialPageUtils.renderPartialPage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.render(OAPageBean.java:3591)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:3237)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:3042)
         at OA.jspService(_OA.java:228)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    java.lang.ArrayIndexOutOfBoundsException: 16
         at oracle.cabo.ui.data.ArrayDataSet.getItem(Unknown Source)
         at oracle.apps.fnd.framework.webui.OABoundValueColumnHeaderData.getDefaultColumnHeaders(OABoundValueColumnHeaderData.java:251)
         at oracle.apps.fnd.framework.webui.OABoundValueColumnHeaderData.getValue(OABoundValueColumnHeaderData.java:148)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.getAttributeValueImpl(OAWebBeanHelper.java:1809)
         at oracle.apps.fnd.framework.webui.beans.table.OATableBean.getAttributeValueImpl(OATableBean.java:851)
         at oracle.cabo.ui.BaseUINode.getAttributeValue(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.TableRenderingContext.getTableAttribute(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.TableRenderingContext.getTableDataObjectListAttribute(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.table.ColumnData._getHeaderData(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.table.ColumnData._setHeaderData(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.table.ColumnData.setColumnData(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.ColumnRenderer._computeMode(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.ColumnRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.composite.UINodeRenderer.renderInCompositeContext(Unknown Source)
         at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderSpecialColumns(Unknown Source)
         at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderSingleRow(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.TableRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.apps.fnd.framework.webui.OARendererProxy.render(OARendererProxy.java:76)
         at oracle.apps.fnd.framework.webui.OAWebBeanTableRendererProxy.render(OAWebBeanTableRendererProxy.java:67)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.table.OATableBean.render(OATableBean.java:640)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderIndexedChildren(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.composite.ContextPoppingUINode$ContextPoppingRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.laf.swan.desktop.HeaderRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.oracle.desktop.HeaderRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.swan.desktop.HeaderRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderIndexedChildren(Unknown Source)
         at oracle.cabo.ui.laf.swan.desktop.ContentRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.composite.UINodeRenderer.renderWithNode(Unknown Source)
         at oracle.cabo.ui.composite.UINodeRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.oracle.desktop.PageLayoutRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.BodyRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.render(OABodyBean.java:403)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.DocumentRenderer.renderContent(Unknown Source)
         at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
         at oracle.cabo.ui.laf.base.xhtml.DocumentRenderer.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.BaseUINode.render(Unknown Source)
         at oracle.cabo.ui.partial.PartialPageUtils.renderPartialPage(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.render(OAPageBean.java:3591)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:3237)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:3042)
         at OA.jspService(_OA.java:228)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    ===================================
    we are on E-Business R12 (12.1.3), RDBMS 11gR1 (11.1.07) on RHEL 5.
    This errors occurs for all the users.
    Please suggest how to resolve this issue.
    Thank you.
    Edited by: 906610 on Apr 11, 2012 4:10 AM

    Was this working before? If yes, any changes been done recently?
    Do you have any invalid objects in the database?
    Please set logging/debug as per (How To Diagnose Issues With The Edit Requisition Link and View Requisition Details Link In Notifications [ID 402870.1]) and check the log files then.
    Also, please see (Invalid Role, Or Role Does Not Have The Notification Preference Set [ID 728331.1]).
    Thanks,
    Hussein

  • Sites w/ .pdf or .ashx documents as the full page or as an insert in the page don't load the .pdf or .ashx documents - I get an Problem Report window that says "Firefox Plugin Process quit unexpectedly"

    Sites w/ .pdf or .ashx documents as the full page or as an insert in the page don't load the .pdf or .ashx documents - I get an Problem Report window that says "Firefox Plugin Process quit unexpectedly" and sends the error to Apple so I have had to revert to Firefox 3 getting rid of 4. Anybody have any thoughts?? (I'm runnng OSX 10.6.7)
    pdf was at
    <http://www.brigham.com/MSDS/Dust%20Mop-dust%20cloth%20treatment.pdf>
    ashx was my utility bill on
    <www.pse.com>

    OK, I think I have this solved. After reading my post over, I decided to rethink the problem. First thing I did was download Chrome and I tried using that and IE again and surprise! I was having the same problem on those browsers as well. So now we know it wasn't Firefox. I then figured maybe a slow computer meant a virus, so I ran scans. I've had both Avast and IOBit for months now and I've never had a problem with either of them before. Then I downloaded Malwarebytes and ran a third scan. They all picked some stuff up, but nothing serious. Then I tried disabling all the antivirus stuff and that didn't solve anything. But then I decided to keep Malwarebytes and I uninstalled IOBit Security and whammo - problem solved.
    I have no idea why out of the blue IOBit would be causing a problem like this so if someone knows, please let me in on the secret. Additionally, IE was working fairly well last night but not this morning. I also don't know why removing IOBit would take care of the nsAppShell issue, because supposedly, that's related to Firefox plug ins. And one more thing...when Comcast hooked my neighbor up to cable, they did it by putting a splitter on my line. They were messing about with the lines yesterday before I got on my computer last night trying to decide how to rerun them and today they did that, taking the splitter off my line and giving my neighbor his own line. That was finished about 30 minutes before I uninstalled IOBit. So....who knows?
    But I ain't about to look a gift horse in the mouth. I have my Firefox back and I am so sorry for bad mouthing you last night - I love you, Firefox!

  • HT1430 My brand new iPhone 4 is quitting apps unexpectedly, turning into a black screen and then restoring to home page. Restarting didn't correct problem. Shall I follow full resetting instructions?

    My brand new iPhone 4 is quitting apps unexpectedly, turning into a black screen and then restoring to home page. Restarting procedures didn't correct problem. Shall I follow full resetting instructions?

    Thanks for the straightforwardness roaminggnome - I wasn't sure if this problem qualified as deseving a reset. Unfortunately, for some reason I can't explain, your response remained undisclosed to me for a while, the next reply after yours took preference and I ended up doing as Meg St.Clair's susgested and initiated download, installation and syncing of Smartsync which is now taking ages to finish... If problem persists shall do the resetting and restoring.

  • Full site Unexpected error

    When I try to post or respond on this forum using the full site instead of the mobile site, I get an "unexpected error" when I hit the "quote" button or try to type.
    Since I don't see a way to quote or "kudo" on the mobile site, I go to the full site. Also, if I try to reply to a specific post while on the mobile site, it takes me to the bottom of the thread instead of the specific post.
    What am I doing wrong?

    Wildman wrote:
    You have to click the HTML tab above text window to be able to reply to a post when you are reponding from a smartphone.  Once you do thi you will be ok to input text to respond.
    Looks like that works! Kudos to you, Wildman!

  • I tried to empty the trash, full of back up file from my hard disk and it just says: "The operation can't be completed because an unexpected error occurred (error code -8003)"

    I have an external hard disk of 319.73 GB that I use as back up memory and where I put all the movies and other files that I can't leave on the computer as they occupy too much memory space . One day I was deleting all the previous dated back up to have more space on it , but had to stop the trash for doing it cause it was taking too long and now every time that I try to empty the trash it just says "The operation can’t be completed because an unexpected error occurred (error code -8003)" and even if I press CONTINUE it won't empting it . I'm not really pratical with this things and I tried already to find out the solution here and on Google but apparently nobody ever had a similar error code and I don't know what else to do.
    I've a MacBook Pro with a Mac OS X 10.6.8 Version.
    Thanks again for the help and sorry if I did some english mistakes !
    PEACE & LOVE

    Hey donnie90,
    It seems like this article might be the best for helping you address this issue:
    You can't empty the Trash or move a file to the Trash
    http://support.apple.com/kb/ht1526
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • Imovie quits unexpectedly whenever I try to publish, or view full screen. How do I fix that?

    This error keeps popping up whenever I try to publish or view full screen. I've tried a few different suggestions, but nothing has worked. Can anyone help me with this!?!?
    Process:         iMovie [15909]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovie8
    Version:         8.0.6 (821)
    Build Info:      iMovieApp-8210000~16
    Code Type:       X86 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2011-12-08 00:22:40.366 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          535917 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  971 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      E795B60D-C1F0-4035-84E0-FAC06C63F071
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000fffe25a0
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ???                                     0x27c02198 0 + 666902936
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x9961f382 kevent + 10
    1   libSystem.B.dylib                       0x9961fa9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x9961ef59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x9961ecfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x9961e781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x9961e5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x9961e412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x9961e9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x9961e5c6 start_wqthread + 30
    Thread 3:  QTKit: QTVisualContextImageProviderWorkLoop
    0   libSystem.B.dylib                       0x995f8afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x995f9267 mach_msg + 68
    2   com.apple.CoreFoundation                0x97d1f2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x97d1e3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x97d24304 CFRunLoopRun + 84
    5   com.apple.QTKit                         0x9927c465 QTVisualContextImageProviderWorkLoop + 128
    6   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    7   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x995f8afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x995f9267 mach_msg + 68
    2   com.apple.CoreFoundation                0x97d1f2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x97d1e3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x97d24304 CFRunLoopRun + 84
    5   com.apple.FWAVCPrivate                  0x0083d1b8 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 135
    6   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    7   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x995f8b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x996266e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x996555a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x979a7b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x979a78ce TSWaitOnSemaphoreCommon + 511
    5   ...ickTimeComponents.component          0x90b26d25 ReadSchedulerThreadEntryPoint + 4698
    6   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    7   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.AppleVADriver                 0x1cb2d1dc AVAGetRendererInfo + 7404
    4   com.apple.AppleVADriver                 0x1cb32c2f AVAGetRendererInfo + 30527
    5   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    6   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.AppleVADriver                 0x1cb2d1dc AVAGetRendererInfo + 7404
    4   com.apple.AppleVADriver                 0x1cb32c2f AVAGetRendererInfo + 30527
    5   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    6   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x995f8b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x996266f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x9966f05f pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x90c95165 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x995f8b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x996266f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x9966f05f pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x90c95165 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x995f8b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x996266f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x9966f05f pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x90c95165 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 23:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 24:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 25:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 26:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 27:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 28:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 29:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 30:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 31:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 32:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 33:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 34:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 35:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 36:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 37:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 38:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 39:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 40:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 41:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 42:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 43:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 44:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 45:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 46:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 47:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 48:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 49:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 50:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 51:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 52:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 53:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 54:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 55:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 56:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 57:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 58:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 59:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 60:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 61:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 62:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 63:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 64:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 65:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 66:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 67:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 68:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 69:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 70:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 71:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 72:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 73:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 74:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x1bad88b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    5   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 75:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.AppleVADriver                 0x1cb2d1dc AVAGetRendererInfo + 7404
    4   com.apple.AppleVADriver                 0x1cb32c2f AVAGetRendererInfo + 30527
    5   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    6   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 76:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.AppleVADriver                 0x1cb2d1dc AVAGetRendererInfo + 7404
    4   com.apple.AppleVADriver                 0x1cb32c2f AVAGetRendererInfo + 30527
    5   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    6   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 77:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.AppleVADriver                 0x1cb2d1dc AVAGetRendererInfo + 7404
    4   com.apple.AppleVADriver                 0x1cb32c2f AVAGetRendererInfo + 30527
    5   libSystem.B.dylib                       0x99626259 _pthread_start + 345
    6   libSystem.B.dylib                       0x996260de thread_start + 34
    Thread 78:
    0   libSystem.B.dylib                       0x99626aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9962675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x996283f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.AppleVADriver                 0x1cb2d1dc AVAGetRendererInf

    try re posting in the iMovie forum where all the experts are: https://discussions.apple.com/community/ilife/imovie

  • Why does imovie quits unexpectedly while exporting and viewing in full-screen?

    I've a really urgent school project on making a movie. My iMovie worked normally until the last 2 weeks when it started to quits unexpectedly while exporting. Please help me with this >< I've tried to repair the disc permission but nothing changed. I've also unplug it.
    here's what it says on the report:
    Process:         iMovie [253]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovie8
    Version:         8.0.6 (821)
    Build Info:      iMovieApp-8210000~16
    Code Type:       X86 (Native)
    Parent Process:  launchd [103]
    Date/Time:       2011-11-06 10:28:31.467 +0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          96170 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  45651 sec
    Per-App Crashes Since Last Report:   14
    Anonymous UUID:                      4FEADA1A-7679-4AD2-A316-BD9A832344C1
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ???                                     0x1c89a09e 0 + 478781598
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x91728382 kevent + 10
    1   libSystem.B.dylib                       0x91728a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x91727f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x91727cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x91727781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x917275c6 start_wqthread + 30
    Thread 2:  QTKit: QTVisualContextImageProviderWorkLoop
    0   libSystem.B.dylib                       0x91701afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91702267 mach_msg + 68
    2   com.apple.CoreFoundation                0x9196b2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x9196a3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x91970304 CFRunLoopRun + 84
    5   com.apple.QTKit                         0x900d5465 QTVisualContextImageProviderWorkLoop + 128
    6   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    7   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x91701afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91702267 mach_msg + 68
    2   com.apple.CoreFoundation                0x9196b2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x9196a3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x91970304 CFRunLoopRun + 84
    5   com.apple.FWAVCPrivate                  0x0083d1b8 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 135
    6   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    7   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x91701b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x9172f6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x9175e5a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x97df0b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x97df08ce TSWaitOnSemaphoreCommon + 511
    5   ...ickTimeComponents.component          0x98836d25 ReadSchedulerThreadEntryPoint + 4698
    6   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    7   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x91701b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x9172f6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x9175e5a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x97df0b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x97df08ce TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore          0x97e4b5aa AIOFileThread(void*) + 1127
    6   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    7   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x91701b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x9172f6f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x9177805f pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x989a5165 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    5   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x91701b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x9172f6f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x9177805f pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x989a5165 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    5   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x91701b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x9172f6f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x9177805f pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x989a5165 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    5   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x91701afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91702267 mach_msg + 68
    2   com.apple.CoreFoundation                0x9196b2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x9196a3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x91970304 CFRunLoopRun + 84
    5   com.apple.DesktopServices               0x92d4bb3d TSystemNotificationTask::SystemNotificationTaskProc(void*) + 643
    6   ...ple.CoreServices.CarbonCore          0x97dd054a PrivateMPEntryPoint + 68
    7   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    8   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x91727412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x917279a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x917275c6 start_wqthread + 30
    Thread 11:
    0   libSystem.B.dylib                       0x91727412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x917279a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x917275c6 start_wqthread + 30
    Thread 12:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x91720ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x919aac53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    3   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x91701b36 semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x2216c46b JVTCompEncodeFrame + 3038234
    2   QuickTimeH264.scalar                    0x2216bf9b JVTCompEncodeFrame + 3037002
    3   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    4   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x91701b36 semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x2216c46b JVTCompEncodeFrame + 3038234
    2   QuickTimeH264.scalar                    0x2216bf9b JVTCompEncodeFrame + 3037002
    3   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    4   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x91701b36 semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x2216c46b JVTCompEncodeFrame + 3038234
    2   QuickTimeH264.scalar                    0x2216bf9b JVTCompEncodeFrame + 3037002
    3   libSystem.B.dylib                       0x9172f259 _pthread_start + 345
    4   libSystem.B.dylib                       0x9172f0de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x1c89a0c0  ebx: 0x00000020  ecx: 0xfffe57a0  edx: 0x1c89a0a8
      edi: 0x00000001  esi: 0x1c89f1a8  ebp: 0x1cf84000  esp: 0xbfffd3ec
       ss: 0x0000001f  efl: 0x00010286  eip: 0x1c89a09e   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x546c5000
    Binary Images:
        0x1000 -   0x334ffc  com.apple.iMovie8 8.0.6 (821) <CD0B8453-4663-7F8C-EFF4-926EAB254B2A> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x3d2000 -   0x40bfe3  com.apple.MPEG2TSDecoder 1.0 (84) <75EC884A-7300-87B1-7E3A-A2B156BD4D79> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x443000 -   0x464fff  com.apple.iWidgets 1.0.0 (24) /Applications/iMovie.app/Contents/Frameworks/iWidgets.framework/Versions/A/iWid gets
      0x477000 -   0x51aff4  com.apple.DotMacKit 47 (3.0.2L) <5C3FF2BA-7124-3DF9-B197-19DD4D543798> /Applications/iMovie.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
      0x580000 -   0x581ff7  com.apple.Helium 3.0.0 (157) <22FD7CB4-024E-3065-EB67-262ABF99636E> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x587000 -   0x588fff +com.bensyverson.dvmatte.autopicker 1.0 (1.0) <5FB2D0C9-D6D7-036E-F739-DA7CE5BAD36E> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x58e000 -   0x643fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
      0x689000 -   0x7bbfe4  com.apple.Helium.HeliumRender 2.0.0 (157) <DEA355F6-22DC-68D4-EA7A-EE06C0D7F150> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0x814000 -   0x814ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <72FF6A91-C3EC-4634-A0FB-E1586C2404E4> /usr/lib/libmx.A.dylib
      0x838000 -   0x86bff3  com.apple.FWAVCPrivate 30.46 (46) <6F5A473F-BC2E-E6DB-6201-8460824BCC32> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
      0x8b8000 -   0x8dcfe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
      0xe00000 -   0xf79ff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x13d5b000 - 0x14138fff  com.apple.ATIRadeonX3000GLDriver 1.6.36 (6.3.6) <A1E644E2-B88A-71A1-3D14-8D6CDB10DB7F> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
    0x16639000 - 0x16782fe7  com.apple.iLMBAperture31Plugin 2.5.5 (252.2.5) <2AA8E13C-4221-698B-F755-DB8103D191B9> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperture31Plugin.ilmbplugin/Contents/Mac OS/iLMBAperture31Plugin
    0x167c3000 - 0x167cbff7  com.apple.iLMBAperturePlugin 2.5.5 (252.2.5) <BF2A071D-6F1C-03BA-DD1B-74F93CE9D7B0> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x167d2000 - 0x167d3ff7  com.apple.iLMBAppDefPlugin 2.5.5 (252.2.5) <23D52DA9-0F87-6EAA-990E-2864C4B6D6AA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x167d8000 - 0x167e2ff7  com.apple.iLMBFinalCutPlugin 2.5.5 (252.2.5) <B089F264-64BE-07DE-E250-D5C63C351222> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFinalCutPlugin.ilmbplugin/Contents/MacOS /iLMBFinalCutPlugin
    0x167e8000 - 0x167eaff7  com.apple.iLMBFolderPlugin 2.5.5 (252.2.5) <0896FA5E-8453-B2F6-8E87-F5F2FA382395> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x167ef000 - 0x167f3ff7  com.apple.iLMBGarageBandPlugin 2.5.5 (252.2.5) <E10E678C-831C-7A6B-1A56-775CD81DA98E> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x167f9000 - 0x16805ff7  com.apple.iLMBiMoviePlugin 2.5.5 (252.2.5) <313540B0-C7D2-5EB4-C688-0FCB9FFD5E81> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x1680e000 - 0x16822ffb  com.apple.iLMBiPhoto8Plugin 2.5.5 (252.2.5) <0016975B-CA8E-76EA-3BF7-BAD4C8834814> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x1682a000 - 0x16976fe7  com.apple.iLMBiPhoto9Plugin 2.5.5 (252.2.5) <86E4AD5A-1233-9F42-B4BD-CECFFC4C4ACD> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto9Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto9Plugin
    0x169b9000 - 0x169c2ff7  com.apple.iLMBiPhotoPlugin 2.5.5 (252.2.5) <D6F8A353-CDC4-A9B8-383E-5D6F7FBAF593> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x169c9000 - 0x169d1ff7  com.apple.iLMBiTunesPlugin 2.5.5 (252.2.5) <4A54C561-8932-6E09-BDAE-C030D494E0DA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x169d8000 - 0x16a88ff3  com.apple.iTunesAccess 10.5 (10.5) <47FFADAD-AB98-6BA9-B5BE-EA4AE2DA4CDB> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x16ab9000 - 0x16abbff7  com.apple.iLMBMoviesFolderPlugin 2.5.5 (252.2.5) <4A70635B-4CF4-8F65-BF6D-3B6F18838A23> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x16ac1000 - 0x16ac3ff7  com.apple.iLMBPhotoBoothPlugin 2.5.5 (252.2.5) <77BE4315-C665-3243-B857-64895276EFA1> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x16c7b000 - 0x16c7dff7  com.apple.podcastproducer.ImageDiffer 1.2.3 (168.7) <0EE2A12C-11A5-5801-5442-D5A7C7542CF3> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0x171b3000 - 0x171b6ff3  libFontRegistryUI.dylib ??? (???) <8943206D-4B80-BE67-B17A-AF89D68C76DE> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0x171e6000 - 0x171eaff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x171ef000 - 0x171f5ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x192c4000 - 0x192c5ff7  com.apple.bluetooth.IOBluetoothSCOAudioDriverPlugIn 2.4.5 (2.4.5f3) <013B2DAF-7754-0B38-96B7-D162108DB9E9> /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS COAudioDriver.kext/Contents/Resources/IOBluetoothSCOAudioDriverPlugIn.bundle/Co n tents/MacOS/IOBluetoothSCOAudioDriverPlugIn
    0x195eb000 - 0x195f0fff  com.apple.AppleMPEG2Codec 1.0.2 (220.1) <CE69C1D8-796C-753F-AD3C-F1CC2B8C0AAD> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x19d44000 - 0x19d5ffef  com.apple.AppleIntermediateCodec 1.3.2 (153) <D42634C1-8BDA-31ED-5216-13CB19BA7D1B> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1a000000 - 0x1a055fef  com.apple.AppleProResDecoder 2.0 (223) <773F7C18-BE38-10C8-3745-0EB45E811A11> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x1a08d000 - 0x1a107fef  com.apple.AppleVAH264HW.component 2.0 (1.0) <482C506F-33B8-438F-8925-B15657ED9599> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x1a1ca000 - 0x1a206fe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1787) <D20581EB-375E-4266-24B7-CBF062B819E6> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1a212000 - 0x1a22bfe7  com.apple.applepixletvideo 1.2.29 (1.2d29) <52810348-A138-D148-92E4-9E1D73EA18A0> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1a5b2000 - 0x1a5d6ff7  com.apple.QuartzComposer.ExtraPatches 4.2 (156.16) <877B2D84-7CA6-501F-FF2D-C33BC52C0074> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatche s
    0x1a8b2000 - 0x1a8dbfff  com.apple.audio.OpenAL 1.4 (1.4) <CDC6D2B8-3DCA-E511-2250-75567E4C94BD> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0x1aa00000 - 0x1abe6fef  com.apple.audio.codecs.Components 2.0.3 (2.0.3) <8DA1B494-CD97-D4CC-3D5D-FACFAAE9D968> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1ac48000 - 0x1ac94ffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x20c50000 - 0x20c54ff7 +com.bensyverson.quartzcomposer.dvmatte 1.0 (1.0) <DC961ABE-200A-E9E3-5CD2-7B98F129D0BF> /Applications/iMovie.app/Contents/Resources/Plugins/dvmatte.plugin/Contents/Mac OS/dvmatte
    0x2150b000 - 0x21537fff  com.apple.oxygene.layers.iDVDQCPatches 1.0.0 (602.0.2) <2F6AD71A-EDFB-66DF-ACBD-46617FDB7C0E> /Applications/iMovie.app/Contents/Resources/iDVDQCPatches.plugin/Contents/MacOS /iDVDQCPatches
    0x21e6f000 - 0x22255feb  QuickTimeH264.scalar ??? (???) <1C613CAC-97EF-C33D-0891-0C684432CB9D> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <E50D0989-0609-EAF7-3B3B-B10D7847BAA5> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <1C06ECD9-A2D7-BB10-AF50-0F2B598A7DEC> /usr/lib/dyld
    0x90003000 - 0x90146fef  com.apple.QTKit 7.7 (1787) <3B47A1A0-7AB5-C1C9-42DE-5993D1012D47> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9033a000 - 0x903f3fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x903f4000 - 0x9051afe7  com.apple.WebKit 6534.51 (6534.51.22) <8E713C26-E90D-0E4B-5FE1-7AFFA8DF2935> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9051b000 - 0x906ddfeb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9071f000 - 0x9071fff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90720000 - 0x90a1afef  com.apple.QuickTime 7.6.6 (1787) <AC48EAD9-7201-7CE6-C826-41B12963FECF> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90a69000 - 0x90a74ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90d6f000 - 0x90de8ff7  com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90de9000 - 0x90de9ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90dea000 - 0x90f18fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90f19000 - 0x90f2efff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90f2f000 - 0x90f31ff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90f32000 - 0x91114fff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91115000 - 0x91152ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x911c2000 - 0x91270ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91271000 - 0x91351fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91352000 - 0x9147fffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x91480000 - 0x914e4fff  com.apple.htmlrendering 72 (1.1.4) <0D22B190-513B-7FF6-39FC-9D336285DE08> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x914e5000 - 0x91501fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x915b9000 - 0x915c4ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x915c5000 - 0x91640fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91641000 - 0x9166bff7  com.apple.shortcut 1.1 (1.1) <08A1868D-FEF4-8FB3-D814-79385DCBEC7D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9167d000 - 0x91683fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x916b9000 - 0x91700ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x91701000 - 0x918a8ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x918a9000 - 0x918b0ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <37255DC6-9FD1-45CC-AC80-A84FD2B5450A> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x918b6000 - 0x9192dff3  com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9192e000 - 0x91aa9fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91aaa000 - 0x91aceff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91acf000 - 0x91b2cff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91b2d000 - 0x91b30ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91b31000 - 0x91baeff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91baf000 - 0x91bafff7  com.apple.ApplicationServices 38 (38) <EAF1BC8C-4FD4-4300-B8F7-4B24E49125E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91bb0000 - 0x91be1ff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91be2000 - 0x91c74fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91cbd000 - 0x91ce5ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x92376000 - 0x92379fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9237a000 - 0x923d2fe7  com.apple.datadetectorscore 2.0 (80.7) <3830B574-3B0B-76DA-390D-702D908A71F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x923d3000 - 0x924d4fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x924d5000 - 0x925b3fef  com.apple.QuickTimeMPEG4.component 7.6.6 (1787) <555FE726-01F3-CE43-A339-5D214EC92569> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x925ee000 - 0x92658fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x92659000 - 0x9268ffff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x92690000 - 0x92710feb  com.apple.SearchKit 1.3.0 (1.3.0)

    Hello Zabrina S,
    Also check out this Discussion Thread from September.
    I movie quits unexpectedly during editing and publishing
    from Jasonryan1. It relates to a corrupted item existing in his project. And in his attempt to troubleshoot it, he suspected it was a Title he placed in the Project itself. Once he deleted the corrupted Title he was able to successfully export it. As to which item is causing instability, that's a tricky process to narrow down. And I would agree it seems unlikely all your projects could have some corrupted element in them. But it might work to concentrate on the simplest project which is showing the symptoms you describe. Duplicate that project and start deleting pieces of it and trying to add a Title to it and see if iMovie crashes.

  • Full outer join unexpected results

    Warning, long message - I've searched the forums and found nothing similar. I've cut out as much as possible. We have been given the following schema to work with:
    CREATE TABLE CALLS (
    TRUNKIN VARCHAR2 (10),
    TRUNKOUT VARCHAR2 (10),
    DURATION FLOAT)
    Here is some test data:
    insert into calls values(null, 'a', 3);
    insert into calls values(null, 'a', 2);
    insert into calls values('a', null, 1);
    insert into calls values(null, 'a', 0);
    insert into calls values(null, 'a', 0);
    insert into calls values(null, 'a', 7);
    insert into calls values(null, null, 0);
    This is horribly unnormalized, but basically this table represent phone calls. trunkin and trunkout represent the two ends, and duration is length of a call. While obviously every call has two ends, the nulls above represent ends we don't care about in this example.
    The goal is to end up with data that looks like this. In English, we want the in and out summary statistics for each trunk to be summarized into a single row. (Sorry, these are supposed to be columns, but they got wrapped, so I reposted them as rows):
    TRUNKIN a
    IN_CALLS_ATTEMPTED 1
    IN_CALLS_COMPLETED 1
    IN_AVERAGE_DURATION 1
    TRUNKOUT a
    OUT_CALLS_ATTEMPTED 5
    OUT_CALLS_COMPLETED 3
    OUT_AVERAGE_DURATION 4
    Indeed, with the data given above, these are the results returned with the query at the end of this message. However, when I changed the one non-null trunkin value to null, I got very strange results. First, I independently ran the two subqueries. The first of course returns no rows, the second returns 1 with the same out values above; this is exactly what I would expect. However, when I run the full query, I get **5** rows back, each with just the trunkout column set to "a" and **all** other columns set to null. This makes no sense to me. The 5 rows are obviously the 5 rows from the original data set where trunkout = "a", but I'm not full outer joining those; I'm full outer joining the result of the group by, which only has 1 row. But even given that I'm getting 5 rows back, shouldn't all five of those have the remaining out columns filled in with the values above?
    Here is the query:
    select
    from
    SELECT
    trunkin as trunk,
    COUNT(*) AS in_calls_attempted,
    SUM
    CASE
    WHEN duration > 0 THEN 1
    ELSE 0
    END
    ) AS in_calls_completed,
    SUM(duration)/
    SUM
    CASE
    WHEN duration > 0 THEN 1
    ELSE 0
    END
    ) AS in_average_duration
    FROM CALLS
    WHERE trunkin IS NOT NULL
    GROUP BY trunkin
    ) callsin
    full outer join
    SELECT
    trunkout as trunk,
    COUNT(*) AS out_calls_attempted,
    SUM
    CASE
    WHEN duration > 0 THEN 1
    ELSE 0
    END
    ) AS out_calls_completed,
    SUM(duration)/
    SUM
    CASE
    WHEN duration > 0 THEN 1
    ELSE 0
    END
    ) AS out_average_duration
    FROM CALLS
    WHERE trunkout IS NOT NULL
    GROUP BY trunkout
    ) callsout
    on callsin.trunk = callsout.trunk;

    I am not entirely sure why you are getting the results you are, but I strongly suspect that it is a result of outer joining on null columns. I would write the query as follows to avoid the outer join problem. The CASE statements in the outer query around the average duration calulations avoid the divide by zero error that would occur when some trunk has only in or out calls.
    SELECT trunk,SUM(in_calls_attempted) in_calls_attempted,
           SUM(in_calls_completed) in_calls_completed,
           CASE WHEN SUM(in_calls_completed) <> 0 THEN
                SUM(in_duration)/SUM(in_calls_completed)
                ELSE 0 END ave_in_duration,
           SUM(out_calls_attempted) out_calls_attempted,
           SUM(out_calls_completed) out_calls_completed,
           CASE WHEN SUM(out_calls_completed) <> 0 THEN
                SUM(out_duration)/SUM(out_calls_completed)
                ELSE 0 END ave_out_duration
    FROM (
       SELECT trunkin trunk,COUNT(*) in_calls_attempted,
              SUM(CASE WHEN duration > 0 THEN 1 ELSE 0 END) in_calls_completed,
              SUM(duration) in_duration,0 out_calls_attempted,
              0 out_calls_completed,0 out_duration
       FROM calls
       GROUP BY trunkin
       UNION ALL
       SELECT trunkout trunk,0 in_calls_attempted,0 in_calls_completed,
              0 in_duration,COUNT(*) out_calls_attempted,
              SUM(CASE WHEN duration > 0 THEN 1 ELSE 0 END) out_calls_completed,
              SUM(duration) out_duration
       FROM calls
       GROUP BY trunkout)
    GROUP BY trunkTTFN
    John

  • HT2497 My Mac keeps closing Internet. The message states "Safari Web Content quit unexpectedly" and then the window is full of computer jargon. HELP!

    I click on the Safari logo, page opens but then quickly after closes and the message "Safari Web Content quit unexpectedly" opens with a whole load of computer jargon below.
    Any ideas how to fix?
    Thanks

    This crash is caused by a bug in the way Safari synchronizes with iCloud.
    Uncheck the box marked Safari in the iCloud preference pane. You may also need to do as follows.
    Back up all data.
    Triple-click the text on the line below on this page to the clipboard, then copy it to the Clipboard (command-C):
    ~/Library/Safari/Bookmarks.plist
    Quit Safari.
    Select
    Go ▹ Go to Folder
    from the Finder menu bar. Paste into the text box that opens (command-V), then press return.
    A folder window should open with a file named "Bookmarks.plist" selected. Move the selected file to the Desktop, leaving the folder open.
    Relaunch Safari. It will open with the default set of bookmarks. Delete them all. Select
    File ▹ Import Bookmarks
    from the Safari menu bar. Import from the bookmarks file you moved to the Desktop. Arrange the bookmarks as you wish.
    Select from the menu bar
    History ▹ Clear History
    and confirm. As far as I know, you don't need to reset Top Sites, but I'm not sure of that.
    You can then try to re-enable Safari in iCloud. It may start to crash again. In that case, you'll have to leave synchronization disabled until a more permanent solution turns up. Sync bookmarks with iOS devices in iTunes instead.

Maybe you are looking for