Windows 7 reads only 2.3 of the 4 gb ram

Dear Sirs
I have 4 GB ram and 2 vga cards
Intel 288 hd graphics
Geforce gt 330m 512 mb
when i installed windows 7 on my macbook pro it only reads 1 graphic which is geforce and only 2.3 of the 4 GB Ram can you help me and tell me what can i do

Did you install the 32bit or the 64 bit version of Windows 7?
The 64bit can address more RAM.
Windows just accessing your dedicated video card is fine, the Intel HD graphics is junky anyway.

Similar Messages

  • Exception: non-read-only mapping defined for the primary key field

    Hello.
    I'm new to Oracle and I created Java EE Web Project.
    And I created entities from tableA, tableB, tableC from my database.
    tableA has foreign key to tableB and has unidirectional Many-to-One relationship. tableC has two primary keys and one of these is foreign key to primary key in tableA. tableC also has unidirection Many-to-One relationship to tableA.
    Then I created session bean and data control from it, in design window, created read-only table from tableA.
    And I selected columns in tableA and also in tableB.
    I ran the application and saw the following exception in log window.
    Local Exception Stack:
    Exception [EclipseLink-46] (Eclipse Persistence Services - 2.1.3.v20110304-r9073): org.eclipse.persistence.exceptions.DescriptorException
    Exception Description: There should be one non-read-only mapping defined for the primary key field [tableC.tableA_ID].
    Descriptor: RelationalDescriptor(mypack.tableC --> [DatabaseTable(tableC)])
    tableA_ID is a primary key in tableA.
    How can I solve this error?
    Please help me.
    Edited by: 900471 on 2011. 12. 3 오전 5:32
    Edited by: 900471 on 2011. 12. 3 오전 5:33
    Edited by: 900471 on 2011. 12. 3 오전 5:33
    Edited by: 900471 on 2011. 12. 3 오전 5:34

    There are not enough details to be sure since you have not provided the mappings. From just the error, it looks like you are using the tableC.tableA_ID field as the foreign key in the ManyToOne relationship to A, but have marked it as insertable=false, writeable=false, meaning that it cannot be updated or used for inserts.
    Either make it writable (set the settings to true), or add another basic mapping/attribute in the entity for TableC that maps to the field which you can use to set when you insert a new tableC entity. A simple example is available at
    http://wiki.eclipse.org/EclipseLink/Examples/JPA/2.0/DerivedIdentifiers
    Best Regards,
    Chris

  • How can I have both functions "Read Only" & "Write" mode on the same form?

    Dear all,
    How can I have both functions "Read Only" & "Write" mode on the same form? Is it possibile for this?
    Please advice,
    Amy

    This is what I use in some dialogs:
    PROCEDURE SET_QUERY_ONLY IS
      -- Procedure Set_query_only
      -- Rend les blocks non modifiables   --
      -- Disable menus Insert/Delete/Clear --
      -- Entree               :
      -- Sortie               :
      -- Ent/Sortie     :
      -- Creation               : FD    10/2003
      -- Modification     : 
         LC$Block     Varchar2(30) ;
    BEGIN
      Set_Menu_Item_Property('Edit.Insert', ENABLED, PROPERTY_FALSE ) ;
      Set_Menu_Item_Property('Edit.Remove', ENABLED, PROPERTY_FALSE ) ;
      Set_Menu_Item_Property('Edit.Clear', ENABLED, PROPERTY_FALSE ) ;
      Set_Menu_Item_Property('Action.Save', ENABLED, PROPERTY_FALSE ) ;
      LC$Block := get_form_property( NAME_IN('System.Current_Form'), FIRST_BLOCK ) ;
      -- Tous les blocs en Query only --
      While LC$Block is not null Loop
           Enable_Block( LC$Block, FALSE ) ;
           LC$Block := get_block_property( LC$Block, NEXTBLOCK ) ;
      End loop ;
    END;
    PROCEDURE ENABLE_BLOCK
              PC$Block in Varchar2,
              PB$Enable in Boolean Default TRUE
         ) IS
      -- Procedure Enable_block
      -- Rend le bloc Enable / Disable --
      -- Entree          : PC$Block (nom du bloc Forms)
      --               : PB$Enable (TRUE ou FALSE)
      -- Sortie          :
      -- Ent/Sortie             :
      -- Creation          : FD    10/2003
      -- Modification     : 
    BEGIN
         If PB$Enable Then
              Set_Block_Property( PC$Block, INSERT_ALLOWED, PROPERTY_TRUE ) ;
              Set_Block_Property( PC$Block, UPDATE_ALLOWED, PROPERTY_TRUE ) ;
              Set_Block_Property( PC$Block, DELETE_ALLOWED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Edit.Insert', ENABLED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Edit.Remove', ENABLED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Edit.Clear', ENABLED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Action.Save', ENABLED, PROPERTY_TRUE ) ;
         Else
              Set_Block_Property( PC$Block, INSERT_ALLOWED, PROPERTY_FALSE ) ;
              Set_Block_Property( PC$Block, UPDATE_ALLOWED, PROPERTY_FALSE ) ;
              Set_Block_Property( PC$Block, DELETE_ALLOWED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Edit.Insert', ENABLED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Edit.Remove', ENABLED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Edit.Clear', ENABLED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Action.Save', ENABLED, PROPERTY_FALSE ) ;
         End if ;
    END;Francois

  • Lenovo G510 Windows 8 Read Only Folders

    Hello everyone,
    I just bought a new Lenovo G510, and I installed the Windows 8 that was on the partition.
    The installation went fine, and everything is in order.
    The only problem is that ALL my folders are Set to READ ONLY. Is this something normal for Windows 8 and how can I set it to a different state, since I know that in future that will be a problem?

    hi francis17583,
    If the G510 system came preloaded with Windows 8, there are two ways on how you can restore the system to factory settings:
    Option 1:
    - Turn off the machine and press the OneKey Recovery Button
    - On the Novo Menu, select System Recovery and follow the screen prompts.
        - Link to picture
    Option 2:
     - Follow this guide on how to create a recovery drive
     - Boot from the recovery drive and follow this guide on how to reset the PC.
    I recommend Option 1 in case you don't have a flashdrive (8GB or above) but ensure that you have a backup of your important files as the above procedure will wipe the OS drive.
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Help reg. read only CMP bean in the examples!!

    Hi,
    I have been working with examples of EJB in WLS 6.1
    I used the Access database with CMP.
    The basic entity beans, both CMP and BMP worked well.
    However when I tried the read-only Stock Bean and write StockWriter Beans... I received the following error... I am not sure what does it say...
    ==============================================
    Beginning readMostly.Client...
    Creating a StockWriter for BEAS
    There was an exception while creating and using the Beans.
    This indicates that there was a problem communicating with the server: java.rmi.RemoteException: EJB Exception:; nested exception is:
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver]Optional feature not implemented
    Start server side stack trace:
    java.rmi.RemoteException: EJB Exception:; nested exception is:
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver]Optional feature not implemented
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver]Optional feature not implemented
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6026)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:6183)
    at sun.jdbc.odbc.JdbcOdbc.SQLBindInParameterFloat(JdbcOdbc.java:852)
    at sun.jdbc.odbc.JdbcOdbcPreparedStatement.setLong(JdbcOdbcPreparedStatement.java:575)
    at weblogic.jdbc.pool.Statement.setLong(Statement.java:369)
    at weblogic.jdbc.rmi.internal.PreparedStatementImpl.setLong(PreparedStatementImpl.java:114)
    at weblogic.jdbc.rmi.SerialPreparedStatement.setLong(SerialPreparedStatement.java:147)
    at ejb.readMostly.StockWriterBean_u4qwd5__WebLogic_CMP_RDBMS.__WL_create(StockWriterBean_u4qwd5__WebLogic_CMP_RDBMS.java:589)
    at ejb.readMostly.StockWriterBean_u4qwd5__WebLogic_CMP_RDBMS.ejbCreate(StockWriterBean_u4qwd5__WebLogic_CMP_RDBMS.java:518)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.ejb20.manager.DBManager.create(DBManager.java:519)
    at weblogic.ejb20.manager.DBManager.remoteCreate(DBManager.java:489)
    at weblogic.ejb20.internal.EntityEJBHome.create(EntityEJBHome.java:190)
    at ejb.readMostly.StockWriterBean_u4qwd5_HomeImpl.create(StockWriterBean_u4qwd5_HomeImpl.java:78)
    at ejb.readMostly.StockWriterBean_u4qwd5_HomeImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:274)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    ; nested exception is:
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver]Optional feature not implemented
    Start server side stack trace:
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver]Optional feature not implemented
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6026)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:6183)
    at sun.jdbc.odbc.JdbcOdbc.SQLBindInParameterFloat(JdbcOdbc.java:852)
    at sun.jdbc.odbc.JdbcOdbcPreparedStatement.setLong(JdbcOdbcPreparedStatement.java:575)
    at weblogic.jdbc.pool.Statement.setLong(Statement.java:369)
    at weblogic.jdbc.rmi.internal.PreparedStatementImpl.setLong(PreparedStatementImpl.java:114)
    at weblogic.jdbc.rmi.SerialPreparedStatement.setLong(SerialPreparedStatement.java:147)
    at ejb.readMostly.StockWriterBean_u4qwd5__WebLogic_CMP_RDBMS.__WL_create(StockWriterBean_u4qwd5__WebLogic_CMP_RDBMS.java:589)
    at ejb.readMostly.StockWriterBean_u4qwd5__WebLogic_CMP_RDBMS.ejbCreate(StockWriterBean_u4qwd5__WebLogic_CMP_RDBMS.java:518)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.ejb20.manager.DBManager.create(DBManager.java:519)
    at weblogic.ejb20.manager.DBManager.remoteCreate(DBManager.java:489)
    at weblogic.ejb20.internal.EntityEJBHome.create(EntityEJBHome.java:190)
    at ejb.readMostly.StockWriterBean_u4qwd5_HomeImpl.create(StockWriterBean_u4qwd5_HomeImpl.java:78)
    at ejb.readMostly.StockWriterBean_u4qwd5_HomeImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:274)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    End readMostly.Client...
    ==========================================
    please help
    SP
    [att1.html]

    <entity-cache>
              <max-beans-in-cache>...</max-beans-in-cache>
              <read-timeout-seconds>...</read-timeout-seconds>
              <concurrency-strategy>ReadOnly</concurrency-strategy>
              </entity-cache>
              I believe this is what you are looking for and this is part of entity-descriptor.
              -- Prasad
              Aruna wrote:
              > Hi
              > I am trying to develop few entity beans which is for only reading the
              > data from the data base, As Read only entity beans are treated like stateless
              > session beans(ie lead balancing at method calls as well auto failover) in the
              > cluster. I want to know how to specify an entity bean as read only entity bean???
              > ie in deployment descriptor so that ejb container treats it as a read only entity
              > bean.
              >
              > Any help on this highly appreciated
              >
              > Thanks and Regards
              > Aruna
              

  • Read only text Items uses the maximum width

    Folks,
    I have a form with 3 regions and each region has 6 or more text items each with a different width (40, 30 24, 2...). I am using a Read Only Condition Type on all these items to disable them. I am setting the background color as bgcolor="#DCDCDC" in the Read Only Element Table Cell Attributes.
    All my elements are disabled (Gray color) but with the maximum width of 40 bytes. I don't want a 2 byte text item 40 bytes long and grayed out. How can I set a specific width for individual items in Read only Condition? Please help
    Thanks
    Raje.

    Try this alternative by disabling the HTML Form Item at the required process point.
    I added this JavaScript to the HTML Header of the page which will allow me to disable the required item, plus set its background and color:-
    <script language="JavaScript1.1" type="text/javascript">
        function disableFormItem(p_item, p_background, p_color){
                        disItem = document.getElementById(p_item);
                        disItem.style.background = p_background;
                        disItem.disabled = true;
                        disItem.style.color = p_color;
    </script>In the Region Footer of the Region where my items are located I added this JavaScript code:-
    <script language="JavaScript" type="text/javascript">
       ** Only disable the required Form Items if the Primary Key value is present,
       ** in this case it is P12_UEI. (Won't be present for new records as populated
       ** by on-insert db trigger and sequence.)
       if (html_GetElement('P12_UEI').value > 0)
          disableFormItem('P12_URESI', 'lightyellow', 'black');
          disableFormItem('P12_UZI', 'lightgray', 'black');
          disableFormItem('P12_UBI', 'lightgray', 'black');
    </script> The resulting page is a lot better looking than using the APEX read only text item.
    Regards,
    Phil

  • [10.0.7 ESR] Temporary documents are read-only again, even with the "browser.helperAppsbrowser.helperApps.deleteTempFileOnExit" parameter set on "false". Why?

    We currently updated from the old 3.6 Firefox to the ESR version 10.0.7. Eversince we've used Firefox we've had a problem with documents being read-only when downloaded temporarily. But we've found the solution by finding the entry
    browser.helperAppsbrowser.helperApps.deleteTempFileOnExit
    in the about:config and setting it on false. Documents were writeable again, and the world was full of fluffy unicorns and rainbows.
    But that doesn't seem to be sufficient when using Firefox 10.0.7 ESR, since that entry is set but all our documents are read-only again. We checked that it is a Firefox issue by deactivating all add-ons to be sure, that it's the browser itself that makes that setting.
    What is the cause and how can we change it back to them being writeable again?
    Andrea

    While that may be best practice, it doesn't help in this case.
    We use a system that creates documents by using templates and filling datafields with individual values based on the case that is being worked on. These documents are saved in the system and are only displayed for information purpose.
    Still some of these documents have to be altered. The system offers this possibility by letting you edit the temp file and load it back up, so that the altered document is saved in the system. The document gets a unique file name in the temp folder which includes numbers so that the system can identify which document in the system should be overwritten by the altered version.
    Since the documents aren't meant to be on the local harddrive anyway but in the system, "save as..." is no real solution in this case.

  • Create a window with read only address bar (no address bar) in webdynpro

    Hello All,
    The client wants to open a webdynpro window in such a way that when a user clicks on the link and the new window opens up, it does not show the address bar or the address bar is uneditable. How do i do that?
    Thanks,
    Amina

    Hi,
    if your client is calling window through method CREATE_EXTERNAL_WINDOW of interface IF_WD_WINDOW_MANAGER, then you have a importing parameter HAS_LOCATION which you can set to false.
    If you are calling through portal and u have application PCD then you can call it  like this
    lo_portal_manager->navigate_absolute(
        navigation_target   = lv_path
        navigation_mode     = if_wd_portal_integration=>co_show_external
        window_features     = 'toolbar=no,resizable=yes,scrollbars=yes'
        business_parameters = lv_tab_wd_param
    lo_portal_manager is portal reference
    here window _features parameter says no toolbar.
    Regards
    Manas Dua

  • Read only specific Columns into the cursor

    Hey everybody,
    I'm trying to make a cursor which takes only column 2 to n-2 (when n is the number of cloumns). The table size should be variable.
    Is there any possibility to do that?
    Like
    CURSOR nodes IS SELECT * FROM nn_input WHERE column_id > 1 AND column_id < count(columns)-2;
    Another possibility to solve the problem could be to read all cloumns in the cursor and then, in the for-loop, writing the 2nd to (n-2) value in table1 and the last two values in table2...
    Anyone an idea? Thanks a lot!

    You need to use dynamic SQL and build up your query at run time. You could use something like the following to generate the list of columns...
    CREATE TABLE test_columns
    col1 number,
    col2 number,
    col3 number,
    col4 number,
    col5 number
    SELECT LTRIM(MAX(SYS_CONNECT_BY_PATH(column_name,',')),',')
    FROM   user_tab_columns
    START WITH column_id = &start_col_num
    AND        table_name = 'TEST_COLUMNS'
    CONNECT BY column_id = PRIOR column_id +1
    AND  table_name = PRIOR table_name
    AND  level <= &end_col_num-&start_col_num+1;Using a start_col_num =2 and end_col_num=4 gives:
    LTRIM(MAX(SYS_CONNECT_BY_PATH(COLUMN_NAME,',')),',')
    COL2,COL3,COL4There are lots and lots of other options...
    Greg

  • My safari starts stalling and then closes down and when i reopen it takes a while for the window to start again. It is happening all the time especially if i have more than 3-4 windows open.This only started happening in the last few weeks.

    Process:         Safari [7467]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.5 (5533.21.1)
    Build Info:      WebBrowser-75332101~2
    Code Type:       X86 (Native)
    Parent Process:  launchd [65]
    Interval Since Last Report:          387397 sec
    Crashes Since Last Report:           11
    Per-App Interval Since Last Report:  350187 sec
    Per-App Crashes Since Last Report:   7
    Date/Time:       2011-04-23 02:59:21.984 -0400
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  98B6DD10-3E8D-47CF-B193-DEA98C657ED5
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0
    Thread 0 Crashed:
    0   ???                                     0000000000 0 + 0
    1   com.apple.WebCore                       0x95bdb202 WebCore::RenderBlock::styleDidChange(WebCore::StyleDifference, WebCore::RenderStyle const*) + 34
    2   com.apple.WebCore                       0x95cfd532 WebCore::RenderTextControl::styleDidChange(WebCore::StyleDifference, WebCore::RenderStyle const*) + 34
    3   com.apple.WebCore                       0x95cfd252 WebCore::RenderTextControlSingleLine::styleDidChange(WebCore::StyleDifference, WebCore::RenderStyle const*) + 34
    4   com.apple.WebCore                       0x95bd9a1e WebCore::RenderObject::setStyle(***::PassRefPtr<WebCore::RenderStyle>) + 366
    5   com.apple.WebCore                       0x95c18d58 WebCore::RenderObject::setAnimatableStyle(***::PassRefPtr<WebCore::RenderStyle> ) + 88
    6   com.apple.WebCore                       0x95c25731 WebCore::Node::setRenderStyle(***::PassRefPtr<WebCore::RenderStyle>) + 49
    7   com.apple.WebCore                       0x95c2523e WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 894
    8   com.apple.WebCore                       0x95d0c504 WebCore::HTMLFormControlElement::recalcStyle(WebCore::Node::StyleChange) + 36
    9   com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    10  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    11  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    12  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    13  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    14  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    15  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    16  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    17  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    18  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    19  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    20  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    21  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    22  com.apple.WebCore                       0x95c25322 WebCore::Element::recalcStyle(WebCore::Node::StyleChange) + 1122
    23  com.apple.WebCore                       0x95bd5e9f WebCore::Document::recalcStyle(WebCore::Node::StyleChange) + 191
    24  com.apple.WebCore                       0x95c209e8 WebCore::Frame::setZoomFactor(float, WebCore::ZoomMode) + 136
    25  com.apple.WebKit                        0x9516dbb1 -[WebView(WebPendingPublic) zoomPageIn:] + 49
    26  com.apple.Safari                        0x000b4ac9 0x1000 + 735945
    27  com.apple.AppKit                        0x9472925f forwardMethod + 113
    28  com.apple.AppKit                        0x9472925f forwardMethod + 113
    29  com.apple.AppKit                        0x9472925f forwardMethod + 113
    30  com.apple.AppKit                        0x9472925f forwardMethod + 113
    31  com.apple.AppKit                        0x9469d731 -[NSWindow sendEvent:] + 8511
    32  com.apple.Safari                        0x0003ff9c 0x1000 + 257948
    33  com.apple.Safari                        0x0003ff29 0x1000 + 257833
    34  com.apple.AppKit                        0x94967cf1 -[NSApplication _handleGestureEvent:] + 198
    35  com.apple.AppKit                        0x9466a3ad -[NSApplication sendEvent:] + 6275
    36  RapportUtil1.dylib                      0x11d158c0 _nsapplication_sendEvent_override(objc_object*, objc_selector*, NSEvent*) + 496
    37  com.apple.Safari                        0x000371ac 0x1000 + 221612
    38  com.apple.AppKit                        0x945c6fe7 -[NSApplication run] + 867
    39  com.apple.AppKit                        0x945941d8 NSApplicationMain + 574
    40  com.apple.Safari                        0x0000a38e 0x1000 + 37774
    Thread 1:
    0   libSystem.B.dylib                       0x97d1d44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97d72e71 sleep$UNIX2003 + 63
    2   com.apple.JavaScriptCore                0x93791825 ***::TCMalloc_PageHeap::scavengerThread() + 213
    3   com.apple.JavaScriptCore                0x93791b1f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    5   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x97d1d44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97d1d216 usleep$UNIX2003 + 61
    2   RapportUtil1.dylib                      0x11d24aa6 bp_heartbeat_thread + 227
    3   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    4   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x97d1d44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97d47dcd pthread_cond_wait$UNIX2003 + 73
    2   RapportKukai.dylib                      0x01b7d924 pthreads_consumer_producer_queue<resolve_work_item>::dequeue(resolve_work_item& ) + 54
    3   RapportKukai.dylib                      0x01b7cd56 pre_resolve_worker_thread_fn(void*) + 106
    4   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    5   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x97d1d44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97d47dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.WebCore                       0x95bb8824 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3   com.apple.WebCore                       0x95bb4b2c WebCore::IconDatabase::iconDatabaseSyncThread() + 188
    4   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    5   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x97d16266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97d1da5c mach_msg + 72
    2   com.apple.CoreFoundation                0x97c46e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x97c47aa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork                     0x92c3618c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    6   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x97d16266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97d1da5c mach_msg + 72
    2   com.apple.CoreFoundation                0x97c46e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x97c47aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x90e84520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation                    0x90e20dfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x90e209a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    8   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x97d656fa select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    2   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x97d16266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97d1da5c mach_msg + 72
    2   com.apple.CoreFoundation                0x97c46e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x97c47aa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                        0x0002eacf 0x1000 + 187087
    5   com.apple.Safari                        0x0002e818 0x1000 + 186392
    6   com.apple.Safari                        0x0002e7b1 0x1000 + 186289
    7   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    8   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x97d1d44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97d47dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.ColorSync                     0x944b43f8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3   com.apple.ColorSync                     0x944c6d4e CMMConvTask(void*) + 54
    4   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    5   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x97d1d44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97d47dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x93634151 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.Safari                        0x001ad898 0x1000 + 1755288
    4   com.apple.Safari                        0x00044981 0x1000 + 276865
    5   com.apple.Safari                        0x000448d1 0x1000 + 276689
    6   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    7   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x97d1d44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97d47dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x93634151 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x95f0873c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    5   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x97d16266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97d1da5c mach_msg + 72
    2   com.apple.CoreFoundation                0x97c46e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x97c47aa8 CFRunLoopRunInMode + 88
    4   com.apple.audio.CoreAudio               0x938b05f8 HALRunLoop::OwnThread(void*) + 160
    5   com.apple.audio.CoreAudio               0x938b0480 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    7   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x97d1d44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97d47dcd pthread_cond_wait$UNIX2003 + 73
    2   libGLProgrammability.dylib              0x90200b32 glvmDoWork + 162
    3   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    4   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x97d1d44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97d47dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.QuartzCore                    0x967efa09 fe_fragment_thread + 54
    3   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    4   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x97d162ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x97d8d539 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb984f unregister_ShockwaveFlash + 47247
    4   ...lashPlayer-10.4-10.5.plugin          0x1d78c2ff 0x1d772000 + 107263
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x97d162ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x97d8d539 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb984f unregister_ShockwaveFlash + 47247
    4   ...lashPlayer-10.4-10.5.plugin          0x1d78c2ff 0x1d772000 + 107263
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1d951efe 0x1d772000 + 1965822
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1daa3d05 0x1d772000 + 3349765
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1d951efe 0x1d772000 + 1965822
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1daa3d05 0x1d772000 + 3349765
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1daa3d05 0x1d772000 + 3349765
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1daa3d05 0x1d772000 + 3349765
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 23:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x90e66dbc -[NSCondition waitUntilDate:] + 236
    4   com.apple.Foundation                    0x90e66bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5   com.apple.Foundation                    0x90e66b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.AppKit                        0x946346e8 -[NSUIHeartBeat _heartBeatThread:] + 753
    7   com.apple.Foundation                    0x90e20dfd -[NSThread main] + 45
    8   com.apple.Foundation                    0x90e209a4 __NSThread__main__ + 308
    9   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    10  libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 24:
    0   libSystem.B.dylib                       0x97d16266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97d1da5c mach_msg + 72
    2   com.apple.CoreFoundation                0x97c46e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x97c47b04 CFRunLoopRun + 84
    4   com.apple.DesktopServices               0x97392d0f TSystemNotificationTask::SystemNotificationTaskProc(void*) + 123
    5   ...ple.CoreServices.CarbonCore          0x90943fbb PrivateMPEntryPoint + 56
    6   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    7   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 25:
    0   libSystem.B.dylib                       0x97d16266 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97d1da5c mach_msg + 72
    2   com.apple.CoreFoundation                0x97c46e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x97c47b04 CFRunLoopRun + 84
    4   com.apple.DesktopServices               0x97392e88 TFSEventsNotificationTask::FSEventsNotificationTaskProc(void*) + 216
    5   ...ple.CoreServices.CarbonCore          0x90943fbb PrivateMPEntryPoint + 56
    6   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    7   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 26:
    0   libSystem.B.dylib                       0x97d1d44e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97d47dcd pthread_cond_wait$UNIX2003 + 73
    2   ...ple.CoreServices.CarbonCore          0x90945de3 TSWaitOnCondition + 126
    3   ...ple.CoreServices.CarbonCore          0x90924c36 TSWaitOnConditionTimedRelative + 202
    4   ...ple.CoreServices.CarbonCore          0x90945a60 MPWaitOnQueue + 208
    5   com.apple.DesktopServices               0x9739de6a TNodeSyncTask::SyncTaskProc(void*) + 84
    6   ...ple.CoreServices.CarbonCore          0x90943fbb PrivateMPEntryPoint + 56
    7   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    8   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 27:
    0   libSystem.B.dylib                       0x97d469c6 kevent + 10
    1   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    2   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 28:
    0   libSystem.B.dylib                       0x97d7f292 __workq_ops + 10
    1   libSystem.B.dylib                       0x97d7f2c2 start_wqthread + 30
    Thread 29:
    0   ???                                     0000000000 0 + 0
    Thread 30:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1d951efe 0x1d772000 + 1965822
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 31:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1daa3d98 0x1d772000 + 3349912
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 32:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1d951efe 0x1d772000 + 1965822
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 33:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1daa3d98 0x1d772000 + 3349912
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 34:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1d951efe 0x1d772000 + 1965822
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 35:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1daa3d98 0x1d772000 + 3349912
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 36:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1d951efe 0x1d772000 + 1965822
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 37:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1daa3d98 0x1d772000 + 3349912
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 38:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1d951efe 0x1d772000 + 1965822
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 39:
    0   libSystem.B.dylib                       0x97d162c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97d482af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97d49b33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x1dbb9817 unregister_ShockwaveFlash + 47191
    4   ...lashPlayer-10.4-10.5.plugin          0x1daa3d98 0x1d772000 + 3349912
    5   ...lashPlayer-10.4-10.5.plugin          0x1dbb993c unregister_ShockwaveFlash + 47484
    6   ...lashPlayer-10.4-10.5.plugin          0x1dbb9980 unregister_ShockwaveFlash + 47552
    7   ...lashPlayer-10.4-10.5.plugin          0x1dbb9aa6 unregister_ShockwaveFlash + 47846
    8   libSystem.B.dylib                       0x97d47155 _pthread_start + 321
    9   libSystem.B.dylib                       0x97d47012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x36de5a5c  ebx: 0x2d686c54  ecx: 0x3e2e4e00  edx: 0x00000000
      edi: 0x2d686c54  esi: 0x3dd6c3c0  ebp: 0xbfffe988  esp: 0xbfffe95c
       ss: 0x0000001f  efl: 0x00010246  eip: 0x00000000   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -   0x5d2fec  com.apple.Safari 5.0.5 (5533.21.1) <81e116cb4e3c8211564f4b4031eee74e> /Applications/Safari.app/Contents/MacOS/Safari
      0x643000 -   0x64efff  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x656000 -   0x680fe8  com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x691000 -   0x6a0ffc  SyndicationUI ??? (???) <3455e970195dab1ad7c6949c4e37e21a> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x1ade000 -  0x1b07fff +librooksbas.dylib ??? (???) <d43a6cd9709a4580fdac3e434c67d84b> /Library/Rapport/bin/librooksbas.dylib
    0x1b37000 -  0x1b4dffb +librooksmce.dylib ??? (???) <f035238b7692d5afb67c5b8122a81cde> /Library/Rapport/bin/librooksmce.dylib
    0x1b73000 -  0x1b96fff +RapportKukai.dylib ??? (???) <943662dce5b0da0e46ba62626155ffff> /Library/Rapport/bin/RapportKukai.dylib
    0x11d10000 - 0x11ebefff +RapportUtil1.dylib ??? (???) <a94f0ef197c244e0a9e17ae211b3ff51> /Library/Rapport/bin/RapportUtil1.dylib
    0x1200c000 - 0x1238bff3  com.apple.RawCamera.bundle 3.0.2 (527) <981ab8346c346fa5f88601df06c56609> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14f3c000 - 0x14f41ff3  libCGXCoreImage.A.dylib ??? (???) <4199fa0c7dd9592abf465b20feec52f9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x17956000 - 0x17957fff  com.apple.JavaPluginCocoa 12.8.0 (12.8.0) <5b94dce801714a46f964bf1333f05553> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x1795d000 - 0x17961ffc  JavaLaunching ??? (???) <43dcbd7b3261842d9ddf48337eb3c0e7> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x190be000 - 0x190beffd  liblangid.dylib ??? (???) <4a7cd4e810ac2cf4cadd29d0bda17306> /usr/lib/liblangid.dylib
    0x1a089000 - 0x1a08bffe  com.apple.AutomatorCMM 1.1 (162) <413d7e87f90ba14adf2c2a08af448666> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x1a293000 - 0x1a294ffd  com.apple.BluetoothMenu 2.1.8 (2.1.8f2) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x1a299000 - 0x1a29bfff  com.apple.BezelServicesFW 1.4.9212 (1.4.9212) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x1a2a2000 - 0x1a2a3ff7 +com.sophos.cmplugin 7.2.4 (7.2.4) <9aba7ba0acd4cefed4771dd8de551cf1> /Library/Contextual Menu Items/Sophos Anti-Virus.plugin/Contents/MacOS/Sophos Anti-Virus
    0x1a2c9000 - 0x1a2cefff  com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9305ccde37dcf5329fd9faea1db1f153> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x1a40e000 - 0x1a418ffe  com.apple.URLMount 3.1.1 (3.1.1) <0189760dca64cd07c190e1a7b10283e5> /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    0x1d139000 - 0x1d13cfff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <51c811377017028f8904ad779e6a1344> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1d1c7000 - 0x1d1caff2 +com.macromedia.Flash Player.plugin 10.2.153.1 (10.2.153.1) <b11ce47b2d6256a581a90bd06367fd54> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1d772000 - 0x1e183ff3 +com.macromedia.FlashPlayer-10.4-10.5.plugin 10.2.153.1 (10.2.153.1) <efafe85386fac285111c075a6dae5eee> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x1e456000 - 0x1e472ff7  GLRendererFloat ??? (???) <7b68e0fde5d97927d5407221bdf8ace0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1e547000 - 0x1e54dfff  com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) <a0a4389b5ac52ab84397d2b25c9d3b9c> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x20635000 - 0x207bafe3  GLEngine ??? (???) <945546cdf016a4e5cbbf2ad1bccd0ab4> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x20860000 - 0x2086efeb  libSimplifiedChineseConverter.dylib ??? (???) <68f130a585c3f580d166ef7cbbf47e69> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x20873000 - 0x20885fff  libTraditionalChineseConverter.dylib ??? (???) <6108541a452ff07d2f67db4a488b9d22> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x21b95000 - 0x21efefe8  com.apple.GeForce8xxxGLDriver 1.5.48 (5.4.8) <880ed3155078052260ade6e705c9ca64> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x232f8000 - 0x23423ff7  libmecab.1.0.0.dylib ??? (???) <b1f984a091cd38aaa82c99b8437b2761> /usr/lib/libmecab.1.0.0.dylib
    0x23c7e000 - 0x23c7fff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x2504e000 - 0x25089ff7 +com.google.googletalkbrowserplugin 2.0.4.2108 (2.0.4.2108) <79d7683ee025d80dc5cd78ae4a3d6c31> /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin/Contents/MacOS/googletalkbrowserplugin
    0x2d3c8000 - 0x2d43dff7  com.apple.Bluetooth 2.1.9 (2.1.9f10) <d70a88066ebf7eb8071781f686caced3> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x70000000 - 0x700e6ff2  com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x901d9000 - 0x906aaf76  libGLProgrammability.dylib ??? (???) <bf7fb226cbb412edfa377537c3e35877> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x906ab000 - 0x906b0fff  com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x906b1000 - 0x906bdfff  libbz2.1.0.dylib ??? (???) <4a85b4792863e637bb98e7275869cc5d> /usr/lib/libbz2.1.0.dylib
    0x906be000 - 0x9074bff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9074c000 - 0x9076bffa  libJPEG.dylib ??? (???) <3407c6f4869e698d3c4107b46e435119> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9076c000 - 0x9077cffc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9077d000 - 0x90785fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90786000 - 0x90874fef  com.apple.PubSub 1.0.5 (65.21) <627489b23eef30bec9e5b1ab89e6de6b> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x90875000 - 0x908a0fe7  libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x908a1000 - 0x908a6fff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x908a7000 - 0x908a7ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x908a8000 - 0x908e6fff  libGLImage.dylib ??? (???) <b154e14c351ddc950d5228819201435e> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x908fb000 - 0x90bd5ff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90bd6000 - 0x90da7fef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90e16000 - 0x91092fe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91093000 - 0x910cdffe  com.apple.securityfoundation 3.0.2 (36131) <f36bdfb346d21856a7aa3e67024cc1d7> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x911bb000 - 0x911d0ffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x911d1000 - 0x9122aff7  libGLU.dylib ??? (???) <a08a753efc35f8a27f9c8f938fa01101> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9122b000 - 0x91232ff7  libCGATS.A.dylib ??? (???) <29154398dbefc2a1a97715e5af1e3552> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91233000 - 0x91272fef  libTIFF.dylib ??? (???) <3b9aceaff5eae70bd19f9dc26e415969> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91273000 - 0x91275ffd  com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x91276000 - 0x91357ff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x91358000 - 0x91376fff  libresolv.9.dylib ??? (???) <39f6d8651f3dca7a1534fa04322e6763> /usr/lib/libresolv.9.dylib
    0x91377000 - 0x91384fe7  com.apple.opengl 1.5.10 (1.5.10) <95c3d857570a137d0e8285c9eafa1112> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91385000 - 0x92285fe6  com.apple.QuickTimeComponents.component 7.6.9 (1680.9) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92286000 - 0x92286ffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92287000 - 0x923d1feb  com.apple.QTKit 7.6.9 (1680.9) <fe987e6adf235d5754399dcdae6e5a8e> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x923d2000 - 0x92421fff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92422000 - 0x9246bfef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9246c000 - 0x92495fff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x92496000 - 0x92513fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92514000 - 0x92556fef  com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92557000 - 0x925c9fff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x925ca000 - 0x92988fea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92989000 - 0x92999fff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9299a000 - 0x929a8ffd  libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x929a9000 - 0x92a70ff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92a71000 - 0x92af8ff7  libsqlite3.0.dylib ??? (???) <7d1fcfae937da95c7d2b9bdea57e6dc0> /usr/lib/libsqlite3.0.dylib
    0x92af9000 - 0x92c32ff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x92c33000 - 0x92cdafec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92cdb000 - 0x92d6eff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92d6f000 - 0x92d73fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x92d74000 - 0x92ddaffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92ddb000 - 0x92de0fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x92de1000 - 0x92e09ff7  com.apple.shortcut 1.0.1 (1.0) <a452d3f7feae073a12718c2bc553c575> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92e0a000 - 0x92ec5fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x92ec6000 - 0x92efcfef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
    0x92f02000 - 0x930beff3  com.apple.QuartzComposer 2.1 (106.13) <f487aaca8ebdc7e334e2c79cebd8da66> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x930bf000 - 0x930c3fff  libGIF.dylib ??? (???) <b0ff75435ef93ab3d5486c78fa82a150> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x930c4000 - 0x93216ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93217000 - 0x93265fe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93266000 - 0x932b1fe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x932b2000 - 0x932b2ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x932b3000 - 0x932d0ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x932d1000 - 0x93383ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x93384000 - 0x93390ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93391000 - 0x93391ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93392000 - 0x9339cfeb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9339d000 - 0x933c1fff  libxslt.1.dylib ??? (???) <f0872c9ba3c17861fba8c45a3647cee1> /usr/lib/libxslt.1.dylib
    0x933c2000 - 0x93546fef  com.apple.MediaToolbox 0.484.2 (484.2) <32bf3254fafd942cf8f2c813960217fd> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x93547000 - 0x93553ff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x93554000 - 0x93578feb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x93579000 - 0x93620feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93621000 - 0x93621ffa  com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93622000 - 0x9381bfff  com.apple.JavaScriptCore 5533.20 (5533.20.20) <55065a7f4b44e0cd1a8b2e182cefddec> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9381c000 - 0x9384bfe3  com.apple.AE 402.3 (402.3) <aee412511c8725cd1a2cfb6501316bd5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x938

    This sounds more like a software problem--if you don't get any answers here, you might try the Safari forum.
    Good luck!

  • Update will not install. It says close any other Firefox windows currently open, only one open is the update window.

    You Tube videos flicker or shuffle very fast, Display expands to the right then slides to the left every second. I might have to uninstall Firefox. This is a mess.

    I have downloaded and installed Firefox 3.6.8 and entered. I couldn't get back into the next day. I used EXIT.

  • How can I get read only files out of the trash?

    Either by deleting them, or moving them out. I have to click continue about 170 times just to get through the files to empty the rest of my trash.

    Unlock them first.
    Open terminal.app,
    enter the following command:
    sudo chflags -R nouchg ~/.Trash
    (press return, enter admin password, press return again)
    #this will unlock them in THE CURRENT user directory Trash folder#
    Kj

  • Help on opening read only Windows files

    Hello, i hope someone can help.
    I have changed to Mac OS server from a windows 2000 based file sharing machine users have both mac os and windows xp. All files were copied over to the OS server and access etc has not been an issue until now!
    Recently I have come across some files which have windows based read only attributes applied by the windows based user. These files are sent to me by clients, they are CAD drawing files.
    The problem is no user can open these files, the message from a windows XP machine is the file is in use or read only do you want to open as read only. Selecting yes and the result is you do not have permissions to read this. Permissions are fine for the folder as other files in the same folders are read and written fine if they do not have the read only attribute.
    If viewing in Mac OS the icon for these files have a padlock in the bottom left.
    So i try to change the read only attribute and both windows XP and mac os say i do not have permission, even when logged on as the administrator. Also cannot copy them from the server to the XP machine via the XP machine.
    I can copy via the mac server admin to an XP machine then change the attribute and copy it back to the server and of course it works fine.
    Problem to solve is, I now see while scanning through I have several hundreds of these files spread through hundreds of folders. Is there any way to change this permission on all files starting at the root folder in one hit or at least change them via Mac Os?
    Any help would be much appreciated, sorry to be so long winded.
    Cheers, Paul

    I'm having exactly the same problem on a Mac Mini Snow Leopard Server with opening files on Windows 7 machines using SolidWorks 2010. All permissions seem to correct.
    Propagating permissions through these files and folders doesn't have any effect.
    All Sharepoints are on a FW800 Hard disk.

  • Windows installed but all files Read Only

    Hi guys
    I have just installed windows 7 on my macbook pro using bootcamp. Every seems to be working great except for all my files are read only. I go to properties uncheck read only apply it to the file and it fails because it needs administrator permissions. I have tried to change permissions to full control and it fails to apply it to any of the folders.
    Any help would be much appreciated
    I'm a pc! All the problems with windows xp, vista, 7 were my idea!

    Hi,
    sorry about the MacDrive thing, Imeant NTFS-3G for full NTFS access while in OSX
    Have a look here http://www.tomshardware.co.uk/forum/page-232514350.html , maybe it helps.
    Stefan

  • I have an iMac(mid2010) running Pages v5.5.1 on OS X 10.10. Why can I not save or share documents. The error message is You can't save the file "TEST.pages" because the volume is read only.

    I have an iMac(mid2010) running Pages v5.5.1 on OS X 10.10. Why can I not save or share documents. The error message is You can’t save the file “TEST.pages” because the volume is read only.
    I get the same message when using Numbers so I presume it is a OS problem

    Some of your user files (not system files) have incorrect permissions or are locked. This procedure will unlock those files and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Back up all data before proceeding.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button
    Select
               ▹ Restart
    from the menu bar.

Maybe you are looking for

  • .ai overload in Indesign (CS5.5)

    We have an InDesign document that is comprised of a few dozen Illustrator line drawings (garments)  that have been built individually using layers and are viewed/imported in InDesign through import options and turning off/on said individual layers. T

  • Need to repair HD

    disk utility said I need to repair the HD on my MBP.  It said to run disk utility from the install disk. I have Lion installed on my MBP. Lion was a download. So I put the previous version (snow leopard) os disk in the MBP. Then I get a message that

  • Why GL balance  is splitting and displaying Bus. Area wise in F.01

    Why GL balance  is splitting and displaying Bus. Area wise in F.01, eventhough I have selected Bus. Area summarization 3 under output control tab.

  • Error connecting jdbc with SQL server

    Hi, I get the following error when I try to run a sample program to connect SQLserver with JDBC . The driver I used to connect is " com.microsoft.jdbc.sqlserver.SQLServerDriver ". I have registered the driver properly but have problem in connecting t

  • Dropdown in WD.

    Hi Everyone , How to populate values into the dropdown in webdynpro.. Please help me. Thanks and regards, Vijay