Apex_application.g_fXX and collection problem

Hello all!
In the midst of writing my second apex application, it appears I need to use apex_application functionality to meet my requirements and am seeking assistance.
I have a table/report with a column link (item_id) and a second column (as a text field) (there are more columns displayed), but I think they are irrelevant to this situation) populated with a value QTY (c002) from a collection where c001 = item_id. What I'm attempting to do is allow someone to enter a qty in the c002 text field, apply the qty change to the collection and reload the page displaying the new quantity value in the report when the column link (image) is selected (page redirects to itself).
Since it appears that column links are not a SUBMIT, I've put my collection update plsql in a before header process. According to the debug output, this collection insert is executed long before the rendering of the report.
This is my report plsql;
declare
l_query varchar2(4000) := '';
begin
l_query := 'select i.INVENTORY_ID, col.c002, ql.QUANTITY_AVAILABLE, i.STRAIN_CODE, i.STRAIN_NAME, i.GENOTYPE, i.AGE, i.SEX, ql.ROOM_NUMBER from SM_INVENTORY i, SM_QUANTITY_LOCATION ql, apex_collections col where ql.STRAIN_ID = i.STRAIN_ID(+) and col.collection_name (+)= ''ORDER'' and col.c001 (+)= i.INVENTORY_ID';
end;
This is my update collection plsql (I don't have the insert part yet, but my collection already contains values);
declare col_item_count number;
col_seq number;
item_id number;
qty number;
begin
if apex_collection.collection_exists('ORDER') = FALSE then
apex_collection.create_collection( p_collection_name => 'ORDER');
commit;
end if;
for i in 1..apex_application.g_f01.count
loop
item_id := apex_application.g_f01(i);
qty := apex_application.g_f02(i);
select count(c001),seq_id into col_item_count, col_seq
from apex_collections
where c001 = item_id
and collection_name = 'ORDER';
group by c001, seq_id;
if col_item_count > 0 then
apex_collection.update_member(
p_collection_name => 'ORDER',
p_seq             => col_seq,
p_c001 => item_id,
p_c002 => qty);
commit;
end if;
end loop;
end;
Given all this, my collection entry is not updated with the new value of c002 displayed in my report text field.
Be advised, I've not found documentation about the apex_application package of sufficient detail to allow me to comprehend exactly what gets put into the apex_application.g_fXX values or when, but based on what I've gathered from examples/blogs, I think it contains the report in the currently rendered page, but I honestly don't know.
Given my assumptions, I'm expecting apex_application.g_f01(1) would be the first row item_id of my report and apex_application.g_f01(2) would be the first row c002 (qty from my collection) of my report. If this is correct, I would expect this would work.
What might I have missed?
Thanks!
Paul
PS. Honestly, is this methodology the only/easiest way to get my requirement/functionality to work? Is there an easier way?

OK, tried this - not yet successful. This is what I've got.
Classic report loaded by;
declare
l_query varchar2(4000) := '';
begin
l_query := 'select i.INVENTORY_ID, i.INVENTORY_ID inv_id_hold, col.c002, ql.QUANTITY_AVAILABLE, i.STRAIN_CODE, i.STRAIN_NAME, i.GENOTYPE, i.AGE, i.SEX, ql.ROOM_NUMBER from SM_INVENTORY i, SM_QUANTITY_LOCATION ql, apex_collections col where ql.STRAIN_ID = i.STRAIN_ID(+) and col.collection_name (+)= ''ORDER'' and col.c001 (+)= i.INVENTORY_ID';
end;
Created a "SAVE" button.
Set up column inv_id_hold as a hidden tab form element and col.c002 as a text field tab form element (item_id and qty respectively). These should now be available as apex_application.g_f01 and apex_application.g_f02 (right?).
I have this post submit plsql in a process conditioned to the "SAVE" button.
declare col_item_count number;
col_seq number;
item_id number;
qty number;
begin
if apex_collection.collection_exists('ORDER') = FALSE then
apex_collection.create_collection( p_collection_name => 'ORDER');
end if;
for i in 1..apex_application.g_f01.count
loop
item_id := apex_application.g_f01(i);
qty := apex_application.g_f02(i);
select count(c001),seq_id into col_item_count, col_seq
from apex_collections
where c001 = apex_application.g_f01(i)
and collection_name = 'ORDER';
--group by c001, seq_id;*
if col_item_count > 0 then
apex_collection.update_member(
p_collection_name => 'ORDER',
p_seq             => col_seq,
p_c001 => item_id,
p_c002 => qty);
else
apex_collection.add_member(
p_collection_name => 'ORDER',
p_c001 => item_id,
p_c002 => qty);
end if;
end loop;
end;
When I enter something in my qty column and press SAVE, I get "ORA-01403: no data found" being thrown by the plsql process (per debug). Since everything is going on "under the hood" and there is no step debugger in apex, I'm not able to see/understand the process in action and determine where the problem is occurring.
I got the idea for all of this here - http://apex.oracle.com/pls/otn/f?p=39839:3:5596350954563087::NO which is the shopping cart page of the online store application. But I'm trying to get the quantity edit portion to work on the inventory listing (so a customer can add items to an order simply by providing qty input for a particular line item(s) and saving).
Any advice?
Can you write an order processing system in apex that uses a collection to store line items?

Similar Messages

  • Apex_application.g_fxx.count Question (problem?)

    Do the apex_application.g_fxx variables need to be shown on the page (region) in order for apex_application.g_fxx.count to return a non-zero value?
    I'm trying to figure out why I spent a day trying to get something to work, and it seems like this is what it was, though I'm not quite sure.
    In my report region, I have a column that when shown, my process works correctly, where a loop that has the form of:
    FOR i IN 1 .. APEX_APPLICATION.g_f16.COUNT
    LOOP
    This performs the statements within the loop.
    However, if that column is not shown (under Report attributes, unclick the Show box), then the process does not seem to execute the statements inside the loop.
    The only thing I can think of is that when it's marked as not shown, then the COUNT has no value, even though it seems like it should. Does COUNT only return the count of displayable items in the column, so if it's not shown, it's zero?
    It also may be how the report region is defined as well I suppose. It seems like ApEx should understand it okay, but who knows. It's simply a join of two inline views, so I can pre-populate the region with values from another table if this table didn't have any entries.
    This is Apex 2.2.1.00.04. One of these days I'll get caught up enough to upgrade to 3.0.
    Thanks,
    Bill Ferguson

    Hi Patrick,
    I suppose I also should have stated that this is a manually generated report region, using the apex_application.[item_type] syntax, where I have to specify the array (item) number. I just tested with Firebug, and if I change the number of the second column to 22, it's shown as f22 instead of f02.
    g_f16 was the next to the last column, though the one after it is a hidden column (apex_application.hidden).
    My report region is such, that g_f03 andg f16 are the only columns I can verify will actually have some data in it, as I force a value into gf16 if the second half of my union is selecting null values, so I could get around the null sorting problem (NULLS LAST didn't work, even on 10gR2, so I'm doing something else wrong).
    Anyway, I can use the values of the columns, whether they are displayed or not, it's just that apex_application.g_f16.COUNT always returned a zero when the column was hidden, even though it consisted of an array of 5 values. Trying to track it down I was able send the value of the column to a logging table, so I was able to see that I was getting the values, just not the count of values.
    Bill Ferguson

  • Problem with apex_application.g_fxx.count

    Okay, I am at my wits end on this one.
    I'm running Apex 4, and on one of my screens I have a manually created tabular report. For one of the master records, this tabular report returns 12 rows, yet apex_application.g_fxx.count consistently returns 24 as the count. For other master records, this is working correctly however, returning the same number as what is showed on screen.
    I've tried to duplicate it on apex.oracle.com, but it works correctly there as well.
    I've checked the data table, and there are only twelve rows there, same as what the tabular report shows. I've added in TONS of code to report back what is happening and everything looks fine in the code and processing, but the data that gets saved is out out sync, since it appears that for some reason the xxx.count (for only this one master record) is somehow doubling the count, so the data that gets saved is off. For example, say someone makes a change to the third sub-record, the 'count' suddenly becomes 6, so it saves the changes for the sixth sub-record.
    Has anybody else ever seen this phenomenon and knows what causes it? I've spent three fruitless days trying to track this down so far.
    Thanks,
    Bill Ferguson
    A bit of further information.
    In my app, users must list all commodities present at a site first (different screen). They may then go to my Resources screen and input the tonnage and grades of the various commodities present. This ensures that users cannot add tonnage and grade information for a commodity that is not listed as being present at the site.
    So, when they get to the Resources screen, the bottom is all filled out with all of the commodities listed, and they simply have to type in the grade. The users also wnated the ones with information in the grade fields to appear at the top, so I had to add an order by to the query, as follows:
    SELECT a_rec,
           c_code,
           import,
           item,
           grade,
           grade_units,
           child_key,
           count_order
      FROM (SELECT rec a_rec,
                   c.commod || ' - (' || code || ')' c_code,
                   c.import,
                   item,
                   grd grade,
                   grd_units grade_units,
                   child_key,
                   rec count_order
              FROM    RESOURCE_DETAIL rd
                   RIGHT OUTER JOIN
                      commodity c
                   USING (dep_id, code)
             WHERE (CHILD_KEY = 1028244420100003)  -- actually using a variable here instead of hard-coded values
            UNION
            SELECT c.line a_rec,
                   c.commod || ' - (' || code || ')' c_code,
                   import,
                   NULL item,
                   NULL grade,
                   NULL grade_units,
                   NULL child_key,
                   c.line + 200 count_order
              FROM commodity c
             WHERE dep_id = 10282444 -- actually using a variable here instead of hard-coded values
                   AND code NOT IN
                          (SELECT code
                             FROM resource_detail
                            WHERE dep_id = 10282444 AND yr = 2010 AND line = 3)) -- actually using variables here instead of hard-coded values
    ORDER BY import, count_orderNow, on the screen the commodities are listed as:
    Copper
    Gold
    Molybdenum
    Silver
    Gemstone
    Lead
    Zinc
    Uranium
    Gypsum
    REE
    Talc
    Garnet
    But, the code I've added to see what is happening is instead saying the records being processed are in this order:
    Copper
    Garnet
    Gemstone
    Gold
    Gypsum
    Lead
    Molybdenum
    REE
    Silver
    Talc
    Uranium
    Zinc
    I do not have any sort criteria specied in the Report attributes. So, why is the order of processing (for i in 1 .. apex_application.g_f03.count) processing in a different order than what is shown on screen?

    Hi Arie,
    This was a strange one to track down. I wound up adding all kinds of logging statements in my code, writing things out to a table while processing, counts, which record, etc., and suddenly it dawne don me that everything was being processed in alphabetical order by commodity name, even though the screen display was by two other fields. I played around with different 'order by' settings, but the processing somehow was always by the commodity name. I have no idea where it was getting that 'directive', but nothing I could figure out changed it.
    So to recap, in case I didn't explain it well enough above, this is a manually created tabular form, with a 'regular' form above it (master-datail). I use the apex_item.text, etc. constructs to create the tabular form, and then in my 'proceses' I'm using the normal apex_application.g_fxx array to perform the processing. While the screen display from the tabular report shows everything with an order by of two columns, the processing always was done ordered by a diffierent, no-specified column.
    Changing my report definition to use the same 'order by' as the processing seemed to be working fixed the problem, though I have no idea where it was getting the 'order by' from to overwrite what was being on screen. I'm not sure if this is a bug or not, I vaguely remember Scott Spadafore commenting about this behaviour a long, long time back, but I can't find the post. It was probably back in the 2.x days.
    I also have no idea what is causing the array to somehow double for some records and not on others. In this particular case, the record I had on screen only had 7 commodities, but when I printed the result of apex_application.g_fxx.count, it always showed 14, even though on apex.oracle.com, when I tried to re-create the problem, it worked correctly and only reported 7. Most records in my database that I tested this on worked correctly, reporting the correct number of commodities, but occasionally I'd run across one where the number was doubled. I don't know if there is some internal table Apex uses that I could truncate (like possibly wwv_flow_collection_members?) where possisbly this type of information be kept. The only thing I can think of is that somewhere these counts are stored in a collection and it is populated with data from a real old incarnation, and during processing it stumbles across these old records and uses the old values. It doesn't seem like a realistic possibility, but it about the only explanation I can think of.
    Bill Ferguson

  • Problems using apex_application.g_fxx

    I have a SQL Query (updateable report) defined on a page and am using a custom app process to process the rows. I've based my code on posts out here but I'm getting some unusual results. Here's the sql for the report.
    SELECT
    NI_PROP_SEQ_NUM,
    NEW_ITEM_SEQ_NUM,
    APPROVED_REJECTED,
    APPROVED_REJECTED_BY,
    APPROVED_REJECTED_DATE,
    PROPOSAL_DATE,
    PROPOSAL_BY,
    PROP_FLD_LKUP_SEQ_NUM,
    PROPOSAL_FIELD_VALUE,
    case
    when PROP_FLD_LKUP_SEQ_NUM = 29 then
    (select nlsn_group_num || ' - ' || nlsn_ctgry_desc from apex_so.nlsn_ctgry where PROPOSAL_FIELD_VALUE = NLSN_CTGRY_NUM)
    else PROPOSAL_FIELD_VALUE
    end PROPOSED_VALUE
    from NI_PROPOSALS
    where NEW_ITEM_SEQ_NUM = :P2_NEW_ITEM_SEQ_NUM
    The report works fine on the page but when I try to process it using the following the values in the corresponding report don't align and is some cases I can't figure out where the values came from. Here's the code from the app process.
    DECLARE
    vRow BINARY_INTEGER;
    BEGIN
    :P2_RETURN_MESSAGE := 'This is a test, count = ' || apex_application.g_f01.COUNT;
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    vrow := apex_application.g_f01 (i);
    :P2_RETURN_MESSAGE := 'Inside the loop '
    || '. f01->'
    || apex_application.g_f01 (i)
    || '. f02->'
    || apex_application.g_f02 (i)
    || ' / f03->'
    || apex_application.g_f03 (i)
    || ' /f04-> '
    || apex_application.g_f04 (i)
    || ' / f05->'
    || apex_application.g_f05 (i)
    || ' / f06->'
    || apex_application.g_f06 (i)
    || ' / f07->'
    || apex_application.g_f07 (i);
    /* || ' / f08>'
    || nvl(apex_application.g_f08 (i), ' ');
    || ' / f09>'
    || nvl(apex_application.g_f09 (i), ' ')
    || ' / f10->'
    || nvl(apex_application.g_f10 (i), ' ')
    || ' / f11->'
    || nvl(apex_application.g_f12 (i), ' ')
    || ' / f12->'
    || nvl(apex_application.g_f12 (i), ' '); */
    END LOOP;
    END;
    There are 10 fields being selected in the sql above but if I try to concatenate more than g_f07 I get ora-1403 errors, data not found. None of these columns are null and I can't figure it out.
    Anyone have any thoughts?
    Thanks,
    Bruce

    Hi Bruce,
    is it possible that some of the columns are just of display type "Standard report column"? Because those will not save state.
    For an explanation of the apex_application.g_fxx array mapping, have a look at http://inside-apex.blogspot.com/2007/03/which-tabular-form-column-is-mapped-to.html
    Patrick
    *** New *** Oracle APEX Essentials *** http://essentials.oracleapex.info/
    My Blog, APEX Builder Plugin, ApexLib Framework: http://www.oracleapex.info/

  • [Solved] Reference apex_application.g_fXX in "execute immediate" statement

    Hi!
    I created a dynamically generated tabular form - the number of columns is not known in advanced. Each cell of the form is a text item generated with apex_item.text().
    I want to write an after-submit process that saves the values from the form into a database table. In this process I already know how many columns there are in the report so I want to do the following:
    --for each row...
    for i in 1..apex_application.g_f01.count loop
      -- and for each column in that row (number of columns is in v_col_count)
      for j in 1..v_col_count loop
        -- get the value of text item
        v_query := 'select apex_application.g_f0' || j || '(' || i || ')' || ' from dual';
        execute immediate v_query into v_value;
        -- now do some DML with v_value
      end loop;
    end loop;The problem is that I get an error: ORA-06553: PLS-221: 'G_Fxx' is not a procedure or is undefined where xx is the number from the generated query.
    My question is - am I doing something wrong or is is just not possible to reference apex_application.g_fxx in "execute immediate"? Will I have to manually check for all 50 possibilites of apex_application.g_fxx? Is there another way?
    TIA,
    Jure

    Well now I know what was wrong and what you were trying to tell me - apex_application.g_fxx is not visible in "plain" SQL. And now I also have a solution to this problem. The point is to wrap the select statement with begin - end block so that the statement is rendered as pl/sql:
    --for each row...
    for i in 1..apex_application.g_f01.count loop
      -- and for each column in that row (number of columns is in v_col_count)
      for j in 1..v_col_count loop
        -- get the value of text item
        v_query := 'begin select apex_application.g_f0' || j || '(:i)' || ' into :x from dual; end;';
        execute immediate v_query using i, out v_value;
        -- now do some DML with v_value
      end loop;
    end loop;This works great :).
    Jure

  • On save as: Unexpected and unrecoverable problem has occurred. Photoshop will now exit. (Mac 10.7.3)

    Hello,
    We are working on Macinthosh intel - Mac Pro Intel Xeon september 2007, with MacOs 10.7.3.
    After trying to install the beta version of Photoshop CS6, we got serious problems.
    - The CS5 Photoshop and Acrobat 9 is not working anymore.
    When we want to "save as…", both application will crash.
    When we do "save as weboptimized", un error says that the file already exists.
    We did not manage to install the CS6 Photoshop beta neither.
    I tried EVERYTHING supposed to do in other forums and in the adobe forums, like:
    - latest version of AdobeApplication Manager
    - Adobe cleaner tool
    - Adobe support advisor
    - cleaning manually everything on the disk which containes CS6
    - Reparing Autorisation
    - Trying to reinstall CS5 (but without issue
    - trash prefs
    - deactivate and reactivate PHotoshop
    and some others…
    When trying to "save as" or save as weboptimized…", the following errors appears:
    The operation could not be completed.
    An unexpected and unrecoverable problem has occurred. Photoshop will now exit.
    When trying to "save as weboptimized" the following error appears:
    A file or directory already exists with the same name.
    When exporting or "save as" in Acrobat:
    Acrobat is blocked, everything in the application menu is turned gray but there is not open window.
    I have to exit with "esc+Alt+Command"
    All this problems occured after installation of Photoshop Beta CS6, which could not be completed because of some more errors causing a licence conflict with CS5.
    We were also trying the Adobe support advisor, we got the following error massage:
    Exit Code: 16
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW039 ...
    -------------------------------------- Summary --------------------------------------
      - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW039: Failed to load deployment File
    AND
    Exit Code: 7
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW013 ... WARNING: DW017 ...
    -------------------------------------- Summary --------------------------------------
      - 0 fatal error(s), 1 error(s), 1 warning(s)
    WARNING: DW017: PayloadPolicyNode.SetAction: IN payload {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player 1.8.0.0 is required by {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E} Adobe Photoshop CS5 Core 12.0.0.0 but isn't free. Reason: Language not supported
    ERROR: DW013: Unable to locate volume for path. Please verify that path [UserDocuments] is a valid path. Please ensure that if any intermediate directories exist, they are valid directories and not files/symlinks
    Here is the content of the Crash Report:
    Process:    
    Adobe Photoshop CS5 [1403]
    Path:       
    /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier: 
    com.adobe.Photoshop
    Version:    
    12.0.4 (12.0.4x20110407.r.1265] [12.0.4)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [299]
    Date/Time:  
    2012-04-17 10:10:50.329 +0200
    OS Version: 
    Mac OS X 10.7.3 (11D50)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[1403]: garbage collection is OFF
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff86d78ce2 __pthread_kill + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c7d2 pthread_kill + 95
    2   libsystem_c.dylib        
    0x00007fff909fda7a abort + 143
    3   com.adobe.Photoshop      
    0x00000001002369eb 0x100000000 + 2320875
    4   libc++abi.dylib          
    0x00007fff897d8001 safe_handler_caller(void (*)()) + 11
    5   libc++abi.dylib          
    0x00007fff897d7ff6 __cxxabiv1::__terminate(void (*)()) + 9
    6   libc++abi.dylib          
    0x00007fff897d8346 __cxa_call_terminate + 59
    7   libc++abi.dylib          
    0x00007fff897d87c3 __gxx_personality_v0 + 207
    8   libunwind.dylib          
    0x00007fff8a21f4c6 unwind_phase2 + 160
    9   libunwind.dylib          
    0x00007fff8a21e96e _Unwind_RaiseException + 218
    10  com.apple.FinderKit      
    0x00007fff8b3a2b64 -[FI_TColumnViewController closeTarget] + 243
    11  com.apple.FinderKit      
    0x00007fff8b3de1d0 -[FIFinderViewGutsController destroyBrowserView] + 238
    12  com.apple.FinderKit      
    0x00007fff8b3dbdcc -[FIFinderViewGutsController prepareToHide] + 369
    13  com.apple.FinderKit      
    0x00007fff8b3dbee4 -[FIFinderViewGutsController setExpanded:] + 44
    14  com.apple.FinderKit      
    0x00007fff8b3e40ab -[FIFinderView viewWillMoveToWindow:] + 265
    15  com.apple.AppKit         
    0x00007fff8c5b9e31 -[NSView _setWindow:] + 238
    16  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    17  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    18  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    19  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    20  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    21  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    22  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    23  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    24  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    25  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    26  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    27  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    28  com.apple.AppKit         
    0x00007fff8c6dfb57 -[NSWindow dealloc] + 1262
    29  com.apple.AppKit         
    0x00007fff8c9e34f4 -[NSSavePanel dealloc] + 612
    30  com.apple.AppKit         
    0x00007fff8c4e0145 -[NSWindow release] + 535
    31  libobjc.A.dylib          
    0x00007fff897ed03c (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 434
    32  com.apple.CoreFoundation 
    0x00007fff8fbecb05 _CFAutoreleasePoolPop + 37
    33  com.apple.Foundation     
    0x00007fff8423a51d -[NSAutoreleasePool release] + 154
    34  com.adobe.Photoshop      
    0x00000001012f2d2e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16869522
    35  com.adobe.Photoshop      
    0x00000001000824f8 0x100000000 + 533752
    36  com.adobe.Photoshop      
    0x0000000100c3243c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9789344
    37  com.adobe.Photoshop      
    0x0000000100080e25 0x100000000 + 527909
    38  com.adobe.Photoshop      
    0x0000000100c327e2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9790278
    39  com.adobe.Photoshop      
    0x00000001004ca733 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2024087
    40  com.adobe.Photoshop      
    0x0000000100074b6f 0x100000000 + 478063
    41  com.adobe.Photoshop      
    0x00000001000711ba 0x100000000 + 463290
    42  com.adobe.Photoshop      
    0x00000001000665d3 0x100000000 + 419283
    43  com.adobe.Photoshop      
    0x0000000100066696 0x100000000 + 419478
    44  com.adobe.Photoshop      
    0x00000001012e1ef4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16800344
    45  com.apple.AppKit         
    0x00007fff8c4a31f2 -[NSApplication run] + 555
    46  com.adobe.Photoshop      
    0x00000001012e04a4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16793608
    47  com.adobe.Photoshop      
    0x00000001012e0f01 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796261
    48  com.adobe.Photoshop      
    0x00000001000682e6 0x100000000 + 426726
    49  com.adobe.Photoshop      
    0x00000001002371f1 0x100000000 + 2322929
    50  com.adobe.Photoshop      
    0x0000000100237281 0x100000000 + 2323073
    51  com.adobe.Photoshop      
    0x00000001000022f4 0x100000000 + 8948
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff86d797e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff84b045be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff84b0314e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff86d79192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff90a0db85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff86d79192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff90a0db85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.amt.services   
    0x0000000108723c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services   
    0x000000010871ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services   
    0x0000000108723cbe AMTThread::Worker(void*) + 28
    5   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff86d79192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff90a0db85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib   
    0x00007fff86d78e42 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff909c0dea nanosleep + 164
    2   com.adobe.PSAutomate     
    0x00000001166dbe4b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate     
    0x00000001166bdd83 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate     
    0x00000001166dbf46 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib   
    0x00007fff86d7767a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff86d76d71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff8fbeb6fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff8fbf3e64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff8fbf3676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO    
    0x00007fff90148541 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO    
    0x00007fff9013e6b2 CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dbcf0ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dd4ce6f APXGetHostAPI + 4146655
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib   
    0x00007fff86d78d7a __recvfrom + 10
    1   ServiceManager-Launcher.dylib
    0x0000000119885982 Invoke + 54020
    2   ServiceManager-Launcher.dylib
    0x0000000119884adf Invoke + 50273
    3   ServiceManager-Launcher.dylib
    0x0000000119883b26 Invoke + 46248
    4   ServiceManager-Launcher.dylib
    0x0000000119883b81 Invoke + 46339
    5   ServiceManager-Launcher.dylib
    0x0000000119883c02 Invoke + 46468
    6   ServiceManager-Launcher.dylib
    0x000000011987e30d Invoke + 23695
    7   ServiceManager-Launcher.dylib
    0x000000011987e4a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib
    0x000000011987ef2f Invoke + 26801
    9   ServiceManager-Launcher.dylib
    0x000000011987f01d Invoke + 27039
    10  ServiceManager-Launcher.dylib
    0x000000011988231f Invoke + 40097
    11  ServiceManager-Launcher.dylib
    0x00000001198825c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib
    0x0000000119882b84 Invoke + 42246
    13  ServiceManager-Launcher.dylib
    0x0000000119882d71 Invoke + 42739
    14  ServiceManager-Launcher.dylib
    0x0000000119874daf Login + 1773
    15  ServiceManager-Launcher.dylib
    0x0000000119876295 Login + 7123
    16  ServiceManager-Launcher.dylib
    0x00000001198832a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib
    0x00000001198856c1 Invoke + 53315
    18  libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    19  libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dbcf0ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dd4ce6f APXGetHostAPI + 4146655
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib   
    0x00007fff86d776b6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw      
    0x00000001279ec791 EntryFM + 2523937
    2   com.adobe.CameraRaw      
    0x0000000127a1eaa3 EntryFM + 2729523
    3   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    4   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 37:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 38:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 39:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13

    Hi again,
    We found the solution. I trie to give some details, if some other folks have a similar problem, perhaps they can find their solution with everything discussed in this topic.
    All this was not working, after trying it several times:
         Disk Utility> Repair Disk & Repair Permissions
         Cocktail OSX (clear all caches)
         Reboot and test
         delete all printers
         then look for a CS6 cleaner like http://www.adobe.com/support/contact/cscleanertool.html
         rebuild diskstructure and filestructure with several utilities like Techtool, Onyx.
    We could not uninstall the complete Photoshop cs5 only, because in case of uninstalling the whole Mastercollection, this is much to much work to reinstall all of the extension from Dreamweaver which have to be activated and installed one by one.
    What has been working is:
          TRY a New User Account (to rule out User preference/settings) !!!
    So this gave us un idea:
    Compare the library of both USER-ACCOUNTS : "ALICE" and the new one we called "TEST".
    Then we RENAMED the following folders in the /USER/LIBRARY: "Caches", "Recent Servers", "Saved Application State" and crated a new folder with the same name (we deleted it after, in case there will be some problems to restore the old ones)
    We put all the INVISIBLE FILES and FOLDERS present in the USER folder which names are beginning with a .dot, like .filename (e.g.: ".adobe", ".bash_history", ".BridgeCache", etc.) into another folder which we are going to delete later on.
    Finally we deleted all files "suspected" not to be there in the ALICE user account, in comparision to the TEST USER ACCOUNT.
    And "miracle": Everything is working again, after 2 days of searching…
    Thanks to everyone of you.
    Best regards,
    Alice

  • What is the correct procedure to connect and collect events from IPS through SDEE

    What is the correct procedure to connect and collect events from IPS through SDEE?
    We are a 3rd party application, that needs to collect and analyze the IPS events for a client.
    Currently the approach we are following is
    1) get a SubscriptionId using the URL below
    https://IP_Of_IPS/cgi-bin/sdee-server?action=open&events=evIdsAlert&force=yes
    This gets us a subscriptionId which is used in step 2
    2) Collect events from the url below
    https://IP_Of_IPS/cgi-bin/sdee-server?confirm=yes&action=get&subscriptionId=sub-sample&startTime=1362699903575432000
    a few more notes here are
    - starttime is current time in nanoseconds
    the peculiar problem here is that, even though we specify todays date, SDEE returns us the events from mid Feb (today is march 7)
    we did try a few combinations, but are out of ideas.
    any help or direction would be appreciated

    This is more an application issue than an IPS issue.
    Have you compared your app against other apps [IME]?

  • Import Previews and Collections Only

    GOAL: to export the Previews and Collections info ONLY on an old Lightroom catalog/computer and apply that info to same photos on a new Lightroom catalog/computer.
    I'm moving my Lightroom Catalog from one computer that utilized multiple external drives to a new computer where everything will be on a single internal drive.
    I copied over all of the photos to the new computer and did some re-organizing to group everything better.
    I left the file structure within each Lightroom folder intact (eg., if I had sub-dvided photos into ten folders on the old Lightroom computer, those ten folders are the same, but I have put all ten into a new folder to enclose them all).
    Ideally, I'd like to just bring in the previews and collection info and apply it to the photos on the new Lightroom computer. Since there are over 20,000 photos, I'd like to avoid having to export as a catalog with all of those originals. Is there a way to export ONLY the previews and collections info and then import that to the new Lightroom computer?
    Thanks!

    Chris G. wrote:
    I cannot seem to get images to appear in the Import Window's preview pane, and thus cannot import them.
    Any pointers as to what the problem might be?
    I have occasionally had this problem and found either waiting a while or cancelling the Import and then retrying the Import (and being patient) works.
    The workflow I use includes giving a custom master/version name to the appropriate images from the camera, such as "Judy in the Garden", importing those pics of Judy, and then supplying another master/version name, such as "Punch Drunk" for the appropriate images of Punch, importing those, and so on. So it can take many iterations to pull all the images in. Often the imports work as you would expect but then suddenly, nothing appears to happen and cancel and I redo it. My suspicion is Aperture is busy doing some housekeeping or other (or hung) but since a retry or two does the trick, I don't worry about it.

  • Object and reference accessing for primitives, objects and collections

    Hi,
    I have questions re objects, primitives and collection accessing and references
    I made a simple class
    public class SampleClass {
         private String attribute = "default";
         public SampleClass()
         public SampleClass(SampleClass psampleClass)
              this.setAttribute(psampleClass.getAttribute());
              if (this.getAttribute() == psampleClass.getAttribute())
                   System.out.println("INSIDE CONSTRUCTOR : same object");
              if (this.getAttribute().equals(psampleClass.getAttribute()))
                   System.out.println("INSIDE CONSTRUCTOR : equal values");
         public void setAttribute(String pattribute)
              this.attribute = pattribute;
              if (this.attribute == pattribute)
                   System.out.println("INSIDE SETTER : same object");
              if (this.attribute.equals(pattribute))
                   System.out.println("INSIDE SETTER : equal values");
         public String getAttribute()
              return this.attribute;
         public static void main(String[] args) {
    ...and another...
    public class SampleClassUser {
         public static void main(String[] args) {
              SampleClass sc1 = new SampleClass();
              String test = "test";
              sc1.setAttribute(new String(test));
              if (sc1.getAttribute() == test)
                   System.out.println("SampleClassUser MAIN : same object");
              if (sc1.getAttribute().equals(test))
                   System.out.println("SampleClassUser MAIN : equal values");
              SampleClass sc2 = new SampleClass(sc1);
              sc1.setAttribute("test");
              if (sc2.getAttribute() == sc1.getAttribute())
                   System.out.println("sc1 and sc2 : same object");
              if (sc2.getAttribute().equals(sc1.getAttribute()))
                   System.out.println("sc1 and sc2 : equal values");
    }the second class uses the first class. running the second class outputs the following...
    INSIDE SETTER : same object
    INSIDE SETTER : equal values
    SampleClassUser MAIN : equal values
    INSIDE SETTER : same object
    INSIDE SETTER : equal values
    INSIDE CONSTRUCTOR : same object
    INSIDE CONSTRUCTOR : equal values
    INSIDE SETTER : same object
    INSIDE SETTER : equal values
    sc1 and sc2 : equal values
    ...i'm just curios why the last 3 lines are the way they are.
    INSIDE SETTER : same object
    INSIDE SETTER : equal values
    sc1 and sc2 : equal values
    how come while inside the setter method, the objects are the same object, and after leaving the setter method are not the same objects?
    Can anyone point a good book that shows in detail how objects, primitives and collections are referenced, especially when passed to methods. Online reference is preferred since the availability of books can be a problem for me.
    Thanks very much

    You are confusing references with objects.
    This compares two object references:
    if( obj1 == obj2 ) { // ...Whereas this compares two objects:
    if( obj1.equals(obj2) ) { // ...A reference is a special value which indicates where in memory two objects happen to be. If you create two strings with the same value they won't be in the same place in memory:
    String s1 = new String("MATCHING");
    String s2 = new String("MATCHING");
    System.out.println( s1 == s2 ); // false.But they do match:
    System.out.println( s1.equals(s2) ); // trueIf you're using a primitive then you're comparing the value that you're interested in. E.g.
    int x = 42;
    int y = 42;
    System.out.println(x == y); // trueBut if you're comparing references you're usually more interested in the objects that they represent that the references themselves.
    Does that clarify matters?
    Dave.

  • An unexpected and unrecoverable problem has occurred. Photoshop will now exit.

    Attempted to launch Photoshop CS4 today and was welcomed by the following errors.
    The first error to pop up said:
    "An unexpected and unrecoverable problem has occurred because something prevented the text engine from being launched. Photoshop will now exit."
    Then, another error popped up over it:
    "An unexpected and unrecoverable problem has occurred. Photoshop will now exit."
    Here is the Crash Log:
    Process:         Adobe Photoshop CS4 [26723]
    Path:            /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    Identifier:      com.adobe.Photoshop
    Version:         11.0.2 [11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]] (11.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [235]
    Date/Time:       2012-04-25 09:45:00.306 -0500
    OS Version:      Mac OS X 10.7.3 (11D50d)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[26723]: garbage collection is OFF
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x983ba9c6 __pthread_kill + 10
    1   libsystem_c.dylib                       0x90ca7f78 pthread_kill + 106
    2   libsystem_c.dylib                       0x90c98bdd abort + 167
    3   com.adobe.Photoshop                     0x0021fcf7 0x1000 + 2223351
    4   libc++abi.dylib                         0x9c1a61fe safe_handler_caller(void (*)()) + 15
    5   libc++abi.dylib                         0x9c1a61ef __cxxabiv1::__terminate(void (*)()) + 14
    6   libc++abi.dylib                         0x9c1a711a __cxa_call_unexpected + 227
    7   com.adobe.Photoshop                     0x013239d5 AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660361
    8   com.adobe.Photoshop                     0x01323a29 AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660445
    9   com.adobe.Photoshop                     0x008eb7ea 0x1000 + 9349098
    10  com.adobe.Photoshop                     0x01323a9e AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660562
    11  com.adobe.Photoshop                     0x0007c9df 0x1000 + 506335
    12  com.adobe.Photoshop                     0x000671ad 0x1000 + 418221
    13  com.adobe.Photoshop                     0x00063a95 0x1000 + 404117
    14  com.adobe.Photoshop                     0x006706cd 0x1000 + 6747853
    15  com.adobe.Photoshop                     0x000a4717 0x1000 + 669463
    16  com.apple.HIToolbox                     0x980f2b8e ModalDialog + 946
    17  com.apple.HIToolbox                     0x980fad01 RunStandardAlert + 741
    18  com.adobe.Photoshop                     0x0007b4a8 0x1000 + 500904
    19  com.adobe.Photoshop                     0x0007b7ed 0x1000 + 501741
    20  com.adobe.Photoshop                     0x000dd405 0x1000 + 902149
    21  com.adobe.Photoshop                     0x000dd807 0x1000 + 903175
    22  com.adobe.Photoshop                     0x0007d8c7 0x1000 + 510151
    23  com.adobe.Photoshop                     0x011fb486 0x1000 + 18850950
    24  com.adobe.Photoshop                     0x0021fd47 0x1000 + 2223431
    25  libc++abi.dylib                         0x9c1a61fe safe_handler_caller(void (*)()) + 15
    26  libc++abi.dylib                         0x9c1a61ef __cxxabiv1::__terminate(void (*)()) + 14
    27  libc++abi.dylib                         0x9c1a711a __cxa_call_unexpected + 227
    28  com.adobe.Photoshop                     0x013239d5 AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660361
    29  com.adobe.Photoshop                     0x01323a29 AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660445
    30  com.adobe.Photoshop                     0x008eb125 0x1000 + 9347365
    31  com.adobe.Photoshop                     0x008eb642 0x1000 + 9348674
    32  com.adobe.Photoshop                     0x01323a9e AWS_CUI_SetFileName(long, adobe::aws::gen::String<unsigned short>&) + 660562
    33  com.adobe.Photoshop                     0x0007c9df 0x1000 + 506335
    34  com.adobe.Photoshop                     0x000671ad 0x1000 + 418221
    35  com.adobe.Photoshop                     0x0006348f 0x1000 + 402575
    36  com.adobe.Photoshop                     0x00063c44 0x1000 + 404548
    37  com.adobe.Photoshop                     0x00063dd3 0x1000 + 404947
    38  com.adobe.Photoshop                     0x0006212f 0x1000 + 397615
    39  com.adobe.Photoshop                     0x002205da 0x1000 + 2225626
    40  com.adobe.Photoshop                     0x00220666 0x1000 + 2225766
    41  com.adobe.Photoshop                     0x00003812 0x1000 + 10258
    42  com.adobe.Photoshop                     0x00003739 0x1000 + 10041
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x983bb90a kevent + 10
    1   libdispatch.dylib                       0x9b608c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x9b6076a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x983ba83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90ca9e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90c5182a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0701c552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x07017995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services                  0x0701c5b0 AMTThread::Worker(void*) + 20
    6   libsystem_c.dylib                       0x90ca5ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90ca96de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x983b8c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x924c2a98 MPWaitOnSemaphore + 104
    2   MultiProcessor Support                  0x21080eff 0x21051000 + 196351
    3   com.apple.CoreServices.CarbonCore          0x924c35e0 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x90ca5ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x90ca96de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x983ba83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90ca9e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x90c5a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x924eee62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x924603c5 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x924c2681 MPWaitOnQueue + 200
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x924c35e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x90ca5ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x90ca96de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x983bb02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x90ca7ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x90ca96fe start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x983bb02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x90ca7ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x90ca96fe start_wqthread + 30
    Thread 7:
    0   libsystem_kernel.dylib                  0x983b8d36 mach_wait_until + 10
    1   libsystem_c.dylib                       0x90c53439 nanosleep + 388
    2   com.adobe.PSAutomate                    0x71c381b1 ScObjects::Thread::sleep(unsigned int) + 143
    3   com.adobe.PSAutomate                    0x71c38211 ScObjects::Thread::wait(unsigned int) + 23
    4   com.adobe.PSAutomate                    0x71c28dc6 ScObjects::BridgeTalkThread::run() + 332
    5   com.adobe.PSAutomate                    0x71c384d3 ScObjects::Thread::go(void*) + 239
    6   libsystem_c.dylib                       0x90ca5ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90ca96de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x983bb02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x90ca7ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x90ca96fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xbfffd33c  ecx: 0xbfffd2cc  edx: 0x983ba9c6
      edi: 0xac0f82c0  esi: 0x00000006  ebp: 0xbfffd2e8  esp: 0xbfffd2cc
       ss: 0x00000023  efl: 0x00000246  eip: 0x983ba9c6   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x0a07e000
    Logical CPU: 0
    Binary Images:
        0x1000 -  0x19aefdf +com.adobe.Photoshop (11.0.2 [11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]] - 11.0.2) <40DBAC70-2688-44B1-A8CE-142BF8A18887> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    0x207f000 -  0x2085fff  org.twain.dsm (1.9.4 - 1.9.4) <C0CCCE50-2929-3853-BE08-0DAE14CA29B8> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x208c000 -  0x246601f +com.adobe.linguistic.LinguisticManager (4.0.0 - 7863) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x251a000 -  0x2714fcf +AdobeOwl (??? - ???) <4CCA2C7B-4896-4DDA-A14B-725FB0C202B5> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x278f000 -  0x289cfff +AdobeACE (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x28ba000 -  0x2c84fef +AdobeMPS (??? - ???) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x2d13000 -  0x2d73fc7 +AdobeXMP (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2d82000 -  0x307dfff +AdobeAGM (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x313d000 -  0x33d0fe7 +AdobeCoolType (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3454000 -  0x346dfff +AdobeBIB (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x3477000 -  0x3498ff7 +AdobeBIBUtils (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x34a5000 -  0x34c0ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x34da000 -  0x34feff6 +AdobeAXE8SharedExpat (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x3511000 -  0x359e2cb +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.36.0
    0x35cb000 -  0x35e680f +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x35e9000 -  0x379fff4 +com.adobe.amtlib (amtlib 2.0.1.10077 - 2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x37d6000 -  0x3866fc3 +WRServices (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x39e8000 -  0x39ecffc +com.adobe.AdobeCrashReporter (2.5 - 3.0.20080806) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x39f2000 -  0x3a0efd7 +com.adobe.LogTransport (1.0 - 1.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x3a19000 -  0x3aeefdd +FileInfo (??? - ???) <F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x3b1f000 -  0x3b76fff +aif_core (??? - ???) <B4DCB439-E1EE-ABE3-BD12-2C42E980366B> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x3b8e000 -  0x3babffd +data_flow (??? - ???) <8E452B6F-8032-39D8-EB5C-49A4E31CB988> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x3bd7000 -  0x3c50fff +image_flow (??? - ???) <498A857D-F8C6-F9E0-C92F-BC3EC8680ED0> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x3cb6000 -  0x3cc6fff +image_runtime (??? - ???) <F379A952-2983-1E44-676D-BBD8259F131A> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x3cdb000 -  0x3e9affe +aif_ogl (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x3f4b000 -  0x4449fc3 +AdobeOwlCanvas (??? - ???) <FCB2D1A3-1F6E-4182-8E2C-D0B23572D285> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x4592000 -  0x4664fe7 +AdobeAXEDOMCore (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x4718000 -  0x477afe7 +com.adobe.PlugPlug (1.0.0.73 - 1.0.0.73) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x47db000 -  0x4822fc7 +com.adobe.adobe_caps (adobe_caps 2.0.99.0 - 2.0.99.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x4832000 -  0x486ffff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x4e62000 -  0x4e6fff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    0x4e7d000 -  0x4e7dfff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
    0x4efa000 -  0x4efbff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x4fed000 -  0x4ffbffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D3F1CC34-55EB-3D33-A7C2-025D5C8025D0> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x6ffc000 -  0x709dfc3 +com.adobe.amt.services (AMTServices 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x729b000 -  0x72adfff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <ADEB72F9-0048-3C87-AD9B-71AA57D523E9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x72b1000 -  0x72b2ffc  ATSHI.dylib (??? - ???) <B244624E-E09E-34B2-A185-EB30AF08A95D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x72f8000 -  0x7303fff +Enable Async IO (??? - ???) <FD91E79F-C4AA-4EBC-AF6D-3E154F14878F> /Applications/Adobe Photoshop CS4/*/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x1ac9a000 - 0x1ac9effb  libFontRegistryUI.dylib (??? - ???) <E986346C-8132-33B6-8525-AA2A3233F99C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
    0x1acdd000 - 0x1aceb02f +FastCore (??? - ???) <F12878B7-BEE9-40CA-9F05-65CD0F5688E2> /Applications/Adobe Photoshop CS4/*/FastCore.plugin/Contents/MacOS/FastCore
    0x1ffcd000 - 0x1ffd8ffb +PPCCore (??? - ???) <ED521EB7-681D-45AA-9AE3-6BF4663E4BD3> /Applications/Adobe Photoshop CS4/*/PPCCore.plugin/Contents/MacOS/PPCCore
    0x1ffde000 - 0x1ffe9ffe +AltiVecCore (??? - ???) <A967AE2A-F2AE-4E12-A7B6-68B981CBD906> /Applications/Adobe Photoshop CS4/*/AltiVecCore.plugin/Contents/MacOS/AltiVecCore
    0x20c1d000 - 0x20d8affc  GLEngine (??? - ???) <5C52561A-F1B6-33ED-B6A0-7439EA2B0920> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x20dbe000 - 0x20eb5ffb  libGLProgrammability.dylib (??? - ???) <C45CEE58-603A-371C-B4AB-5346DC13D8F3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x20ed9000 - 0x20f06ff8  GLRendererFloat (??? - ???) <046FB12A-6022-3A91-8385-5BDF85BDACE7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x20f4e000 - 0x20fb3fe3 +MMXCore (??? - ???) <E206C8DC-AEA8-49DF-8FBC-8B447E3A59A1> /Applications/Adobe Photoshop CS4/*/MMXCore.plugin/Contents/MacOS/MMXCore
    0x21051000 - 0x21098ff7 +MultiProcessor Support (??? - ???) <001A163B-5314-4613-A23A-F35B63065FD0> /Applications/Adobe Photoshop CS4/*/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x210a3000 - 0x211f5fc7 +com.adobe.coretech.adm (3.10x16 - 3.1) /Applications/Adobe Photoshop CS4/*/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x40000000 - 0x400ae030 +AdobeJP2K (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x71b00000 - 0x71d5cfdf +com.adobe.PSAutomate (11.0.1 - 11.0.1) /Applications/Adobe Photoshop CS4/*/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x71ff0000 - 0x720befff +AdobeExtendScript (3.7.0 - compatibility 3.7.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x72135000 - 0x721d6fd7 +AdobeScCore (3.7.0 - compatibility 3.7.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x8effe000 - 0x8f7a3ffb  com.apple.GeForceGLDriver (7.18.11 - 7.1.8) <71391D53-5F7C-3DA2-AB51-B9CFE665FF2A> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x8fe18000 - 0x8fe4aaa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x900aa000 - 0x9016affb  com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9016b000 - 0x9016ffff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9038c000 - 0x9038cfff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x903dc000 - 0x90410ff3  libTrueTypeScaler.dylib (??? - ???) <43479E0A-C47D-3CE3-B328-9CB33D3FC3B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90444000 - 0x90455fff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x90456000 - 0x9052caab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x9052d000 - 0x9054afff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x90582000 - 0x905a4ff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x905a5000 - 0x905b9ff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x905ba000 - 0x905c4ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x905c5000 - 0x905e1ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x905e2000 - 0x905e5ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x905e6000 - 0x90637fff  libFontRegistry.dylib (??? - ???) <DF69E8EC-9114-3757-8355-8F3E82156F85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x90638000 - 0x90638fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x90639000 - 0x90696ffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x90697000 - 0x906cdff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x906ce000 - 0x9071eff0  libTIFF.dylib (??? - ???) <F532A16A-7761-355C-8B7B-CEF988D8EEFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x9071f000 - 0x909dbff3  com.apple.security (7.0 - 55110) <2F4FCD65-2A30-3330-99DE-91FE1F78B9FB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90a12000 - 0x90af5ff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x90b2d000 - 0x90b2fff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x90b30000 - 0x90b33ffd  libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x90b37000 - 0x90c48ff7  libJP2.dylib (??? - ???) <143828CE-D429-3C66-A0DC-4F39536568E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x90c49000 - 0x90d14fff  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
    0x90d37000 - 0x90e27ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x90eeb000 - 0x90efeffb  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <AE079D11-3A38-3707-A2DF-6BD2FC24B712> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x90eff000 - 0x91209ff3  com.apple.Foundation (6.7.1 - 833.24) <8E2AD829-587C-3146-B483-9D0209B84192> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9120a000 - 0x91238ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x91239000 - 0x91241fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91242000 - 0x91246ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x91247000 - 0x91304ff3  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <1C0646D4-18D6-375E-9C0E-EA066C6A6C3C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
    0x91308000 - 0x91359ff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x9135a000 - 0x91478fec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x91736000 - 0x919bbfe3  com.apple.QuickTime (7.7.1 - 2315) <E6249041-B569-3A96-897F-E84B1C057948> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91c20000 - 0x91c20fff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91f2f000 - 0x91f3affc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x922c6000 - 0x92321ff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x92322000 - 0x92337fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x92338000 - 0x92380ff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <CA077C0D-8A54-38DB-9690-5D222899B93D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x92422000 - 0x92724fff  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <E6300673-A013-3A91-BB1A-DD793B857E16> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x92768000 - 0x92768fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92769000 - 0x92c4effb  com.apple.RawCamera.bundle (3.12.0 - 614) <A2B304C1-1E8D-AAB1-14F6-11462C666C82> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x92d3f000 - 0x92d62fff  com.apple.CoreVideo (1.7 - 70.1) <3520F013-DF91-364E-88CF-ED252A7BD0AE> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92d63000 - 0x92d65ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x92d66000 - 0x92d71ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <4A7FCD28-9C09-3120-980A-BDF6EDFAAC62> /usr/lib/libbz2.1.0.dylib
    0x9307d000 - 0x9308bfff  com.apple.opengl (1.7.6 - 1.7.6) <5EF9685C-F8B2-3B22-B291-8012761E9AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931bf000 - 0x932ebff9  com.apple.CFNetwork (520.3.2 - 520.3.2) <58021CA7-0C91-3395-8278-8BD76E03BDCB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x932ec000 - 0x93315ffe  com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93316000 - 0x9331bffd  libGFXShared.dylib (??? - ???) <179E77CE-C72C-3B5F-8F1E-3901517C24BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x939b7000 - 0x93a4eff3  com.apple.securityfoundation (5.0 - 55107) <DF36D4ED-47F7-3F7F-AB09-32E5BFB7EF05> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x93aff000 - 0x93b05ffb  com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x93b48000 - 0x93be3ff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x93c0d000 - 0x93c32ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x93cce000 - 0x93d0eff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x93d0f000 - 0x93d9cfe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x93d9d000 - 0x93f74fff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93f80000 - 0x94007fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x94278000 - 0x94283fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x95030000 - 0x95191ffb  com.apple.QuartzCore (1.7 - 270.2) <4A6035C8-1237-37E5-9FFF-1EFD735D8B18> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x951d3000 - 0x955d5ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x95cd4000 - 0x95d30fff  com.apple.coreui (1.2.1 - 165.3) <65526A00-D355-3932-9279-9A7D6BF76D95> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95d31000 - 0x95d74ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x95d75000 - 0x96251ff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x962a2000 - 0x962aaff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x964ad000 - 0x964bdfff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x964be000 - 0x964bfff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x964c2000 - 0x965aafff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x965ab000 - 0x966a3ff7  libFontParser.dylib (??? - ???) <8C069D3D-534F-3EBC-8035-A43E2B3A431A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x966d0000 - 0x966defff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x966df000 - 0x966e4ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x966f7000 - 0x9678cff7  com.apple.LaunchServices (480.27.1 - 480.27.1) <8BFE799A-7E35-3834-9403-20E5ADE015D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x967e5000 - 0x967e8ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x96826000 - 0x9682dff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x9686d000 - 0x968e1fff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x968ea000 - 0x96904fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96cd0000 - 0x97361fe3  libclh.dylib (4.0.3 - 4.0.3) <6A8847F2-1F44-3B30-A770-DAAF8D1D36C2> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x97362000 - 0x973c4ffb  com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x973c7000 - 0x973caffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x9741d000 - 0x9741fff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x97420000 - 0x97421fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x97422000 - 0x97451ff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x97452000 - 0x97452ff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x97453000 - 0x974ceffb  com.apple.ApplicationServices.ATS (317.5.0 - ???) <7A8B0538-8E2E-3355-81E3-0C0A7EBED28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x974e0000 - 0x97f73ff6  com.apple.AppKit (6.7.3 - 1138.32) <008E7C05-C20C-344A-B51C-4A2441372785> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97f74000 - 0x982b8ffb  com.apple.HIToolbox (1.8 - ???) <9540400F-B432-3116-AEAD-C1FBCFE67E73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x982b9000 - 0x982c4ffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x982c5000 - 0x982f0fff  com.apple.GSS (2.1 - 2.0) <DA24E4F9-F9D4-3CDB-89E4-6EAA7A9F6005> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x982f5000 - 0x982fcfff  com.apple.agl (3.1.4 - AGL-3.1.4) <CCCE2A89-026B-3185-ABEA-68D268353164> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x982fd000 - 0x983a1fff  com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x983a2000 - 0x983c0ff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x983c1000 - 0x983e0fff  com.apple.RemoteViewServices (1.3 - 44) <243F16F3-FFFE-3E81-A969-2EC947A11D89> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x983e1000 - 0x98442ffb  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <E617857C-D870-3E2D-BA13-3732DD1BC15E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98443000 - 0x9844cff3  com.apple.CommonAuth (2.1 - 2.0) <5DA75D12-A4D6-3362-AD72-79A64C79669E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9844d000 - 0x984d7ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x984d8000 - 0x984dbffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x98589000 - 0x985c9ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x985ca000 - 0x985cafff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x985cb000 - 0x9863afff  com.apple.Heimdal (2.1 - 2.0) <BCF7C3F1-23BE-315A-BBB6-5F01C79CF626> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9863b000 - 0x9863bfff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x98681000 - 0x98685fff  libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x98770000 - 0x98771ff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x98854000 - 0x98963fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <33DCFB71-1D9E-30B6-BC4C-CD54068690BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x98964000 - 0x98967ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <E06426D8-CC01-3754-B5B3-D15CBA5C8D73> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x989aa000 - 0x989abff7  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
    0x989ac000 - 0x989c9ff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x989ec000 - 0x98a79ff7  com.apple.CoreText (220.11.0 - ???) <720EFEE0-A92A-3519-9C88-D06E4DE14EAB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x98a7a000 - 0x98a7bfff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x98a7c000 - 0x98a80ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98a81000 - 0x98abdffa  libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x98ba6000 - 0x98bcfff1  com.apple.CoreServicesInternal (113.12 - 113.12) <CFF78E35-81F5-36C2-A59F-BF85561AC16D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x9965f000 - 0x996c6fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x996d2000 - 0x9972bfff  com.apple.HIServices (1.11 - ???) <F8B77735-B168-3E21-9B8F-921115B4C19B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x99738000 - 0x9a0605eb  com.apple.CoreGraphics (1.600.0 - ???) <E285B0B6-F9FC-33BC-988F-ED619B32029C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x9a3cd000 - 0x9a404fef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9a405000 - 0x9a46aff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9a56b000 - 0x9a56fff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x9a587000 - 0x9a58fff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x9a59e000 - 0x9a5baffc  libPng.dylib (??? - ???) <75F41C08-E187-354C-8115-79387F57FC2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x9a9d1000 - 0x9ac44ff7  com.apple.CoreImage (7.93 - 1.0.1) <88FEFE5B-83A9-3CD9-BE2E-DB1E0553EBB0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x9ac59000 - 0x9ac64ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <DD0529E3-9D71-37B6-9EB8-D7747B2B12C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x9ac65000 - 0x9ac6bffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x9ac7c000 - 0x9ac7dfff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x9ae78000 - 0x9ae8dff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9aedf000 - 0x9af1cff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <4508AABD-EDA8-3BF7-B03A-978D2395C9A8> /usr/lib/libcups.2.dylib
    0x9af25000 - 0x9af26ff7  libsystem_sandbox.dylib (??? - ???) <D272A77F-7F47-32CD-A36E-5A3FB966ED55> /usr/lib/system/libsystem_sandbox.dylib
    0x9af2a000 - 0x9b39fff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x9b3a0000 - 0x9b595ff7  com.apple.CoreData (104.1 - 358.13) <EB02DCA7-DB2A-32DD-B49E-ECE54D078610> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9b606000 - 0x9b614fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
    0x9b615000 - 0x9b65eff7  libGLU.dylib (??? - ???) <AEA2AD9A-EEDD-39B8-9B28-4C7C1BACB594> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9b7d3000 - 0x9b8a2fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <D4D6EB78-8A6C-3474-921C-622C6951489B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x9b8a3000 - 0x9b8d1fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
    0x9b8d2000 - 0x9b8daff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x9b8db000 - 0x9b8e2ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x9ba79000 - 0x9ba89ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x9ba8a000 - 0x9ba8aff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9bdd4000 - 0x9bde2ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x9c19e000 - 0x9c19fffd  libCVMSPluginSupport.dylib (??? - ???) <6C364E11-B9B3-351A-B297-DB06FBAAFFD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x9c1a0000 - 0x9c1a0fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9c1a1000 - 0x9c1aafff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x9c1ba000 - 0x9c1d0ffe  libxpc.dylib (77.18.0 - compatibility 1.0.0) <D40B8FD1-C671-3BD5-8C9E-054AF6D4FE9A> /usr/lib/system/libxpc.dylib
    0x9c1d1000 - 0x9c1d2fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x9c1d3000 - 0x9c1d7ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9c1d8000 - 0x9c24efff  com.apple.Metadata (10.7.0 - 627.28) <71AC8DA5-FA89-3411-A97C-65B6129E97BD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x9c24f000 - 0x9c35ffe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x9c605000 - 0x9c612fff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9c613000 - 0x9c613ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x9c614000 - 0x9c690ff7  libType1Scaler.dylib (??? - ???) <2560F511-3288-3367-A4E2-AD15219B6913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x9c691000 - 0x9c6cffff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0FAB8C29-2A1B-3E25-BA34-BDD832B828DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x9c6d0000 - 0x9c6f8ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x9c6f9000 - 0x9c75bff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9c75c000 - 0x9c763ffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9c764000 - 0x9c826fff  com.apple.CoreServices.OSServices (478.37 - 478.37) <00A48B2A-2D75-3FD0-9805-61BB11710879> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x9c827000 - 0x9c9dbff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x9ca29000 - 0x9ca8dfff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9ca8e000 - 0x9cbe0fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E369AC9E-F548-3DF6-B320-9D09E486070E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9ccd9000 - 0x9ccfbffe  com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0xb0000000 - 0xb0006ff8  com.apple.carbonframeworktemplate (1.3 - 1.3.12) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xba300000 - 0xba301ffb  libCyrillicConverter.dylib (54.0.0 - compatibility 1.0.0) <F098D5D3-D551-3E69-8261-208A9091BBF0> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0xba500000 - 0xba501ff7  libGreekConverter.dylib (54.0.0 - compatibility 1.0.0) <39A9F462-05DD-383B-B01A-2B528E18D049> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0xba900000 - 0xba91bffd  libJapaneseConverter.dylib (54.0.0 - compatibility 1.0.0) <5635DF40-8D8E-3B8C-B075-7B3FC0F184A4> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21ff6  libKoreanConverter.dylib (54.0.0 - compatibility 1.0.0) <17226124-8E8A-34EB-A2C4-D4A0469CF45B> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbb500000 - 0xbb500fff  libThaiConverter.dylib (54.0.0 - compatibility 1.0.0) <6CBA4C09-1460-3249-92C2-1D96F56ED7ED> /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 50
        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: 46697178
        thread_create: 4
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=229.9M resident=98.4M(43%) swapped_out_or_unallocated=131.5M(57%)
    Writable regions: Total=1.6G written=538.1M(32%) resident=591.3M(35%) swapped_out=116K(0%) unallocated=1.1G(65%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                 33.1M
    CG backing stores                  32.0M
    CG raster data                      128K
    CG shared images                   3512K
    CoreGraphics                          8K
    CoreServices                       3180K
    IOKit                                 8K
    IOKit (reserved)                  256.0M        reserved VM address space (unallocated)
    MALLOC                              1.3G
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=243                        4K
    Memory tag=249                      156K
    Stack                              68.1M
    VM_ALLOCATE                        16.8M
    __CI_BITMAP                          80K
    __DATA                             24.0M
    __DATA/__OBJC                       236K
    __IMAGE                             528K
    __IMPORT                            240K
    __LINKEDIT                         52.7M
    __OBJC                             1308K
    __OBJC/__DATA                       148K
    __PAGEZERO                            4K
    __RC_CAMERAS                        244K
    __TEXT                            177.2M
    __UNICODE                           544K
    mapped file                       226.3M
    shared memory                      34.9M
    shared pmap                        9744K
    ===========                      =======
    TOTAL                               2.2G
    TOTAL, minus reserved VM space      2.0G

    "An unexpected and unrecoverable problem has occurred because something prevented the text engine from being launched. Photoshop will now exit."
    You have the "bad font" disease. Check your system fonts and remove any suspicious ones you may have added recently. Then use a tool like OnyX to flush the system and Adobe font caches and try again.
    Mylenium

  • 11g Grid Control - Host Configuration Collection Problems

    Hi Guys,
    I just installed Oracle 11g Grid Control and it has been running for 2 weeks until I recently tried to walk through the parts of it.
    My intention was to clear off all the error messages, critical warnings, alerts, and policy warnings.
    When I arrived at the development summary box, on the home tab, I can see that there is 1 collection problem.
    When I clicked it, I saw that apparently the problem is with the host where I installed the grid control.
    Problem type: Warning during collection of Oracle Software
    message: Unknown WLS Home Location or WLS Version in Middleware Home /u01/app/oracle/product/middleware
    I tried clicking on the "Refresh Host" button, but it didn't solve the problem at all.
    I have also tried to take a look at the targets.xml however it seems the configuration in there are already pointing to the correct path to the weblogic home.
    Please let me know if anyone has a suggestion for this.
    Searching from google doesn't really return anything closely matched to this.
    Thanks,
    Adhika

    What is the intent/timeline for fixing this bug? On MOS, it appears to have a status of "Status 33 - Suspended, Req'd Info not Avail". We are encountering this bug also and I would glady provide information from our systems in order for the issue to be resolved.
    Thanks.
    PostScript: FWIW, Google yielded a blog referencing this error and Doc ID 1433113.1. I am unable to access that document (as was the blogger). Because of this, and another major caveat (our machines with this collection error do not have WLS installed on them), I'm thinking this probably needs to be an SR rather than a forum discussion.
    Edited by: JeriF on Feb 4, 2013 12:00 PM

  • Collect participans and collect Non-Partcipants

    Hi,
    I created all the settings for campaign automation. i mainted evey thing in sequence..after starting campaign automation i am getting this error
    Collect participants and collect Non partcipants are not maintained target groups and not maintained BP,s in the target group.
    after sending trade invitation the maul form will be reached to customer and customer will respond to survey.then respondents and non respondents will reached to respective nodes.
    i maintained rules and conditions in response node.
    i dont know why it asking to fill target group's with bp's before start campaign automation.
    Normally after starting campaign automation the respondents and non respondents are reached to respective nodes.
    can u please provide solution for this problem.
    Thanks&Regards
    kishor kumar

    Hi Thanks for u r reply.
    My dought is here Collect participants and collect NOn Participants nodes are maintained Empty target groups or filled with BP,S
    my campaign structure is like this
    start node ... > Send Trade Invitation ...> Survey response....> Thank you mail
                                                                                    Collect participants
                                                                                    collect non-participants
                                                                                    collect non reponders ..........> Remainde email
    in my scenario system is triggering 2 work flows 1.start campaign process and 2. send target group to channel.
    After that it is showing below error messages
      Execution Log No business partners exist for execution with current target group Collect Non participants Display
      Execution Log No business partners exist for execution with current target group Collect TG Participants Display
    After starting campaign automation system execute one by one node.i am totally confused it is strucked here.
    can i get any solution for this issue
    Thanks&Regards
    kishor kumar

  • Distribute and Collect BPC NW 7.0

    Hi,
        I'm trying to test distribute and collect functionality in BPC 7.0. I was able to distribute reports to network drives. I was getting blank workbook without data. Any prerequisite for Workbook or report settings for distribute other than Password???
        1. Save workbook as "Live" and lock the Work Book.
        2. Set Worksheet Password to WB
        3. Upload saved workbook into app server.
        4. develop Distribute list using New list option from eTools.
        5. distribute workbook or report using "Distribute & Collect Offline Wizard".
       Made sure Marco security settings as per the requirement. File got created in the network folder. But, File created with NO DATA. Expansion and VAR Keys working great. NO DATA populated.
        Can any one of you help me to fix my problem.
    Thanks,
    Ben.

    No CE 7.1 is not sufficient.  You need NW 7.0 + Enh1.
    Best regards,
    [Jeffrey Holdeman|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/jeffrey+holdeman]
    Enterprise Performance Management
    Regional Implementation Group

  • Huge memory leaks in using PL/SQL tables and collections

    I have faced a very interesting problem recently.
    I use PL/SQL tables ( Type TTab is table of ... index by binary_integer; ) and collections ( Type TTab is table of ...; ) in my packages very widely. And have noticed avery strange thing Oracle does. It seems to me that there are memory leaks in PGA when I use PL/SQL tables or collections. Let me a little example.
    CREATE OR REPLACE PACKAGE rds_mdt_test IS
    TYPE TNumberList IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
    PROCEDURE test_plsql_table(cnt INTEGER);
    END rds_mdt_test;
    CREATE OR REPLACE PACKAGE BODY rds_mdt_test IS
    PROCEDURE test_plsql_table(cnt INTEGER) IS
    x TNumberList;
    BEGIN
    FOR indx IN 1 .. cnt LOOP
    x(indx) := indx;
    END LOOP;
    END;
    END rds_mdt_test;
    I run the following test code:
    BEGIN
    rds_mdt_test.test_plsql_table (1000000);
    END;
    and see that my session uses about 40M in PGA.
    If I repeat this example in the same session creating the PL/SQL table of smaller size, for instance:
    BEGIN
    rds_mdt_test.test_plsql_table (1);
    END;
    I see again that the size of used memory in PGA by my session was not decreased and still be the same.
    The same result I get if I use not PL/SQL tables, but collections or varrays.
    I have tried some techniques to make Oracle to free the memory, for instance to rewrite my procedure in the following ways:
    PROCEDURE test_plsql_table(cnt INTEGER) IS
    x TNumberList;
    BEGIN
    FOR indx IN 1 .. cnt LOOP
    x(indx) := indx;
    END LOOP;
    x.DELETE;
    END;
    or
    PROCEDURE test_plsql_table(cnt INTEGER) IS
    x TNumberList;
    BEGIN
    FOR indx IN 1 .. cnt LOOP
    x(indx) := indx;
    END LOOP;
    FOR indx in 1 .. cnt LOOP
    x.DELETE(indx);
    END LOOP;
    END;
    or
    PROCEDURE test_plsql_table(cnt INTEGER) IS
    x TNumberList;
    empty TNumberList;
    BEGIN
    FOR indx IN 1 .. cnt LOOP
    x(indx) := indx;
    END LOOP;
    x := empty;
    END;
    and so on, but result was the same.
    This is a huge problem for me as I have to manipulate collections and PL/SQL tables of very big size (from dozens of thousand of rows to millions or rows) and just a few sessions running my procedure may cause server's fall due to memory lack.
    I can not understand what Oracle reseveres such much memory for (I use local variables) -- is it a bug or a feature?
    I will be appreciated for any help.
    I use Oracle9.2.0.1.0 server under Windows2000.
    Thank you in advance.
    Dmitriy.

    Thank you, William!
    Your advice about using DBMS_SESSION.FREE_UNUSED_USER_MEMORY was very useful. Indeed it is the tool I was looking for.
    Now I write my code like this
    declare
    type TTab is table of ... index binary_integer;
    res TTab;
    empty_tab TTab;
    begin
    res(1) := ...;
    res := empty_tab;
    DBMS_SESSION.FREE_UNUSED_USER_MEMORY;
    end;
    I use construction "res := empty_tab;" to mark all memory allocated to PL/SQL table as unused according to Tom Kyte's advices. And I could live a hapy life if everything were so easy. Unfortunately, some tests I have done showed that there are some troubles in cleaning complex nested PL/SQL tables indexed by VARCHAR2 which I use in my current project.
    Let me another example.
    CREATE OR REPLACE PACKAGE rds_mdt_test IS
    TYPE TTab0 IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
    TYPE TRec1 IS RECORD(
    NAME VARCHAR2(4000),
    rows TTab0);
    TYPE TTab1 IS TABLE OF TRec1 INDEX BY BINARY_INTEGER;
    TYPE TRec2 IS RECORD(
    NAME VARCHAR2(4000),
    rows TTab1);
    TYPE TTab2 IS TABLE OF TRec2 INDEX BY BINARY_INTEGER;
    TYPE TStrTab IS TABLE OF NUMBER INDEX BY VARCHAR2(256);
    PROCEDURE test_plsql_table(cnt INTEGER);
    PROCEDURE test_str_tab(cnt INTEGER);
    x TTab2;
    empty_tab2 TTab2;
    empty_tab1 TTab1;
    empty_tab0 TTab0;
    str_tab TStrTab;
    empty_str_tab TStrTab;
    END rds_mdt_test;
    CREATE OR REPLACE PACKAGE BODY rds_mdt_test IS
    PROCEDURE test_plsql_table(cnt INTEGER) IS
    BEGIN
    FOR indx1 IN 1 .. cnt LOOP
    FOR indx2 IN 1 .. cnt LOOP
    FOR indx3 IN 1 .. cnt LOOP
    x(indx1) .rows(indx2) .rows(indx3) := indx1;
    END LOOP;
    END LOOP;
    END LOOP;
    x := empty_tab2;
    dbms_session.free_unused_user_memory;
    END;
    PROCEDURE test_str_tab(cnt INTEGER) IS
    BEGIN
    FOR indx IN 1 .. cnt LOOP
    str_tab(indx) := indx;
    END LOOP;
    str_tab := empty_str_tab;
    dbms_session.free_unused_user_memory;
    END;
    END rds_mdt_test;
    1. Running the script
    BEGIN
    rds_mdt_test.test_plsql_table ( 100 );
    END;
    I see that usage of PGA memory in my session is close to zero. So, I can judge that nested PL/SQL table indexed by BINARY_INTEGER and the memory allocated to it were cleaned successfully.
    2. Running the script
    BEGIN
    rds_mdt_test.test_str_tab ( 1000000 );
    END;
    I can see that plain PL/SQL table indexed by VARCHAR2 and memory allocated to it were cleaned also.
    3. Changing the package's type
    TYPE TTab2 IS TABLE OF TRec2 INDEX BY VARCHAR2(256);
    and running the script
    BEGIN
    rds_mdt_test.test_plsql_table ( 100 );
    END;
    I see that my session uses about 62M in PGA. If I run this script twice, the memory usage is doubled and so on.
    The same result I get if I rewrite not highest, but middle PL/SQL type:
    TYPE TTab1 IS TABLE OF TRec1 INDEX BY VARCHAR2(256);
    And only if I change the third, most nested type:
    TYPE TTab0 IS TABLE OF NUMBER INDEX BY VARCHAR2(256);
    I get the desired result -- all memory was returned to OS.
    So, as far as I can judge, in some cases Oracle does not clean complex PL/SQL tables indexed by VARCHAR2.
    Is it true or not? Perhaps there are some features in using such way indexed tables?

  • Getting "safari cannot open the page because the network connection was lost" on a popular UK electrical retailer when trying to click and collect, yet I have excellent 3G and WIFI connections

    When I try and use a click and collect service via a popular electrical retailers website in the UK I get " safari cannot open the page because the network connection was lost"
    I have a superb WIFI connection and have tried it via 3G.
    I am not getting this on other websites, however have recently updated Safari.
    Any ideas?

    Install Chrome and see if the problem lies with Safari...that's where it was with my mini.

Maybe you are looking for

  • When using a path, jagged lines, not smooth lines, uneven lines

    I am using a Mac, photoshop CS5 I created a path with Curves with the pen tool. filled it in with a color light blue. than I use the paint bucket to change it to dark blue. This is when the curved lines become jagged, not smooth, uneven. also I would

  • How I Got Boxee Working On A New Arch Install -- 3/12/2011

    I thought I'd post a log of how one gets boxee-source working as of version 0.9.23.15885-2. I recently built myself a new media center/apache server/seedbox and thought I would put arch on it.  The Install was a breeze --- as far any arch install is

  • TS1702 All my documents in Pages for iPad 2 will not open.

    All my documents show the first page of the User Guide. If I clicked on any of them, they would not open, except for the User Guide itself. I have deleted the App and reinstalled it. All documents have gone, but i still have them on iTunes and iPhone

  • Tomcat as a Service with -Xms512M -Xmx1024M

    Hello all, In order to run successfully my application with Tomcat 5.0.20 on Windows XP I had to change the memory settings. So in the System environment variable I've added: JAVA_OPTS = -Xms512M -Xmx1024M CATALINE_OPTS = -Xms512M -Xmx1024M and if I

  • I can't find the favorites I imported from Expelor

    ''dupe of https://support.mozilla.org/en-US/questions/978804'' I want to use Firefox, but if I can't use my favorites it is of no use to me. I followed the instructions to download favorites from Explorer several times but cannot find them.