Record dirty immediately after query

Records are dirty immediately after quering/retrieved. I find it is only a certain type of record. I am very new to Jdeveloper. How do I go about researching what may be causing this? any suggestons?

Hi,
the transaction is dirty only if you set values to attributes of a row. So if you just follow the wizards to create the AM then this should not be the case. There must be more in what you do. You can run the tester first to see if this is originated from the business service. If it is then think about what you did beyond following the wizard steps
Frank

Similar Messages

  • How to make record dirty programmatically after query record from db

    Hallo,
    JDeveloper 10.1.3.2
    I try to make record dirty after I query records.
    In VORowImpl.java I overwrite the populate() method:
    protected void populate(ResultSet resultSet) {
    super.populate(resultSet);
    setStatus("J");
    If I query DB for the first time, everything is ok.
    For the second time I get the errror:
    500 Internal Server Error
    oracle.jbo.TooManyObjectsException: JBO-25013: Te veel objecten komen overeen met de primaire sleutel oracle.jbo.Key[1 ].     
    at oracle.jbo.server.EntityCache.add(EntityCache.java:555)
         at oracle.jbo.server.ViewRowStorage.entityCacheAdd(ViewRowStorage.java:1762)
         at oracle.jbo.server.ViewRowImpl.entityCacheAdd(ViewRowImpl.java:2151)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:1073)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:2946)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:2839)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:2252)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:2127)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:1501)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:3650)
         at oracle.jbo.server.ViewRowSetIteratorImpl.doFetch(ViewRowSetIteratorImpl.java:2818)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2674)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2634)
         at oracle.jbo.server.ViewRowSetIteratorImpl.getRowAtRangeIndex(ViewRowSetIteratorImpl.java:722)
         at oracle.jbo.server.ViewRowSetImpl.getRowAtRangeIndex(ViewRowSetImpl.java:3672)
         at oracle.jbo.server.ViewObjectImpl.getRowAtRangeIndex(ViewObjectImpl.java:6288)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel._bringInToRange(FacesCtrlRangeBinding.java:541)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel.setRowIndex(FacesCtrlRangeBinding.java:504)
         at oracle.jheadstart.controller.jsf.bean.JhsCollectionModel.setRowIndex(JhsCollectionModel.java:361)
         at oracle.adf.view.faces.component.UIXCollection.setRowIndex(UIXCollection.java:379)
    Thanks,
    Anna
    Edited by: adekkers on 11-nov-2010 16:13

    I'll try to explain.
    I have a db-view.
    I have instead of triggers on this view.
    The user queries my view. A set of records appears on screen (for example 15).
    The user changes some attributes for 2 records.
    Other records stay in retrieved state. Or he does not change any record at all
    The user wants all 15 records to be committed in database. Even this records are not updated on screen.
    There is logics in instead of triggers, that makes real table-updates.
    I'm not a guru in jdeveloper.
    I thougt it is possible make records dirty after retrieving from database. In that case the jdeveloper can use normal commit-button without extra coding from my side.
    The problem: I can not put retrieved record in dirty status.
    If I use populate method in VO I get the error when I query my view for the second time.
    Dimitar, sorry.
    I did not understand your explanation.
    Can you please give some example.
    Thanks,
    Anna

  • Conditionally disabling record updation after query

    Dear members
    I've a single record block and I wanna conditionaly disable records updation after query has fetched data. Problem is that if I disable the record updation in Post-Query trigger then it checks the condition for the very first fetched record and it the condition is true, then Updation is disabled for all the fetched records, even if the next records dont meet the condition. I'm using forms-10g. Can u give a better solution??? thanx.

    you have to use SET_ITEM_INSTANCE_PROPERTY to modify only one record:
    BEGIN
        IF ... <your_condition> THEN
            SET_ITEM_INSTANCE_PROPERTY('YOUR_BLOCK.YOUR_ITEM1', UPDATE_ALLOWED, PROPERTY_FALSE);
        ELSE
            SET_ITEM_INSTANCE_PROPERTY('YOUR_BLOCK.YOUR_ITEM1', UPDATE_ALLOWED, PROPERTY_TRUE);
        END IF;
    END;

  • How to count no of records returned from a query?

    Hello,
    I need to find out how many records displayed from a query without writing any other queries.
    i mean that.
    I have a query such as:
    query = "select * from users";
    and the resultset for it is rs.
    and i need to display how many records fetched from this query without using any other query such as "select count(user_id) from users" etc.
    Is there any function ?

    No, unfortunately there is no method or property that will tell you how many rows have been returned by a query.
    People use many different techniques.
    1.The simplest would be, keep incrementing a counter in while ( rs.next() ) and at the end you'll have the count. But only at the end, after the loop.
    2. Run another query with count(*) just to fetch the count.
    3. Run the same query twice, once for counting and then again for printing out. Very dumb idea though, might as well do 2. suggested above.
    4. If you have a scrollable resultset, you could go to the lastRecord and then getRow number and hence know how many there are and then rewind the resultset. I don't know how advisable using scrollable resultsets is.
    5. Create a slightly clumsy query like : select count(*) as "totalcount", emp_id, emp_name, emp_email, emp_phone from employees group by emp_id, emp_name, emp_email, emp_phone. You'll need to use the group by clause since count() is an aggregate function and you can't mix aggregate functions and columns unless you add the group by to all the columns you're fetching.

  • Go_item(:detail.item) after query(F7) in master, frm-40737

    Dear friends,
    I have a master block and a detail block. When the master block ist queried, I want to go to a disticnt item in detail block, if there are records. Therefore I tried to put code in the post_query of the detail_block, which caused error frm-40737:
    if :evm_jn_lief_artikel_lagort.lagort_id is null then
    go_item('evm_a_liefrant.liefrant_uk');
    else
    go_item('lieferschein.belegnr')
    end if;
    error message says, that I cannot call the restricted procedure go_item in post_query.
    okay, but where can I put this code that it is called automatically after query?
    Thanks
    Silke

    Thank you I tried it, principally it works, but there is a problem left. This is my code in key_exeqry of detail:
    execute_query;
    message('execute_query, lagort_id: ' || :evm_jn_lief_artikel_lagort.lagort_id);
    message('execute_query, lagort_id: ' || :evm_jn_lief_artikel_lagort.lagort_id);
    if :evm_jn_lief_artikel_lagort.lagort_id is null then
         -- keine Artikel am lagerort
         go_item('evm_a_liefrant.liefrant_uk');
         message('evm_a_liefrant.liefrant_uk');
         message('evm_a_liefrant.liefrant_uk');
    else
         go_item('lieferschein.belegnr');
         message('lieferschein.belegnr');
         message('lieferschein.belegnr');
    end if;     
    When t´here are records in the detail block else is choosen, but forms doesn't go the item!
    The 'old' item (from where F8 was pressed) stays activated.

  • Getting new sizes immediately after calilng setVisible

    How can I get the new sizes after hiding/showing a panel? I have a left and right panels, and a thin vertical bar in between that will alternatively collapse/expand the left panel whenever a user click on it. There's a PDF document in the right panel and I want it to do a "fit to page" calculation immediately after the left panel hides/shows. If I do it without the invokeLater() method, the sizes after setVisible() doesn't change and then the sizes will always be one click "behind". Like for example, when I first click on the vertical bar, the left panel collapses and the PDF page size stays the same. After the second click on the bar, the left panel expands (right panel gets smaller) and the PDF page gets bigger and fits the previous size of the right panel when the left panel was collapsed. It's like the program is recording the previous sizes, not new ones. I understand that there's an event dispatching thread and the sizes wont be updated until after the layout calculation has been done in the thread. How can I make it to do the layout immediately after calling setVisible()? I can bear with this, but there's a noticeable "fit to page" lag after the left panel changes its visibility. Is there a better way to do this?
    Here's the snippet of the code:
    This is where the visibility changes and where it calls the "fit to page" (fitPdfToViewport) method.
    public void toggleMenuButtonVisibility(){
         final PdfViewerPanel viewPanel = efbFrame.getPdfViewerPanel();
         this.menuContentPanel.setVisible(this.hidden);
         this.hidden = !hidden;
         if(viewPanel.isFitToPage){
    //          viewPanel.validate();
    //          this.menuContentPanel.validate();
              Runnable blah = new Runnable(){
                   public void run(){
                        viewPanel.fitPdfToViewport();
              SwingUtilities.invokeLater(blah);
    }This is the "fit to page" method:
    public void fitPdfToViewport(){
         this.pdfController.setZoom(1.0f);     //reset the PDF dimension
         Dimension viewDim = this.documentPanel.getSize();
         Dimension pdfDim = this.pdfController.getDocumentViewSize();
         if(pdfDim != null && viewDim != null){
              float vRatio = (float)viewDim.height / pdfDim.height;
              float hRatio = (float)viewDim.width / pdfDim.width;
              float ratio = (vRatio > hRatio) ? hRatio : vRatio;
              this.pdfController.setMinumumZoom(ratio);
              this.pdfController.setZoom(ratio);
    }Thanks in advance, guys!

    Add a ComponentListener to your panel containing the PDF. On componentResize() you add your code.

  • Employee record remains locked after BAPI_EMPLOYEE_DEQUEUE

    I use WebServices gererated by the wizard in SE37 to change Employee Data.
    I call functions (through the webservice) in the following sequence:
    BAPI_EMPLOYEE_ENQUEUE
    BAPI_PERSDATA_CHANGE
    BAPI_EMPLOYEE_DEQUEUE
    The ENQUEUE and CHANGE operations work fine, but the record remains locked after that.
    (as seen by SM12), it adds one more entry, and the employee remains locked. So question now is - how to successfully Dequeue it now ?
    Here is a copy of entries as seen in SM12 after Enqueue, Change, and Dequeue:
    800 MZZZZZB 13:26:31 E PLOGI 80001CP00010358 0 1
    800 MZZZZZB 13:26:31 E PREL 80000001273############################## 1 1
    800 MZZZZZB 13:27:07 E BUT000 8000000002083 0 1
    Important: The entries disappear after a while, so there is a delay in DEQUEUE to take effect.
    Is there any configuration/customization to make DEQUEUE happen immediately?
    Thanks a lot...

    Solved.

  • Access 2010 Chart - Report returns an identical chart for every record in the underyling query

    Hi there, I hope someone can help me with this. I've created a stacked column chart in a Report. The chart seems to be working fine but my report is returning a chart for every record in the source query.  The chart adds up the days each vehicle in
    a fleet was used in a given time frame.  I'm not a code writer so wizarded my way to the following:
    TRANSFORM Sum(QVehicleDaysUsed.[DaysOfUseThisMonth]) AS SumOfDaysOfUseThisMonth SELECT QVehicleDaysUsed.[YearMakeModelPlate] FROM QVehicleDaysUsed GROUP BY QVehicleDaysUsed.[YearMakeModelPlate] PIVOT QVehicleDaysUsed.VehicleUseForMonthStarting;
    The chart seems to be producing exactly what I want but it's repeated once for every record in the source query. I don't know if this is the issue but I don't have a Master/Child field linking the chart to the report it's in - chart is unbound and therefore
    won't allow me to link fields. I'd sure appreciate any help you can offer! Thanks!
    (Incidentally VehicleUseForMonthStarting is a date field - ideally it should be shown as a DatePart MMMM but for whatever reason Access is balking at the Format expression.)
    Thanks!

    GOT IT! Hurray.  Obvious after giving it more thought... I had to make the report the chart was in Unbound. :) Leaving post up in case it helps someone else out.

  • Firefox 8 Crashes immediately after clicking the icon. (Won't load safemode either)

    Firefox 8 crashes immediately after clicking the icon. It does not even show the windows for a second. It immediately goes to the crash reporter. I tried holding shift while opening firefox to load safemode, but the problem is still there.
    Crash report:
    AvailableVirtualMemory: 4075601920
    BuildID: 20111104165243
    CrashTime: 1325436524
    InstallTime: 1320870265
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 336
    StartupTime: 1325436519
    SystemMemoryUsePercentage: 81
    Throttleable: 1
    TotalVirtualMemory: 4294836224
    URL:
    Vendor: Mozilla
    Version: 8.0
    This report also contains technical information about the state of the application when it crashed.

    See also [[Latest Firefox issues]] and http://kb.mozillazine.org/Firefox_crashes#Crash_when_starting_Firefox
    (For the record) "More system details" includes the crash Report ID:<br>
    bp-22454cd4-00b4-489f-bb8a-509772120101
    Crash Report: https://crash-stats.mozilla.com/report/index/bp-22454cd4-00b4-489f-bb8a-509772120101
    Firefox 8.0 Crash Report [@ JSObject::getGlobal() ]

  • How to get trigger-filled-in PK immediately after commit

    Hi You Form Experts,
    I have two blocks in a form. The two blocks are "linked" by an FK (block2's PK stored in block1's table), but they do not have an exactly "parent-child" relationship. Block1 always has a record and commits first, and there may or may not be a record in block2. So, in the form the two blocks are not joined. And if and when there is a record in block2, I need to update block1 with the block2's PK so that the records are associated.
    The problem here is that the PK of block2 is a sequence number and is filled in by a DB-side pre-insert trigger. So, there PK is not available in block2 immediately after the commit.
    Is there a way to force a "refresh upon insert" of the PK item of block2 in Forms?
    Thank you very much in advance.
    ZD

    can't u get ur block2 primary key value by:
    ON each new_record_Instance of block2
    rownum := get_block_property('block2',current_record);
    select nvl(max(pk_column))+ rownum into :pk_column
    from block2_table;
    Thus u can get the next assignable value for block2.
    Reply if it works

  • Is it possible to make is so that, immediately after I import a new clip into FCP, the file is automatically selected in the Event Library? (Similar to how After Effects and Premiere work).

    Is it possible to make is so that, immediately after I import a new clip into FCPX, the file is automatically selected in the Event Library? (Similar to how After Effects and Premiere work). Right now, after I import a new file, I have to then go searching for it amid all the other files in my project. It would be extremely helpful if the file I just imported was already highlighted and selected after import, making it instantly "locatable" and ready to go.

    Kryan73 wrote:
    …  after I import a new file, I have to then go searching for it amid all the other files…
    in a perfect world, you do know the recording date, and you simply scroll to that date.
    in a very perfect world, all your other imports are already tagged, so just have to create a smart list 'unrated' ...
    (I know those messy Events… a friend of mine constantly ignores my advice to check the time/date on his camera; on every battery swap, the cam creates a very erratic timestamp ... his actual recordings are listed as made in "2004" or in "2020" .... )

  • How to expire a record 30 days after creation

    I set up a blog type information page using David Powers 'php
    for dreamweaver 8' as a guide, where users in our golf community
    can post items for sale (among other things).
    I would like to have any posts automatically expire (so the
    record won't display) 30 days after the creation date.
    What is the best way to do that?
    thanks for your help,
    Jim Balthrop

    .oO(JBWebWorks)
    >I set up a blog type information page using David Powers
    'php for dreamweaver
    >8' as a guide, where users in our golf community can post
    items for sale (among
    >other things).
    > I would like to have any posts automatically expire (so
    the record won't
    >display) 30 days after the creation date.
    > What is the best way to do that?
    Select only records with a creation date not older than 30
    days:
    SELECT this, that, somethingElse
    FROM yourBlog
    WHERE creationDate >= CURDATE() - INTERVAL 30 DAY
    (assuming MySQL)
    If you also want to delete the expired records, run a cleanup
    query from
    time to time, for example everytime a new record is added:
    DELETE FROM yourBlog
    WHERE creationDate < CURDATE() - INTERVAL 30 DAY
    Micha

  • SkillBuilders Modal Page... closes immediately after loading

    I would like to use the Modal Page plug-in from http://www.skillbuilders.com .*
    I installed the two sample applications from their web site with different results:
    The employee example works fine.
    The example with the modal feedback worked fine yesterday, but today it shrinks (after loading normally) so that I can't see anything but the bar with the window name and the close button.
    In my own application it's even worse:
    I have links in a table which should open a modal window on click.
    I tried several settings, but the only thing that's happening is that the window closes immediately after loading and showing the page for a half a second (or not at all).
    Leaving the "Auto-close On Element Selector" empty did not work. The default value "div#success-message" kept coming back until I replaced it with "null". But still no effect.
    Does anyone have any idea what could cause this behaviour?
    Best regards,
    Sabine
    The Security Settings for all three applications:
    Cache: Enabled
    Embed in Frames: Allow

    In the meantime I had the problem that the window didn't close at all, but I think I figured it out.
    So if the Modal Plug In does not work properly, check the following:
    <li>Does every process that should close the window have a 'Success Message' defined?
    <li>In the unconditional branch, is "include process success message" checked?
    <li>In the dynamic action, is "Auto-close On Element Selector" set to "div.t1success" in the true action?
    BTW: The "shrinking problem" described in the first post still exists - in IE. In Firefox, it works fine.
    Best regards,
    Sabine

  • Skydrive for Mac crashes immediately after launch

    Skydrive for Mac crashes immediately after launch
    Hi and thanks in advance for your help.
    Recently when I launch Skydrive on Mac 10.8.3 it quits 2 seconds after launch. If I disconnect the internet connection Skydrive won't quit but the icon remains greyed out and the app waits for internet connection. If I switch to Guest user Skydrive launches properly. 
    Below are the things I have done but none have solved the problem:
    Deleted and reinstalled Skydrive (deleted using Cleanapp)
    Cleaned up the Mac using Onyx
    Reset PRAM
    Repaired permissions
    Checked Disk for errors
    Removed the Skydrive folder that syncs
    Removed all Login Items under Users and Groups
    Disabled firewall
    Added Skydrive in Firewall Options
    Installed the previous version of Skydrive
    Temporarily changed all the privileges of the app to Read and Write.
    And here is the error log: 
    Process:         SkyDrive [604] 
    Path:            /Applications/SkyDrive.app/Contents/MacOS/SkyDrive
    Identifier:      com.microsoft.skydrive-mac
    Version:         17.0 (2004.1119)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [162]
    User ID:         501
    Date/Time:       2013-04-17 13:25:52.741 +0100
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Crashed Thread:  6  Heartbeat
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff83f4a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff83f49c42 mach_msg + 70
    2   com.apple.CoreFoundation       0x00007fff8bda0233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation       0x00007fff8bda5916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation       0x00007fff8bda50e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox           0x00007fff8454deb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox           0x00007fff8454dc52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox           0x00007fff8454dae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit               0x00007fff899d6563 _DPSNextEvent + 685
    9   com.apple.AppKit               0x00007fff899d5e22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  com.apple.AppKit               0x00007fff899cd1d3 -[NSApplication run] + 517
    11  com.apple.AppKit               0x00007fff89971c06 NSApplicationMain + 869
    12  com.microsoft.skydrive-mac     0x00000001064dd197 main + 207
    13  com.microsoft.skydrive-mac     0x00000001064d5a34 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff83f4cd16 kevent + 10
    1   libdispatch.dylib             0x00007fff85049dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib             0x00007fff850499ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff83f4c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff8c242f4c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff8c242d13 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff8c22d1d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff83f4c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff8c242f4c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff8c242d13 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff8c22d1d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff83f4c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff8c242f4c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff8c242d13 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff8c22d1d1 start_wqthread + 13
    Thread 5:: BiciExperienceQueueTimer
    0   libsystem_kernel.dylib         0x00007fff83f4a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff83f49c42 mach_msg + 70
    2   com.apple.CoreFoundation       0x00007fff8bda0233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation       0x00007fff8bda5916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation       0x00007fff8bda50e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation           0x00007fff8d991f5e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.microsoft.MSCommon         0x000000010657fa6f -[MSTimerThread main:] + 286
    7   com.apple.Foundation           0x00007fff8d98ccd2 __NSThread__main__ + 1345
    8   libsystem_c.dylib             0x00007fff8c2407a2 _pthread_start + 327
    9   libsystem_c.dylib             0x00007fff8c22d1e1 thread_start + 13
    Thread 6 Crashed:: Heartbeat
    0   com.microsoft.MSSyncEngine     0x0000000106a128a2 AssertWorker(bool, wchar_t const*, unsigned int, char const*, wchar_t const*, wchar_t const*, ...) + 785
    1   com.microsoft.MSSyncEngine     0x00000001069fe1f7 getStrConfigVal(_ConfigFile*, wchar_t const*, wchar_t const*) + 208
    2   com.microsoft.MSSyncEngine     0x0000000106a2974a loadGlobalSettings() + 277
    3   com.microsoft.MSSyncEngine     0x0000000106a2a163 initClientCore(wchar_t const*) + 118
    4   com.microsoft.skydrive-mac     0x00000001064db96c -[coreController heartBeatThread:] + 323
    5   com.apple.Foundation           0x00007fff8d98ccd2 __NSThread__main__ + 1345
    6   libsystem_c.dylib             0x00007fff8c2407a2 _pthread_start + 327
    7   libsystem_c.dylib             0x00007fff8c22d1e1 thread_start + 13
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000000000015a  rcx: 0x00000000000fc080  rdx: 0x00000000000c62c0
      rdi: 0x0000000106e69e00  rsi: 0x0000000000000002  rbp: 0x000000010885a6e0  rsp: 0x0000000108859f70
       r8: 0x000000000000000a   r9: 0x000000001898ea5b  r10: 0x00007fd4f4930f90  r11: 0x00000000ed07f0fe
      r12: 0x0000000106b7fa70  r13: 0x0000000000000001  r14: 0x0000000106b73e04  r15: 0x0000000000000001
      rip: 0x0000000106a128a2  rfl: 0x0000000000010246  cr2: 0x000000010684b0e9
    Logical CPU: 2
    Binary Images:
           0x1064d4000 -        0x106535ff7 +com.microsoft.skydrive-mac (17.0 - 2004.1119) <03A9549D-5B5E-3FAE-9E99-BB73112934E4> /Applications/SkyDrive.app/Contents/MacOS/SkyDrive
           0x106574000 -        0x1065d0fff +com.microsoft.MSCommon (17.0 - 2004.1119) <A172952E-42F1-3BB6-A208-28EB3C3DC60C> /Applications/SkyDrive.app/Contents/Frameworks/MSCommon.framework/Versions/A/MS Common
           0x106615000 -        0x1068baff7 +com.microsoft.MSP2P (17.0 - 2004.1119) <42208214-0648-3110-A4F5-AB5296E9A880> /Applications/SkyDrive.app/Contents/Frameworks/MSP2P.framework/Versions/A/MSP2P
           0x1069f7000 -        0x106cdeff7 +com.microsoft.MSSyncEngine (17.0 - 2004.1119) <863C4A42-FD0A-3880-B1C2-F530FF5982E7> /Applications/SkyDrive.app/Contents/Frameworks/MSSyncEngine.framework/Versions/ A/MSSyncEngine
           0x108422000 -        0x108446ff7  com.apple.security.csparser (3.0 - 55179.11) <5C818B75-2844-3BDC-B8FA-79CE48C19931> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
        0x7fff660d4000 -     0x7fff6610893f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff8113b000 -     0x7fff812d6fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff812d7000 -     0x7fff816f4fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff817ef000 -     0x7fff81a24ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff81a25000 -     0x7fff81a82ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <D15F3FB3-BE53-3545-AD37-9A25A597FE3C> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff81a83000 -     0x7fff81a8afff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff81a8b000 -     0x7fff81ad5ff7  libGLU.dylib (8.7.25) <C243C6D3-3384-3DB1-BB15-E27B65C87294> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff81c21000 -     0x7fff81ec5ff7  com.apple.CoreImage (8.2.4 - 1.0.1) <4A6B017F-B9F7-36DA-943D-A95611F147EA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff81f0b000 -     0x7fff81f0bfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff81f0c000 -     0x7fff81f2dff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff828ff000 -     0x7fff829bcff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff829bd000 -     0x7fff829bdffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <173346B7-614C-380B-8E80-9BD1BE501674> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff82a16000 -     0x7fff82a17ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff82a18000 -     0x7fff82a27fff  com.apple.opengl (1.8.7 - 1.8.7) <26F7FF79-6BB2-3968-B70D-71D4E07C9551> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff82af7000 -     0x7fff82b19ff7  libxpc.dylib (140.42) <BBE558BD-5E55-35E4-89ED-1AA6B056D05A> /usr/lib/system/libxpc.dylib
        0x7fff82b54000 -     0x7fff82f4bfff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff82f4c000 -     0x7fff82f4cfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff82f4d000 -     0x7fff82f77ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff82fad000 -     0x7fff8303aff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff832f6000 -     0x7fff8332cfff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8332d000 -     0x7fff83334fff  libGFXShared.dylib (8.7.25) <869580B2-39CB-30C3-B76E-73BB4894B6B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff836c1000 -     0x7fff836d3ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff837ee000 -     0x7fff83815ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff83816000 -     0x7fff83872ff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff838c4000 -     0x7fff838c9fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8390e000 -     0x7fff83948ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff83949000 -     0x7fff8396bff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8396c000 -     0x7fff8396efff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8396f000 -     0x7fff83972fff  libRadiance.dylib (849) <F7D9A0FD-1195-34CB-BFE5-79DAF3F40AC3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff83973000 -     0x7fff839dcfff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff83c8c000 -     0x7fff83c90fff  libGIF.dylib (849) <6A664B4D-0A88-33F7-9064-0CD159AB9CE9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff83cce000 -     0x7fff83cdafff  libCSync.A.dylib (331.0.4) <C7043BB7-284D-3B9F-A5CB-78ADE691B2D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff83cdb000 -     0x7fff83edbfff  libicucore.A.dylib (491.11.2) <FD6282D8-DF3F-3842-8C2E-CF478D2B9669> /usr/lib/libicucore.A.dylib
        0x7fff83f3a000 -     0x7fff83f55ff7  libsystem_kernel.dylib (2050.22.13) <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
        0x7fff83f56000 -     0x7fff83f76fff  libPng.dylib (849) <F4C23A55-F17B-3E4F-9E80-BC97F778BA49> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff83f77000 -     0x7fff83fb4fef  libGLImage.dylib (8.7.25) <139A9892-A6F2-3F49-87FB-E7AC3F56E003> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83ffd000 -     0x7fff84003ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff84004000 -     0x7fff84011fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8409d000 -     0x7fff840abff7  libkxld.dylib (2050.22.13) <4AAF0573-8632-3D06-BE32-C5675F77638D> /usr/lib/system/libkxld.dylib
        0x7fff844ee000 -     0x7fff8481efff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8481f000 -     0x7fff84820ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff848cc000 -     0x7fff848f8ff7  libRIP.A.dylib (331.0.4) <4B261CE2-524E-3FA9-9437-B70DAC1EAB95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff84905000 -     0x7fff84905fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff84906000 -     0x7fff84927fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff84928000 -     0x7fff84933fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff84934000 -     0x7fff84983ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff84a76000 -     0x7fff84adefff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff84adf000 -     0x7fff84ae0fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff84e08000 -     0x7fff84e5dff7  libTIFF.dylib (849) <C4D0E196-9319-319B-AF72-8B63FB5AF71B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff84e5e000 -     0x7fff84e6cfff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff84e6d000 -     0x7fff84fbefff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <C680EE1A-B4ED-3E77-A08C-DC47922ACA33> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff84fbf000 -     0x7fff8503eff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8503f000 -     0x7fff85044fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff85045000 -     0x7fff8505aff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8519f000 -     0x7fff85245ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff85246000 -     0x7fff85249ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8524a000 -     0x7fff85278fff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff85279000 -     0x7fff852a1fff  libJPEG.dylib (849) <5C9052F6-D0B3-39CC-8302-468B43D694D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff852b7000 -     0x7fff852fbfff  libcups.2.dylib (327.3) <71E771A1-0489-3417-8A4A-56A2C930F80C> /usr/lib/libcups.2.dylib
        0x7fff852fc000 -     0x7fff8530afff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8530b000 -     0x7fff85480fff  com.apple.CFNetwork (596.3.3 - 596.3.3) <3739DC8D-8610-3740-80EC-43E130779CB8> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff856ec000 -     0x7fff856edff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff85736000 -     0x7fff85738fff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff85739000 -     0x7fff859d4fff  com.apple.JavaScriptCore (8536 - 8536.28.10) <BC911515-D051-3E2E-8E57-D36878407C60> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff859d5000 -     0x7fff85a70fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff85a71000 -     0x7fff85af2fff  com.apple.Metadata (10.7.0 - 707.5) <4140B1F6-7D73-33C7-B3F2-4DB349C31AE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff85af3000 -     0x7fff85be8fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff85be9000 -     0x7fff85d02fff  com.apple.ImageIO.framework (3.2.0 - 849) <C52AED41-A7C2-300B-91FA-5AF73718D243> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff85d03000 -     0x7fff85d5dff7  com.apple.opencl (2.2.18 - 2.2.18) <4A78E53C-17B0-3B2D-A9EA-EF8720FE4134> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff85d5e000 -     0x7fff85dafff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff85db2000 -     0x7fff85db6fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff85db7000 -     0x7fff85dcefff  libGL.dylib (8.7.25) <15F5CB64-847B-3D3D-9663-E0523F15F513> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff85dcf000 -     0x7fff85e3dfff  com.apple.framework.IOKit (2.0.1 - 755.22.5) <1547DA6F-9793-30A2-8E92-7368DE84D46C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff85e8a000 -     0x7fff85e90fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85e91000 -     0x7fff86116ff7  com.apple.RawCamera.bundle (4.04 - 680) <F9A2656C-CE71-326E-BD6D-077487F49D74> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff861e0000 -     0x7fff86223ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff86224000 -     0x7fff86226ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff86227000 -     0x7fff86329fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8632a000 -     0x7fff86332ff7  libsystem_dnssd.dylib (379.37) <616FC901-151E-38BF-B2C4-24A351C5FAAD> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff86333000 -     0x7fff86333fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff86338000 -     0x7fff86392fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff86393000 -     0x7fff863befff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff863c4000 -     0x7fff863c5fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff863c6000 -     0x7fff863d4ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff868fa000 -     0x7fff8690dff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8690e000 -     0x7fff86912ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff86913000 -     0x7fff869edfff  com.apple.backup.framework (1.4.2 - 1.4.2) <0B557393-CD2A-3076-BED2-F28D02E1EC1D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff869ee000 -     0x7fff879abfff  com.apple.WebCore (8536 - 8536.28.10) <89CDA119-0FC8-3D0E-87B8-AB96BE6D1A36> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff879ac000 -     0x7fff87ab7fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff87b8e000 -     0x7fff87d14fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff87d1a000 -     0x7fff87e3292f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff87e33000 -     0x7fff87e3afff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff87e3b000 -     0x7fff87e4eff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff87f86000 -     0x7fff88111ff7  com.apple.WebKit (8536 - 8536.28.10) <792FA1F3-68F2-36F8-A070-898B3682F5DE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff88112000 -     0x7fff8811dfff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8811e000 -     0x7fff8812dff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8812e000 -     0x7fff8813bfff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff881ca000 -     0x7fff881d5ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff881d6000 -     0x7fff8820cfff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff88290000 -     0x7fff88290fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff88291000 -     0x7fff882f0fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff88338000 -     0x7fff88369ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8842d000 -     0x7fff88433fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff88446000 -     0x7fff88446fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff88447000 -     0x7fff8845dfff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8845e000 -     0x7fff884c6ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff88760000 -     0x7fff88762fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff88763000 -     0x7fff88a7aff7  com.apple.CoreServices.CarbonCore (1037.5 - 1037.5) <731D8F92-1C52-3613-BA01-EFEA54DADF41> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff88a7b000 -     0x7fff88a90fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff88c8c000 -     0x7fff88c8cfff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88f9c000 -     0x7fff88fa0fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff89859000 -     0x7fff89876ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff89881000 -     0x7fff8a4aeff7  com.apple.AppKit (6.8 - 1187.37) <FAEA8B77-210F-3C0F-B9CF-85A7595CCA26> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8a4af000 -     0x7fff8a5cffff  com.apple.desktopservices (1.7.3 - 1.7.3) <707F77D2-EC0E-3431-840F-B984BD7ABDD6> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8adb6000 -     0x7fff8af64fff  com.apple.QuartzCore (1.8 - 304.2) <234EABE1-067C-3DAE-BEAC-674526E232C2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8af65000 -     0x7fff8afbcff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8afbe000 -     0x7fff8afc0ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8b019000 -     0x7fff8b040fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8b07c000 -     0x7fff8b07cfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8b0cf000 -     0x7fff8b1a1ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8b1a2000 -     0x7fff8b1c1ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8b406000 -     0x7fff8b45cfff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8b4b7000 -     0x7fff8b539ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8b595000 -     0x7fff8b5a9fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8b5f5000 -     0x7fff8b60cfff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8b60d000 -     0x7fff8b610fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8b770000 -     0x7fff8b79eff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8b79f000 -     0x7fff8b7abfff  com.apple.CrashReporterSupport (10.8.3 - 417) <48EDDDF3-5720-39D6-B51F-D9AFB93327B3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8b7ac000 -     0x7fff8b7cbff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8b7cc000 -     0x7fff8b7f1ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff8ba49000 -     0x7fff8ba95ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff8bae6000 -     0x7fff8bbe3ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8bbf0000 -     0x7fff8bca1fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8bd5c000 -     0x7fff8bd69ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8bd70000 -     0x7fff8bf5aff7  com.apple.CoreFoundation (6.8 - 744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8bf5d000 -     0x7fff8bfacff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8c074000 -     0x7fff8c139ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8c1ab000 -     0x7fff8c22bff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8c22c000 -     0x7fff8c2f8ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8c2f9000 -     0x7fff8c338ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8c37e000 -     0x7fff8c480fff  libJP2.dylib (849) <4EEA33EB-AF9F-365D-A572-F7D11AD1C76F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8c52c000 -     0x7fff8c52efff  libCVMSPluginSupport.dylib (8.7.25) <A45E21E3-4B40-39B0-A8B6-411526A84F47> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8c60f000 -     0x7fff8c613ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8c614000 -     0x7fff8c615ff7  libsystem_sandbox.dylib (220.2) <6838A6FD-8626-3356-BB4F-BB4787216207> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8c656000 -     0x7fff8c927ff7  com.apple.security (7.0 - 55179.11) <73958084-5BBC-3597-A751-7370B0C247E5> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8c928000 -     0x7fff8c931ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8c939000 -     0x7fff8c943fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8c945000 -     0x7fff8c945fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8c95d000 -     0x7fff8d2ed6ff  com.apple.CoreGraphics (1.600.0 - 331.0.4) <4953961C-96DC-39D7-ADF5-B767F2A7E4E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8d2ee000 -     0x7fff8d2effff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8d2f0000 -     0x7fff8d2f8fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8d2f9000 -     0x7fff8d3f6fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff8d653000 -     0x7fff8d696ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8d6f0000 -     0x7fff8d707fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8d708000 -     0x7fff8d70dfff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8d70e000 -     0x7fff8d712fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8d713000 -     0x7fff8d7adfff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8d7ae000 -     0x7fff8d81bff7  com.apple.datadetectorscore (4.1 - 269.2) <4FD4A7CE-BB00-3AAB-B7AA-AE395D5400EC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8d81c000 -     0x7fff8d8baff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8d8f7000 -     0x7fff8dc54ff7  com.apple.Foundation (6.8 - 945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 644
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=175.1M resident=153.8M(88%) swapped_out_or_unallocated=21.3M(12%)
    Writable regions: Total=69.7M written=3652K(5%) resident=4224K(6%) swapped_out=0K(0%) unallocated=65.5M(94%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                     8K
    CG shared images                    128K
    CoreServices                       1904K
    MALLOC                             41.7M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    STACK GUARD                        56.0M
    Stack                              11.0M
    VM_ALLOCATE                        16.1M
    __DATA                             13.6M
    __IMAGE                             528K
    __LINKEDIT                         54.6M
    __TEXT                            120.5M
    __UNICODE                           544K
    mapped file                        28.2M
    shared memory                       308K
    ===========                      =======
    TOTAL                             345.2M

    Back up all data.
    Quit the application, if it's running.
    Triple-click the line below to select it:
    ~/Library/Containers/com.microsoft.skydrive-mac.
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu. A Finder window should open with a folder selected. If it does, move the selected folder — not just its contents — to the Desktop.
    The folder you're moving has a name that begins with "com." It is not the subfolder named "Data" or anything else.
    Relaunch the problem application and test. If it works now, delete the folder you moved. Otherwise, quit again, and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.microsoft.SkyDriveLauncher
    Caution: If you delete some or all of the contents of the selected folder, but leave the folder itself in place, the application may not launch. Deleting the folder will cause it to be rebuilt automatically.

  • IChat crashes immediately after launching

    Hi there,
    I've already searched the forum a bit but did not found exactly what fits
    my problem. On a mac of a colleague (OSX Tiger 10.4.11 on PPC), iChat 3.1.8
    crashes immediately after launching the app. Strangely, the icon of the app
    has the same icon as iCal. I don't know why though ...
    What I've tried already: Starting with new prefs, deleting the plist-files
    in the preference folder of library. Searching for the iChat cache but did not
    found such a folder. Repairing the disc permissions ...
    Here, I've included the crash report. Hopefully, anyone can read the
    hieroglyphs
    Thanks very much in advance for your answer,
    Greetz,
    Sacha
    Date/Time: 2008-04-23 10:47:35.453 +0200
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: iChat
    Path: /Applications/iChat.app/Contents/MacOS/iChat
    Parent: WindowServer [59]
    Version: 3.1.8 (445)
    Build Version: 2
    Project Name: iChat
    Source Version: 4450000
    PID: 1730
    Thread: 0
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x92bff07c
    Thread 0 Crashed:
    0 com.apple.Foundation 0x92bff07c _NSRaiseError + 264
    1 com.apple.Foundation 0x92cb04c0 -[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:] + 96
    2 com.apple.iChat 0x00003d90 0x1000 + 11664
    3 com.apple.iChat 0x00003b7c 0x1000 + 11132
    4 libobjc.A.dylib 0x90a40650 class_initialize + 300
    5 libobjc.A.dylib 0x90a402fc classlookupMethodAndLoadCache + 132
    6 libobjc.A.dylib 0x90a401d4 objc_msgSend + 244
    7 com.apple.iChat 0x00003ac0 0x1000 + 10944
    8 com.apple.iChat 0x000038e0 0x1000 + 10464
    9 com.apple.AppKit 0x937af2ac -[NSCustomObject nibInstantiate] + 260
    10 com.apple.AppKit 0x93799cb4 -[NSIBObjectData instantiateObject:] + 188
    11 com.apple.AppKit 0x93799880 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 144
    12 com.apple.AppKit 0x93870904 old_loadNib + 244
    13 com.apple.AppKit 0x93785848 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 832
    14 com.apple.AppKit 0x937dcca4 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 156
    15 com.apple.AppKit 0x9386cb68 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 344
    16 com.apple.AppKit 0x9386c908 NSApplicationMain + 344
    17 com.apple.iChat 0x00003254 0x1000 + 8788
    18 com.apple.iChat 0x000770c8 0x1000 + 483528
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000092bff07c srr1: 0x100000000202f030 vrsave: 0x0000000000000000
    cr: 0x24000472 xer: 0x0000000000000000 lr: 0x0000000092bff054 ctr: 0x0000000092bc1124
    r0: 0x0000000000000000 r1: 0x00000000bffff5c0 r2: 0x00000000a2bbe508 r3: 0x00000000a2be2b88
    r4: 0x0000000090a4fff0 r5: 0x0000000092bc0704 r6: 0x00000000bffff1f4 r7: 0x00000000000000ff
    r8: 0x00000000bffff1e0 r9: 0x0000000000409a40 r10: 0x0000000090a3e628 r11: 0x0000000022000472
    r12: 0x0000000092bc1124 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000002 r17: 0x00000000a37b5508 r18: 0x00000000a37b5508 r19: 0x00000000a37b5508
    r20: 0x00000000a37b5508 r21: 0x0000000000000000 r22: 0x00000000a37b97f0 r23: 0x00000000a37c18b4
    r24: 0x00000000a37c00b4 r25: 0x0000000000000000 r26: 0x0000000000431c50 r27: 0x0000000000432040
    r28: 0x0000000000432130 r29: 0x00000000a2bc381c r30: 0x0000000000178b00 r31: 0x0000000092bfef84
    Binary Images Description:
    0x1000 - 0x172fff com.apple.iChat 3.1.8 (445) /Applications/iChat.app/Contents/MacOS/iChat
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.8 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b5bfff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b71000 - 0x90b83fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8a000 - 0x90e61fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec7000 - 0x90f47fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f91000 - 0x90fd3fff com.apple.CFNetwork 129.22 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d44fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d49000 - 0x91d4cfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4e000 - 0x91e2cfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4c000 - 0x91e4cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4e000 - 0x91f33fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3b000 - 0x91f5afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc6000 - 0x92034fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203f000 - 0x920d4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ee000 - 0x92676fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a9000 - 0x929d4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a04000 - 0x92af2fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af5000 - 0x92b7dfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbe000 - 0x92de9fff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f16000 - 0x92f34fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3f000 - 0x92f99fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb7000 - 0x92fb7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb9000 - 0x92fcdfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe5000 - 0x92ff5fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93001000 - 0x93016fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93028000 - 0x930affff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c3000 - 0x930cefff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d8000 - 0x93105fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311f000 - 0x9312efff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93702000 - 0x93722fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93775000 - 0x93775fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93777000 - 0x93daafff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94137000 - 0x941a9fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e2000 - 0x942a7fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942fa000 - 0x942fafff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942fc000 - 0x944bcfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94506000 - 0x94543fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9454b000 - 0x9459bfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a4000 - 0x945b8fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945fd000 - 0x94642fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9464e000 - 0x94686fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946cb000 - 0x946e7fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x946fb000 - 0x9473ffff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x947ed000 - 0x94a57fff com.apple.QuickTime 7.0.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c2e000 - 0x94d5efff com.apple.AddressBook.framework 4.0.6 (488) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94df1000 - 0x94e00fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e08000 - 0x94e35fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94e3c000 - 0x94e4cfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94e50000 - 0x94e7ffff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94e8f000 - 0x94eacfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x951fb000 - 0x9526afff com.apple.Bluetooth 1.9.5 (1.9.5f4) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x955ce000 - 0x95689fff com.apple.WebKit 523.12 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x956f2000 - 0x957a5fff com.apple.JavaScriptCore 523.12 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x957cd000 - 0x95d4afff com.apple.WebCore 523.12 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95fd4000 - 0x96045fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x972be000 - 0x972ddfff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9794e000 - 0x97973fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97c5e000 - 0x97c5ffff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x98465000 - 0x9858cfff com.apple.viceroy.framework 273.7.12 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x98d42000 - 0x98d45fff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9a288000 - 0x9a293fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a29e000 - 0x9a3f7fff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Model: PowerMac11,2, BootROM 5.2.7f1, 2 processors, PowerPC G5 (1.0), 2 GHz, 2.5 GB
    Graphics: NVIDIA GeForce 6600LE, GeForce 6600LE, PCI, 128 MB
    Memory Module: DIMM0/J6700, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM1/J6800, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM2/J6900, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM3/J7000, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Network Service: Ethernet intégré 1, Ethernet, en0
    PCI Card: GeForce 6600LE, Display, SLOT-1
    PCI Card: bcom5714, network, GIGE
    PCI Card: bcom5714, network, GIGE
    Serial ATA Device: WDC WD1600JS-41MVB1, 149.05 GB
    Parallel ATA Device: HL-DT-ST DVD-RW GWA-4165B
    USB Device: USB HUB, EIZO, Up to 480 Mb/sec, 500 mA
    USB Device: EIZO USB HID Monitor, EIZO, Up to 12 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Logitech, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

    By the last version of Tiger (10.4.11), iChat should be updated along with the OS Update to 3.1.9
    At 10.4.10 it was one less like you quoted (iChat version 3.1.8).
    My mistake about what you posted at first.
    However where you say it is working the specs don't add up here.
    I would still run the Combo Installer at the OS level you are at.
    10:46 PM Friday; May 2, 2008

Maybe you are looking for