Dual contention

To reduce the dual contention(concurrency and locking) very senior oracle guy has suggested instead of calling database for SELECT USER FROM SYS.DUAL run the code something like
code
declare
     v_user_name varchar2(30):=USER;
begin
     dbms_output.put_line('User is:'||lv_user_name);
end;
Futher he says that it will be resolve at plsql engine and will resolve the contention. However when i taken the trace of 10046 in background i found the entry of SELECT USER FROM SYS.DUAL their. Though the statement is not logging on v$sql still plsql running the SELECT USER FROM SYS.DUAL in background. So how the contention is going to reduce which oracle guy claimed.
Any ideas on these will be highly appreciated.
regards,
Rajib Sutradhar

This seems a bizarre suggestion to me.
Obviously this relates to [url https://forums.oracle.com/forums/thread.jspa?threadID=2268705&tstart=0]your other thread for contention on this statement.
As you know the USER function in PLSQL executes SELECT USER FROM SYS.DUAL, so I can't understand how any resolution to suspected contention on this statement can involve running that same statement IN ADDITION TO a bit of superfluous plsql.
But I'd be interested to know the thinking behind it.

Similar Messages

  • [11g] increasing efforts for select xmlserialize(content(...))) into ... from dual

    I wonder, that i don't get any feedback here (please see below).
    Can somebody first just confirm this observation?
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    "CORE 11.2.0.3.0 Production"
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    NLSRTL 11.2.0.3.0 Production
    Oracle Database 11g Enterprise Edition 11.2.0.3.0 64bit Production
    PL/SQL 11.2.0.3.0 Production
    TNS for Linux: 11.2.0.3.0 Production
    I recognized for my application, that there is an increasing efforts (in terms of time) for executing
    (in a pl/sql package procedure invoked by a BIU trigger)
    SELECT XMLSERIALIZE(CONTENT(p_xml_data)) INTO v_xml_clob FROM DUAL;
    Here is a little demo sqlplus script:
    create or replace package test_pkg
    as
           procedure check_xml(
             p_xml_data in out nocopy xmltype);
    end;
    create or replace package body test_pkg
    as
           procedure log(
             p_txt in varchar2)
           is
             ts     TIMESTAMP WITH TIME ZONE := systimestamp;
           begin
             dbms_output.put_line(to_char(ts, 'hhmiss.FF3') || ':' || p_txt);
           end;
           procedure check_xml(
             p_xml_data in out nocopy xmltype)
           is
             v_xml_clob CLOB;
             v_len NUMBER;
           begin
             log('check_xml(): enter');
             SELECT XMLSERIALIZE(CONTENT(p_xml_data)) INTO v_xml_clob FROM DUAL;
             log('  serialized');
             v_len := dbms_lob.getlength(v_xml_clob);
             log('check_xml(): done - length = #'  || v_len);
           exception
           when others then
               oerror_pkg.set_ora_error;
               raise;
           end;
    end;
    drop table test_table;
    create table test_table(
           tid number(19,0),
           data xmltype
    create or replace trigger BIU_TEST_TABLE
    before insert or update on test_Table
    for each row
    declare
    begin
       test_pkg.check_xml(:new.data);
    end;
    insert into test_table(tid, data)
    select ctr_tab.ctr, '<root><node>' || ctr_tab.ctr || '</node></root>'
    from (  SELECT LEVEL ctr
           FROM dual
           CONNECT BY LEVEL <= 200) ctr_tab;
    The output is going like this
    021543.204:check_xml(): enter
    021543.204:  serialized
    021543.204:check_xml(): done - length = #32
    021543.206:check_xml(): enter
    021543.206:  serialized
    021543.206:check_xml(): done - length = #32
    021543.207:check_xml(): enter
    021543.208:  serialized
    021543.208:check_xml(): done - length = #32
    021543.209:check_xml(): enter
    021543.210:  serialized
    021543.210:check_xml(): done - length = #32
    021543.211:check_xml(): enter
    021543.212:  serialized
    021543.212:check_xml(): done - length = #32
    021543.214:check_xml(): enter
    021543.214:  serialized
    021543.214:check_xml(): done - length = #32
    021549.625:check_xml(): enter
    021549.664:  serialized
    021549.665:check_xml(): done - length = #34
    021549.708:check_xml(): enter
    021549.746:  serialized
    021549.747:check_xml(): done - length = #34
    021549.791:check_xml(): enter
    021549.829:  serialized
    021549.830:check_xml(): done - length = #34
    021549.874:check_xml(): enter
    021549.912:  serialized
    021549.913:check_xml(): done - length = #34
    When i filter it with a little perl script to extract the efforts (xmlserialize / dbms_lob.getlength):
    0 / 0
    0 / 0
    1 / 0
    1 / 0
    1 / 0
    0 / 0
    0 / 0
    0 / 1
    1 / 0
    0 / 0
    0 / 1
    1 / 0
    0 / 0
    0 / 1
    1 / 0
    0 / 1
    0 / 1
    0 / 0
    0 / 1
    0 / 0
    0 / 1
    0 / 0
    1 / 0
    0 / 1
    0 / 0
    31 / 1
    31 / 1
    32 / 1
    32 / 1
    32 / 1
    33 / 0
    33 / 0
    34 / 1
    34 / 0
    34 / 1
    34 / 0
    34 / 1
    34 / 1
    35 / 1
    35 / 1
    36 / 0
    36 / 1
    36 / 1
    37 / 1
    37 / 0
    37 / 1
    38 / 0
    38 / 0
    39 / 1
    38 / 1
    38 / 1
    38 / 1
    Unfortunately i can't easily change the way the insert from select is done (legacy code not under my control)
    Can someone tell me, if there is a way starting with the trigger to avoid those increasing efforts?
    - many thanks!
    best regards,
    Frank

    [ Addendum - 24.01.2014:
      This only worked for the test/demo program. It didn't work for my application.
       For my application i really had to move the logic to the INSERT before the trigger
       - similar to the 3rd posting for my monologue(!) here.
    A little step further:
    I also don't have the problem if i expand the code of the PROCEDURE test_pkg.check_xml(...) directly into the trigger
    - instead of invoking the PROCEDURE in the trigger:
    create or replace package test_pkg
    as
           procedure log(
             p_txt in varchar2);
    end;
    create or replace package body test_pkg
    as
           procedure log(
             p_txt in varchar2)
           is
             ts     TIMESTAMP WITH TIME ZONE := systimestamp;
           begin
             dbms_output.put_line(to_char(ts, 'hhmiss.FF3') || ':' || p_txt);
           end;
    end;
    drop table test_table;
    create table test_table( 
           tid number(19,0),
           data xmltype
    create or replace trigger BIU_TEST_TABLE
    before insert or update on test_Table
    for each row
    declare
    begin 
      -- test_pkg.check_xml(:new.data);
           declare
             v_xml_clob CLOB;
             v_len NUMBER;
           begin
             test_pkg.log('check_xml(): enter');
             SELECT XMLSERIALIZE(CONTENT(:new.data)) INTO v_xml_clob FROM DUAL;
             test_pkg.log('  serialized');
             v_len := dbms_lob.getlength(v_xml_clob);
            test_pkg.log('check_xml(): done - length = #'  || v_len);
           exception
           when others then
               oerror_pkg.set_ora_error;
               raise;
           end;
       end; 
    insert into test_table(tid, data)
    select ctr_tab.ctr, '<root><node>' || ctr_tab.ctr || '</node></root>'
    from (  SELECT LEVEL ctr
           FROM dual
           CONNECT BY LEVEL <= 200) ctr_tab;
    -- rollback;
    That gives some hint.
    Does oracle have some problem / limit for invoking procedures (functions) from triggers?
    Or only if those use certain features?
    An issue about deterministic and re-entrance?
    Well, that boxes me into a corner.
    Because the single package procedure implements a functionality at a central place - i.e. a single central place to extend it or to fix it.
    If i now have to expand its content (like a macro) into the triggers of the respective table i am in trouble.
    Because those tables (and their triggers) are dynamically generated by a compiler tool of a c++ client.
    This means for extension and fixes i need to change, test, deliver and deploy a list of c++ client processes :-(
    Is there any way around?
    How can i inform oracle that the invocation of a PL/SQL procedure is functionally identically with expanding the PL/SQL functions code into the trigger?
    rgds,
    Frank

  • Enq: TX - row lock contention on dual

    Dear Team,
    In my database i can see lots of enq: TX wait in dual
    SID MODULE SQL_ID EVENT SECONDS_IN_WAIT BLOCKING_SESSION STATUS
    2944 IAPPRAISOR_V20.fmx 5pjx5pj5xsmn7 enq: TX - row lock contention 38 2920 ACTIVE
    3050 IAPPRAISOR_V20.fmx enq: TX - row lock contention 769 2915 ACTIVE
    3071 IAPPRAISOR_V20.fmx 5pjx5pj5xsmn7 enq: TX - row lock contention 38 2920 ACTIVE
    3097 IAPPRAISOR_V20.fmx enq: TX - row lock contention 767 3050 ACTIVE
    3117 IAPPRAISOR_V20.fmx 5pjx5pj5xsmn7 enq: TX - row lock contention 572 3319 ACTIVE
    SQL> select * from table(dbms_xplan.display_awr('5pjx5pj5xsmn7'));
    PLAN_TABLE_OUTPUT
    SQL_ID 5pjx5pj5xsmn7
    SELECT SYSDATE FROM SYS.DUAL
    Plan hash value: 1546270724
    | Id | Operation | Name | Rows | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | | 2 (100)| |
    | 1 | FAST DUAL | | 1 | 2 (0)| 00:00:01 |
    Is there any idea why select on sys.dual putting execlusive lock? Database version 10.2.0.5.
    Thanks and Regards,
    Rajib Sutradhar

    Show us the result of
    set linesize 120
    set trimspool on
    select * from v$lock where sid = 'sid of holding session'l;
    select * from v$lock where sid = 'sid of one waiting session'l;Please read the note below about readable output.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    To post code, statspack/AWR report, execution plans or trace files, start and end the section with the tag {noformat}{noformat} (lowercase, curly brackets, no spaces) so that the text appears in fixed format.
    There is a +"Preview"+ tab at the top of the text entry panel. Use this to check what your message will look like before you post the message. If it looks a complete mess you're unlikely to get a response. (Click on the +"Plain text"+ tab if you want to edit the text to tidy it up.)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Problem maximising content in CS 6 /Windows 7 with dual display

    Maximising content  on my primary screen (2560x1440) does not work to full extent as long as  navigator/info/properties or histogram  is open on lower resolution (1920x1080) secondary screen. This does not occur on CS5.
    Graphics card firepro 4800. First screen:displayport (30bit) second screen DVI. Any ideas?

    Maximising by using Ctrl+0 is what I was trying to say!

  • Want to degrade project quality & force content to fit on a dual layer disk

    I have a project that is around 19 GB in size, according to my DVDSP 3 meter. I want to degrade the quality of the video and force it to fit on a dual layer disk. Is this possible? Or, should I send the project to Toast and compress it there, forcing it to fit?
    Here's a description of the project:
    I have 240 small 100 MB clips to compile on a dual layer DVD. (It is a teaching DVD).
    Any help would be greatly appreciated.

    Jake sorry did not see your post till just now...
    Hi Drew, not sure why you are saying use 1-Pass CBR and to drop the bitrate really low?
    In the past for very static things, such as text or what I though the poster was describing, I found that a CBR works better than a VBR. I am 99.99% sure that Perry was the one who mentioned that way back when and I tried it and it worked nicely, so have been running with it ever since. (Periodically I go back to run some more tests, and so far it has pretty much held true at least for me.)
    I think of it this way (and I know you know this stuff:), more from how my head wrapped around it, and was thinking of the more general DVD SP description of VBRs as mentioned below) - in general, if there are no changes between the frames, VBR is not going to allocate different rates since each from uses the same rate, 2 Pass primarily is looking for areas of motion. So for what I thought what was described, CBR would seem the way to go.
    Though of course if some sections have more color, etc, maybe it is worth it, for instance one segment has three big color circles on the white board vs just one circle.
    The DVD SP guide mentions it is looking for motion areas, though the Compressor guide indicates it is broader than that, so I guess I was thinking more of the motion search as oppossed to detailed areas since it seemed fairly static with not much detail - linear graphics and marks, and then followed through on time of encoding vs possible quality increase.
    And the budget idea is the way to go.
    Time to rewrap my head

  • Dual Core Content to a Quad Core

    What is the easiest way to take my Dual Core MacPro and transfer all my files to a Quad Core Mac Pro. I have a co-worker who has left and I was going to consolidate my Ram and files to his computer and build a super computer. There are some programs I have that he doesn't and I want to really want to take all my "guts" and put it in his body haha.
    Thanks

    You won't have any trouble with the documents - just remove the disk from one computer and put it in the other. Software, however, is a different thing: in most cases you can't just copy it from one computer to the other and you will have to install it. If you have Adobe software you must deauthorize the software first before you can reinstall it.

  • What do i need to do to share TB and Lightning files between W7 and Ubuntu 14.04 on a dual boot system?

    I recently installed Ubuntu 14.04 alongside W7. Since I'm not comfortable dropping Windows completely yet, I want my W7 Thunderbird and my Ubuntu TB to have access to the same data file holding current messages, so I don't have to get out of one to use TB on the other. I rely on Lightning and also want my reminders to be consistent from either OS. I have a separate NTFS data partition which, I understand, can be used to house the profile directory (though I've not seen that as a solution for Lightning).
    In trying to set it up, I've run into questions that I can't find a good answer for -- want sources that address the problem and are recent. I'm pretty patient, and I can stumble through a lot of things (like learningn about partitions). But I'm not a programmer, and this start-stop-sort-through-dozens-of-old-incomplete-and-irrelevant-answers process is frustrating. (Nor do I lift the hood and tune my own car engine.) I also recognize that some things I want to do aren't necessarily common, so they're not at the top of anyone's "tell the world how to do this" list.
    1. My profiles directory has 6 *.default files. I assume the current one is the most recent. Do I need the older ones? How did I get them, since I've never knowingly created a new one? I'm the only user of my machine and thus the only user for TB.
    2. I saw the following before setting up the dual boot system, so it's likely not related -- but if someone who knows TB well can comment I'll appreciate it: when I view All folders, I see 58(!) folders with names nstmp-##. The contents overlap with normally-named folders, but the sets of messages are not identical. Do these indicate a problem and/or should I change something? Does this have to do with compacting or archiving, neither of which I do? Never saw the need, and never saw an article saying that they're important. I just want to use mail and reminders. And BTW I've been using TB/Lightning for years and am Very happy with them, so I want to keep using them.
    3. Is there a way to set up Lightning to hit the same data file(s) on my data partition? Or somewhere? Where are Lightning's files? I remember one source mentioned linking to "storage.sdb", but (1) I can't find the reference again, and (2) links to some of my files don't always work. Broken links aren't Mozilla's problem, but someone might know how to geet around the problem for the sake of Lightning. Also, storage.sdb and calendar* directories exist inside my *.default profile directory -- so why would I need to link anything? Are these not where calendar data is stored? If not, where?
    I'd rather understand the reasons behind recommended procedures ("do A because Y is how Lightning/TB works" -- vs "do A, then B, then C...and it will/should(!) work."). But if you can point me to a clear procedure that will get me where I want to go, that will be enough.
    Last, the following two URLs looked like they would help but don't -- so you don't need to point me to them again:
    http://kb.mozillazine.org/Sharing_a_profile_between_Windows_and_Linux -- this is only 2 years old but:
    (1) it only says that "settings" specify file locations, without saying which settings. Stumbling around, I found "Local directories" under Server Settings. For more detail the page refers to an article that's 10 years old. Neither source says which subdirectory under *.default should be the target. The older one references ".../mail", but when I enter that value in Local Directories under Ubuntu, nothing shows up. When I went down one more level to "/Local Folders", the folders appear and the new-message counts seem(!) ok. But I also got a couple "folder missing...will adjust filters" messages. I never got those under Windows. So am I good to go, or am I missing messages?
    (2) The above page only says that Lightning is a "potential problem", with no suggestion of a solution or link to a discussion. Searching results in many hits, but I haven't found anything helpful.
    http://ubuntuforums.org/showthread.php?t=1624973 -- this looked promising, but the comments are dated 2009-2010, deal with ubuntu 10 and XP, and don't seem to address my problem -- unless I'm not savvy enough to recognize it, which is entirely possible.
    Thanks for any insights.

    Lightning is a problem for you because it hooks into Thunderbird at a low level and you need a version compiled for the platform Thunderbird is running on. So you can't do the preferred solution, which is to put your whole profile in a shared folder and have both instances of Thunderbird reference the same profile. (Ditto for Enigmail). Lightning may become an integral part of Thunderbird in an upcoming release, at which point this limitation due to Lightning should disappear.
    And if you can't use a shared profile, you can't set your Lightning, or your Address Book, to share a common set of files. Put another way, the linkage from Thunderbird to its address book files and calendar data is hard-coded, and not exposed where we can adjust it. :-(
    The halfway house is to place your mail stores in a shared place, and use the Local Directory setting in each account's settings to connect to it. They don't need to be in the profile; what's more important in your case is that they are in a folder accessible to both operating systems.
    Look in your profile; everything under Mail and ImapMail needs to be moved out to a shared folder. Note the entries in Thunderbird under Local Directory before you do this, and reconstruct those pathnames in Thunderbird, but adjusted to suit their new locations.
    (You can see here that you need to make many adjustments, one per account, in each instance of Thunderbird, so it's a high-maintenance solution and this is why we don't recommend it when the alternative, moving the whole profile, is possible.)
    I share address books and calendars between Thunderbirds on various computers (and my phone and tablet) by syncing to something in the cloud; Google Contacts and Google Calendar are my choices, using gContactSync and CalDav.
    Having made the break myself some years ago, I'd recommend you break away from Windows. ;-)

  • Won't charge, won't sync new content...

    Long story short here... my iPod stopped working about 4 months ago. Meanwhile, the computer it was synched on, my Vista computer, went belly up. I drug my old XP computer out of the closet and booted it to satisfy my surfing needs. Meanwhile, there were a few files on my iPod - 2G iTouch - that I wanted to see if I could upload onto the XP. Lo and behold, when I plugged it into the USB port it started to charge. Once it was charged, I had to update the software (as I said it was about 4 months) and then it asked me if I wanted to authorize this computer (the XP) for use with this device and I said "yes". It transfered all of the purchased files to the XP, but ONLY the purchased files, it would transfer none of the photos and none of the music that came from non-iTunes sources.
    Well, this is where things went kinda haywire.
    While fussing with the Vista computer I did manage to get it to boot, and when that happened I plugged the iTouch into it and it started to synch. However, it also totally wiped out EVERYTHING except aps and photos. And it stopped charging when plugged into any other computer but the Vista. But as the Vista will only boot once every 20 or so tries I don't want to fuss with it much until I can get it fixed, so I managed one more synch and this time it restored all my music to the iPod touch.
    However... it still won't charge on any other computer. When I plug it in to the XP it will synch (I get the "synch in progress" on both the iTunes and the device) however if I try to put any music from the XP on to the iTouch it won't upload, and the battery will ONLY charge when plugged into the Vista. I've tried to reset it (I thought it worked the first time but looking back I think it was only because it was on the Vista) twice but right now its still sitting at 2/3 battery life, and it has been that way for about a day and a half.
    I know this sounds convoluted...I guess to "nutshell" it: All my music is on my iTouch and on the Vista, and my iTouch will only charge when plugged into the Vista. It will synch but not update via the XP and it will not charge, nor will it charge on any other cable (even plugged into the wall), nor will it upload any new content (ie music files I've had previously on the XP computer).
    Any suggestions?
    Message was edited by: dedawen

    Charging the Battery takes at least 2 hours using the High Power USB2.0 port at the back of your Desktop, or via a USB Wall Charger, (dont use 10W iPad Charger unless it is dual port with a max 5Watt outlet)
    If you have a new battery fitted, go back to the shop and ask them to solve the problem, most likely poor connection.
    Have a nice day!

  • RH 8 crashes on Save All when copying content between two open projects

    [Win XP SP2] I've submitted a bug report for this issue. Note that RH does seem to save the content as it's dying (a very noble act, I must say), but the behavior is bothersome.
    ******BUG******
    With two instances of RH8 running (dual monitors), and copying content from one project to another, the instance receiving the added content crashes when you click Save All.
    Steps:
    1. Open RH 1
    2. Open RH 2
    3. Copy content in RH 2 and paste it into RH 1
    4. In RH 1, click Save All
    Results: RH 1 crashes (RH 2 does not)
    Expected Result: RH 1 does not crash

    I would try another one with each of these documents.
    Create a new document with 2 pages.
    Name the master pages so, that their names are not conflicting with neither of these 2 document’s masters.
    Delete every style in that empty document, also any swatch
    No drag the pages of the first document into such an empty document.
    Do the same step 1 to 4 with the second document in a NEW empty document.
    Now you have 2 new documents. Take care that no conflicting master names appear.
    In each of these documents create in each style panel a folder and drag all used styles in that folder.
    Save both documents
    Try again to insert the pages of both documents.
    Otherwise, it this does not work out, could you send me via private message the files or a link. I would check it with a Debugging Version of InDesign (InDesign DEV) I can use to find errors.

  • Safari 5.1.6 quits unexpectedly - Safari Web Content

    I am running 10.7.4
    Here is the Crash Report log:
    Process:         WebProcess [8599]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         7534.56 (7534.56.5)
    Build Info:      WebKit2-7534056005000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  Safari [8286]
    Date/Time:       2012-06-27 22:30:45.341 -0700
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          5297 sec
    Crashes Since Last Report:           52
    Per-App Interval Since Last Report:  114 sec
    Per-App Crashes Since Last Report:   51
    Anonymous UUID:                      FD9BE12C-3C87-4CD9-A230-B4E275A601C6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000001c2
    VM Regions Near 0x1c2:
    -->
        __TEXT                 000000010452d000-000000010452e000 [    4K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Application Specific Information:
    objc[8599]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.WebCore                       0x0000000104aded76 WebCore::FrameView::setTransparent(bool) + 4
    1   com.apple.WebKit2                       0x00007fff8905a3ca WebKit::WebFrameLoaderClient::transitionToCommittedForNewPage() + 218
    2   com.apple.WebCore                       0x0000000104add4d5 WebCore::FrameLoader::transitionToCommitted(***::PassRefPtr<WebCore::CachedPage >) + 639
    3   com.apple.WebCore                       0x0000000104adc97b WebCore::FrameLoader::commitProvisionalLoad() + 395
    4   com.apple.WebCore                       0x0000000104adc7bd WebCore::DocumentLoader::finishedLoading() + 57
    5   com.apple.WebCore                       0x0000000104adb257 WebCore::FrameLoader::init() + 903
    6   com.apple.WebKit2                       0x00007fff8905758c WebKit::WebFrame::init(WebKit::WebPage*, ***::String const&, WebCore::HTMLFrameOwnerElement*) + 162
    7   com.apple.WebKit2                       0x00007fff89056364 WebKit::WebFrame::createMainFrame(WebKit::WebPage*) + 96
    8   com.apple.WebKit2                       0x00007fff8906441b WebKit::WebPage::WebPage(unsigned long long, WebKit::WebPageCreationParameters const&) + 1863
    9   com.apple.WebKit2                       0x00007fff8905de1b WebKit::WebPage::create(unsigned long long, WebKit::WebPageCreationParameters const&) + 47
    10  com.apple.WebKit2                       0x00007fff890745d5 WebKit::WebProcess::createWebPage(unsigned long long, WebKit::WebPageCreationParameters const&) + 101
    11  com.apple.WebKit2                       0x00007fff8909c66e void CoreIPC::handleMessage<Messages::WebProcess::CreateWebPage, WebKit::WebProcess, void (WebKit::WebProcess::*)(unsigned long long, WebKit::WebPageCreationParameters const&)>(CoreIPC::ArgumentDecoder*, WebKit::WebProcess*, void (WebKit::WebProcess::*)(unsigned long long, WebKit::WebPageCreationParameters const&)) + 144
    12  com.apple.WebKit2                       0x00007fff88ff0c32 CoreIPC::Connection::dispatchMessage(CoreIPC::Connection::Message<CoreIPC::Argu mentDecoder>&) + 172
    13  com.apple.WebKit2                       0x00007fff88ff0b4b CoreIPC::Connection::dispatchMessages() + 145
    14  com.apple.WebKit2                       0x00007fff88fed8a3 RunLoop::performWork() + 111
    15  com.apple.WebKit2                       0x00007fff88fed814 RunLoop::performWork(void*) + 76
    16  com.apple.CoreFoundation                0x00007fff8563b4f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    17  com.apple.CoreFoundation                0x00007fff8563ad5d __CFRunLoopDoSources0 + 253
    18  com.apple.CoreFoundation                0x00007fff85661b49 __CFRunLoopRun + 905
    19  com.apple.CoreFoundation                0x00007fff85661486 CFRunLoopRunSpecific + 230
    20  com.apple.HIToolbox                     0x00007fff84aaa4d3 RunCurrentEventLoopInMode + 277
    21  com.apple.HIToolbox                     0x00007fff84ab16d3 ReceiveNextEventCommon + 181
    22  com.apple.HIToolbox                     0x00007fff84ab160e BlockUntilNextEventMatchingListInMode + 62
    23  com.apple.AppKit                        0x00007fff8a607e31 _DPSNextEvent + 659
    24  com.apple.AppKit                        0x00007fff8a607735 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    25  com.apple.AppKit                        0x00007fff8a604071 -[NSApplication run] + 470
    26  com.apple.WebKit2                       0x00007fff8907763b WebKit::WebProcessMain(WebKit::CommandLine const&) + 553
    27  com.apple.WebKit2                       0x00007fff8905dc30 WebKitMain + 272
    28  com.apple.WebProcess                    0x000000010452de56 0x10452d000 + 3670
    29  com.apple.WebProcess                    0x000000010452dd64 0x10452d000 + 3428
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff88a5e7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff8ef1a78a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8ef1931a _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff88a5e192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8dedc594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8deddb85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff88a5e192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8dedc594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8deddb85 start_wqthread + 13
    Thread 4:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff88a5dbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8dede274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010498178d JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 493
    3   com.apple.JavaScriptCore                0x00000001049819e0 JSC::MarkStackThreadSharedData::markingThreadMain() + 272
    4   com.apple.JavaScriptCore                0x0000000104981a89 JSC::MarkStackThreadSharedData::markingThreadStartFunc(void*) + 9
    5   libsystem_c.dylib                       0x00007fff8deda8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8deddb75 thread_start + 13
    Thread 5:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff88a5dbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8dede274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010498178d JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 493
    3   com.apple.JavaScriptCore                0x00000001049819e0 JSC::MarkStackThreadSharedData::markingThreadMain() + 272
    4   com.apple.JavaScriptCore                0x0000000104981a89 JSC::MarkStackThreadSharedData::markingThreadStartFunc(void*) + 9
    5   libsystem_c.dylib                       0x00007fff8deda8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8deddb75 thread_start + 13
    Thread 6:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff88a5dbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8dede274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010498178d JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 493
    3   com.apple.JavaScriptCore                0x00000001049819e0 JSC::MarkStackThreadSharedData::markingThreadMain() + 272
    4   com.apple.JavaScriptCore                0x0000000104981a89 JSC::MarkStackThreadSharedData::markingThreadStartFunc(void*) + 9
    5   libsystem_c.dylib                       0x00007fff8deda8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8deddb75 thread_start + 13
    Thread 7:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff88a5dbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8dede274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010470aaa7 ***::ThreadCondition::timedWait(***::Mutex&, double) + 151
    3   com.apple.JavaScriptCore                0x000000010498a0cc JSC::Heap::blockFreeingThreadMain() + 300
    4   com.apple.JavaScriptCore                0x000000010498a109 JSC::Heap::blockFreeingThreadStartFunc(void*) + 9
    5   libsystem_c.dylib                       0x00007fff8deda8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8deddb75 thread_start + 13
    Thread 8:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff88a5dbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8dede274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010470aa50 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                       0x0000000104ad0fda ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore                       0x0000000104ad0f33 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore                       0x0000000104ad0e7b WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff8deda8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8deddb75 thread_start + 13
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff88a5c67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88a5bd71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8565950c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff85661c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff85661486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff8b2fcfd7 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff8b2f172a -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff8b2f16a2 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff8deda8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8deddb75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000105fb4400  rbx: 0x0000000105f15170  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x0000000000000000  rsi: 0x0000000000000000  rbp: 0x00007fff6412ab40  rsp: 0x00007fff6412ab40
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000105fcef00  r11: 0x0000000105fcef98
      r12: 0x0000000105fad000  r13: 0x00007fff6412af90  r14: 0x0000000105f48b00  r15: 0x00007fff730a0ad0
      rip: 0x0000000104aded76  rfl: 0x0000000000010202  cr2: 0x00000000000001c2
    Logical CPU: 3
    Binary Images:
           0x10452d000 -        0x10452dfff  com.apple.WebProcess (7534.56 - 7534.56.5) <70906893-775B-3246-92A6-9E900347BF6E> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
           0x104531000 -        0x104531fff  WebProcessShim.dylib (534.56.5 - compatibility 1.0.0) <1B38F4F6-F0F5-355A-898B-2E84414DD375> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x104700000 -        0x104a22fff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <519848A3-D6C0-3CF8-B2E4-D4B41FD91E76> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
           0x104ab2000 -        0x1057e9fef  com.apple.WebCore (7534.57 - 7534.57.2) <0DDABF2E-FF0F-3E94-8EC5-A48F613211AE> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
           0x10745d000 -        0x1075e7ff7  com.apple.WebKit (7534.57 - 7534.57.2) <F0E93391-BD24-3180-9FC8-66003896A654> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
        0x7fff6412d000 -     0x7fff64161baf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
        0x7fff822d6000 -     0x7fff822d7fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff822db000 -     0x7fff8231cfff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff82a05000 -     0x7fff82a10fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff82a3d000 -     0x7fff82af0ff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff82e14000 -     0x7fff82e31ff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff82e32000 -     0x7fff82e5dff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff82e5e000 -     0x7fff82e61ff7  com.apple.securityhi (4.0 - 1) <D0ABB03B-CEF9-39E0-A139-AA9484DBBC07> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff82e62000 -     0x7fff82e63ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff82e64000 -     0x7fff82e72fff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff82e73000 -     0x7fff82eb5fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff83146000 -     0x7fff833b9fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff833d6000 -     0x7fff833ffff7  com.apple.framework.Apple80211 (7.2.1 - 721.3) <4BA49D6F-373B-3F4E-A2B3-453C2ED66318> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8340c000 -     0x7fff8340dfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8343d000 -     0x7fff83521e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff83522000 -     0x7fff83534ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff83535000 -     0x7fff83535fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff83536000 -     0x7fff83615ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff83616000 -     0x7fff83678ff7  com.apple.Symbolication (1.3 - 91) <0945ACAF-AA0A-3D01-9960-72B51722EC1F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff83c3a000 -     0x7fff83c40fff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8400d000 -     0x7fff84023ff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff84039000 -     0x7fff849d6c9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff84aa8000 -     0x7fff84dd4ff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff84dd5000 -     0x7fff84ed7ff7  com.apple.PubSub (1.0.5 - 65.28) <D469FB50-8AAF-3C00-8733-6B2269DB334B> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff853f3000 -     0x7fff853f4ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff8556e000 -     0x7fff85575fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff85576000 -     0x7fff855b6fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff855b7000 -     0x7fff855c1ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
        0x7fff85629000 -     0x7fff857fdff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8597b000 -     0x7fff859f1fff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
        0x7fff859f2000 -     0x7fff859fbff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff859fc000 -     0x7fff859fffff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff85a00000 -     0x7fff85a2bff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff85a2c000 -     0x7fff85aa2fff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff85aa3000 -     0x7fff85ca5fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff85ca6000 -     0x7fff85e0dfff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff85e0e000 -     0x7fff85e34fff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff85e35000 -     0x7fff85e3aff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff85f3e000 -     0x7fff85f41fff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff85f47000 -     0x7fff85fddff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff860d9000 -     0x7fff8614cfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8614d000 -     0x7fff86155fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8618c000 -     0x7fff861ceff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff861cf000 -     0x7fff861f8fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff861f9000 -     0x7fff861ffff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff86200000 -     0x7fff86233ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff86234000 -     0x7fff86238ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff86244000 -     0x7fff8625bfff  com.apple.CFOpenDirectory (10.7 - 146) <BBB7C97E-7B46-3286-9128-32B5D16B5CBE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8625c000 -     0x7fff86689fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8668a000 -     0x7fff8668cfff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff866e1000 -     0x7fff8672ffff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff86730000 -     0x7fff86735fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff86736000 -     0x7fff867bbff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff867bc000 -     0x7fff867e9fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <DA79E5BA-BBA3-3768-AAD8-B34BA877EF03> /usr/lib/libSystem.B.dylib
        0x7fff867ea000 -     0x7fff86809fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8680a000 -     0x7fff86866ff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8691a000 -     0x7fff8697afff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8697b000 -     0x7fff869c4ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.2) <5E421E2D-50EA-340E-A5EE-C848DD6FC34F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff869c5000 -     0x7fff86a04fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff86a05000 -     0x7fff86a6efff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff86e99000 -     0x7fff86e9efff  com.apple.OpenDirectory (10.7 - 146) <7960A302-F9AC-3F72-838E-3A382032DCA6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff86e9f000 -     0x7fff86ea1fff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff87bda000 -     0x7fff87d10fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff87d11000 -     0x7fff87d95ff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff87d96000 -     0x7fff87e9dfe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff87e9e000 -     0x7fff87ea4fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff87ea5000 -     0x7fff87ea5fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff87f0d000 -     0x7fff87f10fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff87f11000 -     0x7fff87f17fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff87f18000 -     0x7fff884fcfff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff884fd000 -     0x7fff889c4fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff88a47000 -     0x7fff88a67fff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
        0x7fff88a68000 -     0x7fff88a68fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff88a69000 -     0x7fff88a70fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff88a71000 -     0x7fff88a84ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff88a85000 -     0x7fff88a8cff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff88a8d000 -     0x7fff88a9dff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff88b39000 -     0x7fff88b3efff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff88b5f000 -     0x7fff88c04fff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff88d90000 -     0x7fff88e9dfff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff88ebc000 -     0x7fff88ec1fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff88ec2000 -     0x7fff88ec7fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88ec8000 -     0x7fff88ec8fff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff88ec9000 -     0x7fff88f04fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff88f05000 -     0x7fff88f88fef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff88f89000 -     0x7fff88f98ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff88fd8000 -     0x7fff89190fff  com.apple.WebKit2 (7534.56 - 7534.56.5) <3391ED70-7855-3238-AAB4-461828BDDBFB> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff89191000 -     0x7fff89191fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff89192000 -     0x7fff89192fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff89193000 -     0x7fff891a5ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff891a6000 -     0x7fff891e0fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff899bf000 -     0x7fff899c1fff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
        0x7fff899ec000 -     0x7fff89ab3ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff89ab4000 -     0x7fff89ab4fff  com.apple.Carbon (153 - 153) <16EA5662-5C2C-3267-B419-66669AE536D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff89ab5000 -     0x7fff89baafff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff89c8a000 -     0x7fff89da3fff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8a55f000 -     0x7fff8a55ffff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8a5be000 -     0x7fff8a5feff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
        0x7fff8a5ff000 -     0x7fff8b205ff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8b206000 -     0x7fff8b23bfff  com.apple.securityinterface (5.0 - 55022.4) <09EC371E-0B6E-3849-A6C9-F8E9DB17BBCD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8b23c000 -     0x7fff8b240fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8b241000 -     0x7fff8b243ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8b297000 -     0x7fff8b5b0fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8b5b4000 -     0x7fff8b5dcfff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8b60b000 -     0x7fff8b60cff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8b60d000 -     0x7fff8b622fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8b623000 -     0x7fff8b64cfff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8b64d000 -     0x7fff8b65cfff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
        0x7fff8b66b000 -     0x7fff8b688fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff8b689000 -     0x7fff8b68afff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff8b68b000 -     0x7fff8b790fff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8b791000 -     0x7fff8b791fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8b792000 -     0x7fff8b931ff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8b941000 -     0x7fff8b965fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8b9b3000 -     0x7fff8ba54ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8bc75000 -     0x7fff8bca2ff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8bca3000 -     0x7fff8c133ff7  com.apple.Safari.framework (7534 - 7534.56.5) <D5D17AA3-4866-3022-8D3A-E302D1DE10DD> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff8c2dd000 -     0x7fff8c331ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8c755000 -     0x7fff8c7d0ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8c80c000 -     0x7fff8c823fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8c830000 -     0x7fff8c83bff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8c83c000 -     0x7fff8c83dfff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff8c83e000 -     0x7fff8c84fff7  SyndicationUI (??? - ???) <856E0534-389F-3DCD-9A9D-2947E45156AF> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff8c9f0000 -     0x7fff8ca8aff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8ca8b000 -     0x7fff8caa1fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8caca000 -     0x7fff8cde6fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8d13b000 -     0x7fff8d1ddfff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8d1de000 -     0x7fff8d1e9ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8d1ea000 -     0x7fff8d23cff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8d254000 -     0x7fff8d53dff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8d53e000 -     0x7fff8d552ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8d599000 -     0x7fff8d5e5ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8d7e9000 -     0x7fff8d809fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8d83b000 -     0x7fff8d947fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8da8b000 -     0x7fff8da91fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8dbca000 -     0x7fff8dc3afff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8dd08000 -     0x7fff8ddecfff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8dded000 -     0x7fff8de2cff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8de6f000 -     0x7fff8de8bff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8de8c000 -     0x7fff8df69fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff8df6a000 -     0x7fff8df6dfff  libMatch.1.dylib (??? - ???) <42305BB6-25F9-355A-9076-FED38B21A7F9> /usr/lib/libMatch.1.dylib
        0x7fff8df6e000 -     0x7fff8dfc2fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8e03b000 -     0x7fff8e0a3ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <C6703B2E-62F2-37C4-A4DE-28AF9C81CB44> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8e0b2000 -     0x7fff8e0bfff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <DFAB8CA8-CC9D-3F58-8C12-CE120442AACD> /usr/lib/libbz2.1.0.dylib
        0x7fff8e0c0000 -     0x7fff8e0c4fff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
        0x7fff8e0c5000 -     0x7fff8e1c7fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff8e97e000 -     0x7fff8e9a2fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8e9a3000 -     0x7fff8e9cbfff  libsandbox.1.dylib (??? - ???) <0D46379D-BCD1-3888-9ED7-513F79D3970A> /usr/lib/libsandbox.1.dylib
        0x7fff8e9cc000 -     0x7fff8eb25fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8eb35000 -     0x7fff8ed5ffe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8ed60000 -     0x7fff8ed6dfff  com.apple.CrashReporterSupport (10.7.4 - 352) <9C16B49C-CF02-38F9-A7CD-969C140D3961> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8ee6f000 -     0x7fff8ee9fff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8eea0000 -     0x7fff8ef16fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8ef17000 -     0x7fff8ef25fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
        0x7fff8ef26000 -     0x7fff8ef91ff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8efc2000 -     0x7fff8efd0ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
        0x7fff8f247000 -     0x7fff8f29ffff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        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: 63784
        thread_create: 2
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=174.7M resident=153.5M(88%) swapped_out_or_unallocated=21.3M(12%)
    Writable regions: Total=1.1G written=4476K(0%) resident=5204K(0%) swapped_out=0K(0%) unallocated=1.1G(100%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG shared images                      128K
    CoreServices                         1480K
    JS JIT generated code               128.0M
    JS JIT generated code (reserved)    896.0M        reserved VM address space (unallocated)
    JS VM register file (reserved)       4096K        reserved VM address space (unallocated)
    JS garbage collector                   16K
    MALLOC                               41.9M
    MALLOC guard page                      32K
    Memory tag=242                         12K
    SQLite page cache                     384K
    STACK GUARD                          56.0M
    Stack                                12.6M
    VM_ALLOCATE                            80K
    __CI_BITMAP                            80K
    __DATA                               15.0M
    __IMAGE                               528K
    __LINKEDIT                           54.4M
    __TEXT                              120.3M
    __UNICODE                             544K
    mapped file                          15.7M
    shared memory                         308K
    ===========                        =======
    TOTAL                                 1.3G
    TOTAL, minus reserved VM space      447.4M
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 7 GB, SMC 1.7f10
    Graphics: ATI Radeon HD 5770, ATI Radeon HD 5770, PCIe, 1024 MB
    Memory Module: DIMM Riser A/DIMM 1, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x830B, 0x4E54353132543732553839413842442D3343
    Memory Module: DIMM Riser A/DIMM 2, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x830B, 0x4E54353132543732553839413842442D3343
    Memory Module: DIMM Riser B/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x3138484631323837324A4436363742354433
    Memory Module: DIMM Riser B/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x3138484631323837324A4436363742354433
    Memory Module: DIMM Riser B/DIMM 3, 2 GB, DDR2 FB-DIMM, 667 MHz, 0x02FE, 0x4542453231464434414846542D36452D4520
    Memory Module: DIMM Riser B/DIMM 4, 2 GB, DDR2 FB-DIMM, 667 MHz, 0x02FE, 0x4542453231464434414846542D36452D4520
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.131.36.15)
    Bluetooth: Version 4.0.5f11, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: ATI Radeon HD 5770, sppci_displaycontroller, Slot-1
    PCI Card: ATI Radeon HD 5770, ATY,HoolockParent, Slot-1
    Serial ATA Device: ST3500320AS, 500.11 GB
    Serial ATA Device: ST3500630AS, 500.11 GB
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: ST3000DM001-9YN166, 3 TB
    Parallel ATA Device: _NEC DVD_RW ND-4570A
    USB Device: hub_device, 0x050d  (Belkin Corporation), 0x0237, 0xfd500000 / 4
    USB Device: Microsoft IntelliMouse® Optical, 0x045e  (Microsoft Corporation), 0x0039, 0xfd530000 / 9
    USB Device: AK5370, 0x0556  (Asahi Kasei Microsystems Co., Ltd), 0x0001, 0xfd570000 / 8
    USB Device: Hub in Apple Extended USB Keyboard, apple_vendor_id, 0x1003, 0xfd510000 / 7
    USB Device: Apple Extended USB Keyboard, apple_vendor_id, 0x020b, 0xfd513000 / 10
    USB Device: CanoScan, 0x04a9  (Canon Inc.), 0x220e, 0xfd540000 / 6
    USB Device: hub_device, apple_vendor_id, 0x9122, 0xfd400000 / 3
    USB Device: Apple Cinema HD Display, apple_vendor_id, 0x921e, 0xfd420000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8206, 0x5d200000 / 2
    FireWire Device: built-in_hub, 800mbit_speed
    FireWire Device: iSight, Apple Computer, Inc., 200mbit_speed
    FireWire Device: unknown_device, unknown_speed

    Nothing obvious in that crash.  So some suggestions...
    1. If safari stays up long enough turn off all the extensions you have added to it.
    2. If you have any external devices (USB and firewire) temporarily disconnect them.

  • How do I move content from one file to another ?

    Hi,
    I have two separate DVD Studio Pro files that I created a while back (single-sided DVD).
    Now I want to put them both on a dual layer DVD. However, I can't figure out for the life of me how to copy content between files. I don't want to "recreate" one of the DVDs from scratch.
    How do I move the menus, tracks, stories, etc from one DVD Studio Pro file to another ?
    Thanks,
    Damon

    You do not need to move the media into the new project assuming all the media is available and on the same hard drive. Usually I keep all DVD SP projects and media on an external drive so it is easy-ish to do. Of course if you copy the assets into the folder for a project it makes thingss easier to move around to other drives. In other words I will create a Poject folder called "MYPROJECT" and in there I will placefolders "MYPROJECTM2Vs", "MYPROJECTAC3S", "MYPROJECTGRAPHICS" etc so if I have to move projects to other computers easier to re-link. Takes up a bit more room if you use the same asset in more than one project but with the costs of Drives so low right now it is worth the lkess hassle to me...
    What is the error you are getting?

  • How to HD content into Apple TV

    How do you HD video on the Apple TV?
    What are users doing to do this?
    (The only source I have see is the download movie trailiers (720p) via the Apple site)

    Here is one way to get high quality HD content onto your AppleTV for little more than buckets full of your time and storage. (There are much more space efficient ways, but this is the easiest to document here.)
    Programs Required: EyeTV 2 + ATSC Tuner (for recording HD OTA broadcasts), MPEG Streamclip, JES Deinterlacer, QT Pro
    For 1080i Content
    1. Record over the air HD broadcast via EyeTV Hybrid or something similar.
    2. Using MPEG Streamclip output a QT movie using MotionJPEG or PhotoJPEG as the CODEC. You can also use MPEG Streamclip to scale down to 720i at this step. NOTE: Do Not deinterlace the footage yet!
    This step creates a massive new file but the quality is stellar. (Ex. 23gb for one 22min 720p television show.)
    3. Taking your newly created monster file, use this as your source file for JES Deinterlacer and choose “Inverse Telecine” as the project. JES Deinterlacer is a great, free tool that allows you to easily do an inverse telecine on many types of footage. This is the best way to convert 30fps footage back to 24fps. 24fps is also a requirement for QT Pro to keep HD footage at HD resolutions when using the Export to AppleTV preset. (I.e. Even if your footage is 720p it will downconvert to SD if the frame rate is anything other than 24fps or 23.98fps.) JES will create another gargantuan file of equal size and quality to your first file, but now it will be in perfect-looking progressive scan, 24fps. More detailed instructions on this tool are available in its help file.
    4. Take your 2nd gargantuan file, and compress it via QT Pro using the AppleTV preset and voila, you have a great HD file that is just as good looking as any of the HD trailers on Apple.
    For 720p Content
    1. Record over the air HD broadcast via EyeTV Hybrid or something similar.
    2. Using MPEG Streamclip output a QT movie using MotionJPEG or PhotoJPEG as the CODEC.
    This step creates a massive new file but the quality is stellar. (Ex. 23gb for one 22min 720p television show.)
    3. Taking your newly created monster file, use this as your source file for JES Deinterlacer and Choose “reinterlace” as the project. JES will create another gargantuan file of equal size and quality to your first file, but now it will be in 720i. (JES Deinterlacer requires the input footage to be interlaced, hence the additional step. This doesn’t degrade your video.)
    3. Taking your 3rd newly created monster file, go back into JES Deinterlacer and choose “Inverse Telecine” as the project. JES will create the final mountain of a file in 24fps.
    4. Take your last gargantuan file, and compress it via QT Pro using the AppleTV preset.
    Be warned, this process can take hours even on a dual core processor Mac, but it will give you some shows and movie that will make your AppleTV shine.
    Black Macbook   Mac OS X (10.4.9)   Mac Mini (Intel), AppleTV, FCS

  • Family Pack Leopard install fails G4 Dual 1.2Ghz

    All, I purchased the Leopard family pack and have successfully installed it on an Intel Macbook Pro and a G5 2.3Ghz DP machine - flawless, no problems during installation or after.
    However, any attempt to install on a G4 Dual 1.2Ghz + 2Gb of RAM + just bought a Seagate 500Gb Barracuda internal drive (well within the designated technical requirements), I've tried the following.
    1. Booting the G4 off the Leopard install DVD, I get the following error: Failed Install message = "The Installer could not validate the contents of the Essentials Package...".
    I can never get beyond this point. After receiving this error, the internal disk isn't even recognized on the bus - I have to pull the disk out, put it in an external case to reformat it. I've even tried a low level format and also had Seagate replace the disk thinking it was defective.
    2. I then thought it may be an issue with putting the Seagate disk in cable select mode versus master / slave configuration. The Seagate is the only hard drive in the machine. I have tried both cable select and master/slave configuration - both freeze after install, etc. without fail.
    3. Tried installing Leopard on the G4 by connecting it to the G5 in target disk mode. It installed, but routinely just freezes (NEVER had this issue with Tiger on this machine).
    I do see lots of people posting issues with the "The Installer could not validate the contents of the Essentials Package..." error.
    For the record, after successful Leopard install using technique #1 and #3 - I am also unable to run the Migration assistant - it fails every time with a kernel panic. I'm not having any trouble with the Leopard install media on any of the other 2 machines, nor did I have issues running the migration assistant.
    Any ideas are appreciated. thx,

    themdg - you said you put back your 2-512 original RAM cards and tried to install Leopard and the install failed. But my original, factory-installed RAM was third-party RAM which prevented me from installing Leopard, giving the “essentials” error. Only when I purchased RAM from Apple, and used only that RAM to install, could I get it to work correctly.
    Check your original RAM. If it is not the Apple brand, it may not work because of that, even if it was the factory-installed RAM.
    After I installed Leopard with only the Apple RAM, I added back the third-party RAM and I’ve been running Leopard flawlessly since.
    It seems the installation software, which meticulously checks the installer disk for flaws, should also check the RAM to see if the installation will be successful (i.e., check to see if it is going to produce the “essentials” error) and also check to see if you have enough valid RAM to install, before it begins installation, and to let the user know there will be a problem unless the RAM is changed to valid cards.
    I “assumed” I had enough valid RAM when I first tried to install Leopard because I had a G5, but it had only 256 MB of non-Apple brand RAM (minimum of 512 is required). A direct check of that by the installer and letting me know it was a problem would have saved me a lot of trouble checking lots of other potential problems, like a bad installer disk, a third-party drive, etc., before I figured out it was insufficient and incompatible RAM for the installation.
    I read the minimal requirements for installation of Leopard and probably someone will say I should have checked all those before I tried the installation, but I didn’t, as I’m sure many others have not, because we “assume” Apple had tested it and would prevent us from making any mistake like this.
    Previously Apple made their software and hardware to “just work” by providing error messages before we made an error and we have come to rely on that. But they overlooked this problem on this update. It’s the first time I’ve had a problem with an update from Apple.
    I’m still a loyal Apple user, but I’ll check requirements a little closer with future updates.

  • How to Convert the content in BLOB field into a PDF file...

    Hi,
    I am having PDF files stored in BLOB column of a table in Oracle Database (11G R2).
    I want to retrieve the files back and store them in hard disk. I am successful in storing the content as a file with '.doc' but if I store the file as '.pdf', adobe fails to open the file with error
    Adobe Reader could not open file 'xxx.pdf' because it is either not a supported file type or because the file has been damaged (for example it was sent as an email attachment and wasn't correctly decoded)
    I am using following example code to achieve my goal...
    Declare
    b blob;
    c clob;
    buffer VARCHAR2(32767);
    buffer_size CONSTANT BINARY_INTEGER := 32767;
    amount BINARY_INTEGER;
    offset NUMBER(38);
    file_handle UTL_FILE.FILE_TYPE;
    begin
    select blob_data into b from blobdata where id=1;
    c := blob2clob(b);
    file_handle := UTL_FILE.FOPEN('BLOB2FILE','my_file.pdf','w',buffer_size);
         amount := buffer_size;
         offset := 1;
         WHILE amount >= buffer_size
         LOOP
              DBMS_LOB.READ(c,amount,offset,buffer);
              -- buffer:=replace(buffer,chr(13),'');
              offset := offset + amount;
              UTL_FILE.PUT(file_handle,buffer);
              UTL_FILE.FFLUSH(file_handle);
         END LOOP;
         UTL_FILE.FCLOSE(file_handle);
    end;
    create or replace FUNCTION BLOB2CLOB ( p_blob IN BLOB ) RETURN CLOB
    -- typecasts BLOB to CLOB (binary conversion)
    IS
    || Purpose : To Convert a BLOB File to CLOB File
    || INPUT : BLOB File
    || OUTPUT : CLOB File
    || History: MB V5.0 24.09.2007 RCMS00318572 Initial version
    ln_file_check NUMBER;
    ln_file_size NUMBER;
    v_text_file CLOB;
    v_binary_file BLOB;
    v_dest_offset INTEGER := 1;
    v_src_offset INTEGER := 1;
    v_warning INTEGER;
    lv_data CLOB;
    ln_length NUMBER;
    csid VARCHAR2(100) := DBMS_LOB.DEFAULT_CSID;
    V_LANG_CONTEXT NUMBER := DBMS_LOB.DEFAULT_LANG_CTX;
    BEGIN
    DBMS_LOB.createtemporary (v_text_file, TRUE);
    SELECT dbms_lob.getlength(p_blob) INTO ln_file_size FROM DUAL;
    DBMS_LOB.converttoclob (v_text_file, p_blob, ln_file_size, v_dest_offset, v_src_offset, 0, v_lang_context, v_warning);
    SELECT dbms_lob.getlength(v_text_file) INTO ln_length FROM DUAL;
    RETURN v_text_file;
    END;

    user755667 wrote:
    Hi,
    I am having PDF files stored in BLOB column of a table in Oracle Database (11G R2).
    I want to retrieve the files back and store them in hard disk. I am successful in storing the content as a file with '.doc' but if I store the file as '.pdf', adobe fails to open the file with error
    Adobe Reader could not open file 'xxx.pdf' because it is either not a supported file type or because the file has been damaged (for example it was sent as an email attachment and wasn't correctly decoded)
    I am using following example code to achieve my goal...
    Declare
    b blob;
    c clob;
    buffer VARCHAR2(32767);
    buffer_size CONSTANT BINARY_INTEGER := 32767;
    amount BINARY_INTEGER;
    offset NUMBER(38);
    file_handle UTL_FILE.FILE_TYPE;
    begin
    select blob_data into b from blobdata where id=1;
    c := blob2clob(b);
    file_handle := UTL_FILE.FOPEN('BLOB2FILE','my_file.pdf','w',buffer_size);
         amount := buffer_size;
         offset := 1;
         WHILE amount >= buffer_size
         LOOP
              DBMS_LOB.READ(c,amount,offset,buffer);
              -- buffer:=replace(buffer,chr(13),'');
              offset := offset + amount;
              UTL_FILE.PUT(file_handle,buffer);
              UTL_FILE.FFLUSH(file_handle);
         END LOOP;
         UTL_FILE.FCLOSE(file_handle);
    end;
    create or replace FUNCTION BLOB2CLOB ( p_blob IN BLOB ) RETURN CLOB
    -- typecasts BLOB to CLOB (binary conversion)
    IS
    || Purpose : To Convert a BLOB File to CLOB File
    || INPUT : BLOB File
    || OUTPUT : CLOB File
    || History: MB V5.0 24.09.2007 RCMS00318572 Initial version
    ln_file_check NUMBER;
    ln_file_size NUMBER;
    v_text_file CLOB;
    v_binary_file BLOB;
    v_dest_offset INTEGER := 1;
    v_src_offset INTEGER := 1;
    v_warning INTEGER;
    lv_data CLOB;
    ln_length NUMBER;
    csid VARCHAR2(100) := DBMS_LOB.DEFAULT_CSID;
    V_LANG_CONTEXT NUMBER := DBMS_LOB.DEFAULT_LANG_CTX;
    BEGIN
    DBMS_LOB.createtemporary (v_text_file, TRUE);
    SELECT dbms_lob.getlength(p_blob) INTO ln_file_size FROM DUAL;
    DBMS_LOB.converttoclob (v_text_file, p_blob, ln_file_size, v_dest_offset, v_src_offset, 0, v_lang_context, v_warning);
    SELECT dbms_lob.getlength(v_text_file) INTO ln_length FROM DUAL;
    RETURN v_text_file;
    END;I skimmed this and stopped reading when i saw the BLOB to CLOB function.
    You can't convert binary data into character based data.
    So very likely this is your problem.

  • "No Content" constantly in iPod on iPhone 3G

    My iPhone 3G shows "No Content" when I go to the iPod app, even though it's loaded with music, videos and podcasts.
    This has been happening to me for the last 6 months or so, and now it's
    happening all the time. So much so, that I can't use my iPhone to listen to music or podcasts because it always says "No Content". I'm starting to think this is a plot to force me to upgrade to an iPhone 4...
    If I restore I get the media back, for about 3 days. Then it goes back to No Content. And when I restore, it doesn't restore all of the apps I have installed, even though I backup right before I restore... So every time I restore I have to go through the hassle of re-installing all the apps it didn't restore.
    So far the only thing that fixes it without restoring it is if I sync calendar and contacts on my work computer (WinXP Pro, iTunes 10.0.1), then I get the media back in iPod. Problem is, I sync podcasts at home, so I can listen to them on the drive to work. But as soon as I sync at home, I lose the media again, until I get to work. Not a workable solution in the least.
    Here are some data points:
    - iPhone 3G (not 3GS) on AT&T
    - Running the latest firmware (4.1)
    - Latest version of iTunes on Windows 7 Pro
    - NOT jailbroken currently
    - 67 Applications
    - 14.5GB capacity, 9.2GB free
    I have tried a few tricks suggested in various places, like creating a new playlist and syncing it to the iPhone, and deleting certain config files on the host computer and allowing iTunes to recreate those. None of those work for me.
    Other than this issue, the iPhone works fine and I'm not going to replace it. If anyone can help me with this, PLEASE let me know! It would be great if Apple would admit this is an issue and actually try to fix it, but I don't expect much...
    Thanks for your help!

    Good question. The wierd thing is, I only get the "No Content" message when I sync with my home computer, which is where the content is. When I sync with my work computer, it then shows the content which was synced from the home computer...
    The other clue that tells me this isn't related to the work computer thing is that, after I restore I don't sync with my work computer at all. Then, after a few days it goes back to the "No Content" message. Then I sync with my work computer just so I can consume my media. So the dual-sync thing doesn't come into play until after I start getting that message...
    If I just couldn't sync with my work computer it wouldn't be the end of the world, even though I've been doing that on iPods and my iPhone for years... But I am just not convinced that it would make any difference, and the phone should support the ability (at least it always has until the last 6 months)...

Maybe you are looking for

  • Tagging Artists /// Album Artist

    Friends, happy new year everyone. I've never understood the difference between the tagging options artists and *album artists* which are listed in windows folder options. Apparently iTunes does not recognize any difference, since it uses the default

  • Remote for Audig

    My dog chewed up the remote for my Audigy 2. It's the RM-000 model. Anyone have any idea on how to go about getting a replacement?

  • External Hard Drive will not copy/open files.

    Today, I went to edit photos on my iMac. I have a 1tb G-Drive Mobile that I have been using lately to store photos/videos on. I last used the hard drive this past friday, 4/4/2014. When I opened Lightroom to open my photos the whole program froze. I

  • Wrong ibook display size

    to the forum: I just purchased a second hand ibook. It came with Tiger installed and no original system disks. (The CPU is a 700 MHz PowerPCG3 and there is 640MB of ram) Although I didn't do much with the machine under Tiger, everything seemed to be

  • Errors with Scripted Fill

    this is a question-i seem to be haveing problems with my PS-CC WHEN I GO TO THE FILL BOX AND TRY TO GET A TREE OR FRAME I GET ERRORS SOMETHING ABOUT WIDGETS NOT WORKING AND I ALSO GET THIS SORT OF THING IN AUTOMATE/CAN I RELOAD A NEW PHOTOSHOPcc and