More than 34 columns to show in a report

hi,
I select 50 columns from a table; in the report I can see only up to 34; where is this limit set and how can I change it?
(It is not the field: "Maximum number of generic report columns" in tab Region definition, this has no impact for the report);
all 50 atttributes are ticked to show.
Thank you for any hint
val
Application Express 3.1.2.00.02

Hi,
Copy the source of your report. Delete the report and then recreate it with the query. All should display then.
Mike

Similar Messages

  • Return to more than columns from LOV

    I need return to more than columns from LOV. All columns belong to one form region
    Please helpl me
    Mary

    Hi Mary,
    Do you mean you need to return more than 3? If so then in the link area change the Target to URL and do something like the following:
    f?p=&APP_ID.:7:&SESSION.::&DEBUG.::P7_UNIQUE_ROWID,P7_OET_TBL_NM:#UNIQUE_ROWID#,#OET_TBL_NM#Items on left separated by commas, values on right separated by commas and a colon (:) in the middle...make sure the items & values are placed in the same order.
    Mike

  • Can I export (burn) more than one slide show to the same DVD

    Can I export (burn) more than one slide show I created in iPhoto to the same DVD, and if yes, how?

    Yes.  If you're using iDVD export the slideshow out of iPhoto at 480p size and drag it into an open iDVD menu window, being careful to avoid any drop zones.  iDVD can handle up to 120 minutes of playing time (movies plus menus) on a single layer DVD disk.
    Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    OT

  • How to get more than 4 coloured rows in a report depending on column values

    Hi,
    I've looked through the forum and found some stuff on mutli-coloured reports and found the link to http://htmldb.oracle.com/pls/otn/f?p=11933:7:557008579481721819
    But I have several problems:
    This shows how to get 3 colours, but it's easy to get up to 4 by just using the "Column Templates" in a new report template.
    I don't understand where to put the snippets. It says to put them in "Row Templates" , "Before Rows" and "After Rows" but my report template page doesn't have these options! I've got "Column Templates" (4 of them), "Before Each Row" and "After Each Row".
    Am I looking at a link for an old version?
    What I want to do is set the row colour dependant on a column called "level" which is between 1 and 5.
    Thanks

    Hi Vikas,
    It's almost perfect now. My only problem is that the pagination table is, for some reason, enclosed within the results table (I've used FireFox web developer's tools and checked the souce HTML to be sure of this). So, if I have a border at table level, it appears on the row containing the pagination.
    I've had to remove table borders and put right borders on the table data cells, but I can't find a way to put left borders on the table rows, so I have a pretty table with 5 levels of colour, but no borders on the left-hand side.
    Ideally I'd like to avoid having the pagination stuff within the results table, but I can't see how/where to put a </table> to sort this out!
    Ros

  • How to select more than one free characteristics in web report?

    Hi,
    From the performance point of view, I want to select more than one free characteristics to be displayed in WEB report.
    I know in BEx Analyzer, we can do this by right mouse click and choose' query property' from the context menu, all the free characteristics are displayed in the popup window. But in WEB report these free char don't displayed in the 'query property' popup window.
    Could anyone tell me how to implement this in WEB report?
    Eileen

    Hi,
    each free characteristics in the list has two functions beside it, 'drilldown in rows' and 'drilldown in columns', but this functions as select only one free characteristics, each time you select one, the report will be loaded again.
    if I want to select like 10 free characteristics, the report will be refreshed and reloaded 10 times.
    my question is that how can I select these 10 free characteristics once to improve the performance.
    your help will be appreciated. Thanks.
    Eileen

  • How to pass more than 3 Items in link of report attribute?

    I have a report with edit link.
    After user click link, then go to next page. I want to pass more than 3 items in this link, item 1 name=xxx and value=#xxx#.
    How can I do this?
    Thanks.

    Why wouldn't you pass item values through links...is it not why they were created?1. Item values may contain characters that are not URL safe in general ('#') or in APEX (':'), causing the link to fail.
    2. Recognisable item values that are visible in the URL are a security issue, and invite URL tampering that in a poorly designed and implemented system may allow unauthorised access to data.
    3. There are limits on the length of URL APEX, user agents and servers are capable of handling.
    4. Lots of long URLs in links drives up page weight and bandwidth usage.
    5. General housekeeping problems and maintainenance issues: think about going backwards and forwards in single-row APEX URL text item showing 60 chars when making changes to a 2000-character URL.
    Best practice when passing parameters through a URL is to use as few as possible: preferably single, unique, "meaningless" sequence- or sys_guid-generated references.

  • How to send more than one parameter from FORM to REPORT?

    Dear all,
    i can send one parameter from FORM to REPORT. but when i send more than one parameter it gives error: frm 41214 unable to run report.
    here is the code i think the error is in the following line of procedure:
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no p_date_from='||v_date_from||'p_date_to='||v_date_to);
    where to place the parameters and is there any space is required?
    Thanks
    Muhammad Nadeem

    Dear Saeed Iqbal,
    thanks for you reply.
    dear i am using Form 10g run_product is not supported in this version.
    i am using RUN_REPORT_OBJECT.
    PROCEDURE rep_gl_ledger IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(50);
    v_date_from date;
    v_date_to date;
    v_detail_id_from varchar2(100);
    v_detail_id_to varchar2(100);
    v_voucher_type varchar2(100);
    --req_no char(17);
    BEGIN
    v_date_from :=      :ledger_para.p_date_from;
    v_date_to :=      :ledger_para.p_date_to;
    v_detail_id_from :=      :ledger_para.p_detail_id_from;
    v_detail_id_to :=      :ledger_para.p_detail_id_to;
    v_voucher_type :=      :ledger_para.p_voucher_type;
    repid := find_report_object('gl_ledger');
    --repid := find_report_object('REPORT80');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'rep_online_FRHome');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no p_date_from='||v_date_from||'p_date_to='||v_date_to);
    --SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /* Display report in the browser */
    WEB.SHOW_DOCUMENT('http://'||:GLOBAL.G_IP||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?','_blank');
    ELSE
         message('Error when running report');
    END IF;
    END;
    Regards:
    Muhammad Nadeem

  • More than 1 record by line in reports

    Hello everybody.
    Can anybody tell me How I can display more than 1 record in same line of a report?
    Thanks in advanced.
    Regards everybody.

    Selzeus,
    Is this what you are searching for:
    http://daust.blogspot.com/2007/03/apex-nested-reports.html
    Denes Kubicek

  • Please allow more than 13 digits in the financial report calculation

    Dear SAP development team,
    I would like to suggest the financial report programming code or query or what else that is used to generate the financial reports (TB;P&L;BS) could allow the calculation of debit or credit more than 9223372036854. It made me laugh that it is not allowed.
    Why I said so ? Here are the reasons:
    1. The report data is not stored on a specific table
    2. If the report has calculated debit or credit greater than 9223372036854 while report processing is taking place, the report should still be appears but the amount of debit or credit that greater than 9223372036854, please put the zero on the debit or credit.
    I expect that we could still use the report either money overflow happened.
    John

    Hi, Yang
    My colleagues came across that problem recently. I advised them to split the transaction and create several transaction instead thereby avoinding using more than 13 digits.
    Another way that came to my mind is to create a new currency with excnage rate (say) 1:1000 . And create the transaction using this currency.
    Can't say that both solutions are perfect but I am afraid these are only ones.
    Konstantin.

  • Freetext with more than 300 char show with function or class

    Hi all
    I search a function or a Class how could show freetext with more than 300 char like a popup.
    Now somebody one ?
    Thanks in advance

    Hi
    Try to use HELP_DOCULINES_SHOW
    Max

  • Print more than what's showing in text field?

    Is there any way I can set a pdf form to print more than what is displayed in a text field? i.e., when there are more text lines than space in the text field and you need to scroll down to read it?
    The only way I can think is to collate responses and export to a spreadsheet and print from there but I was wondering if there was a way to do it from the form itself (i.e., have the text automatically shrink or have it print more on the page and have the document made automatically longer.
    Cheers

    Thank you - Is there an equivalent simple feature for LIVECYCLE such as setting font size to AUTO or do  I need to go into that dynamic fiels thingy?
    Cheers:)

  • Photoshop CS5 crashes every time I open more than one image, why? (crash report included)

    The process is, I open up my tiff file that's i'm going to paint on. I go to window, arrange, new window for ____.tiff so I can see a mini
    version of it as I paint. I then open a picture (also in photoshop) for my background, to use that as reference as I paint. Also because
    I don't want to switch back and forth between my now mini window, and this reference picture. I move the picture out so I can see
    all 3 images, and boom, it crashes. Every single time. It was working perfectly before I put in my serial code for it. I have no idea
    what I did wrong.
    Here is my crash report. Thank you for your help!
    Process:         Adobe Photoshop CS5 [2258]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0 (12.0x20100407.r.1103) (12.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Interval Since Last Report:          4327069 sec
    Crashes Since Last Report:           48
    Per-App Interval Since Last Report:  345889 sec
    Per-App Crashes Since Last Report:   9
    Date/Time:       2011-02-15 14:06:18.436 -0500
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  A21F2F7D-BA07-481C-A9FE-04AFEAD1F2ED
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    Crashed Thread:  0
    Thread 0 Crashed:
    0   com.adobe.owl                 0x00000001036bc18f OWLDockGetAnchor + 8195
    1   com.adobe.owl                 0x0000000103622c3e 0x1035f1000 + 203838
    2   com.adobe.owl                 0x0000000103629d32 OWLHandleNSApplicationEvent + 40
    3   com.adobe.Photoshop           0x000000010024f86d 0x100000000 + 2422893
    4   com.adobe.Photoshop           0x00000001002793a9 0x100000000 + 2593705
    5   com.adobe.PSAutomate          0x0000000121f90f17 CPsWActionControl::Get(CPsWActionReference const&, CPsWActionDescriptor&) + 31
    6   com.adobe.PSAutomate          0x0000000121f89cb1 CPsActionUtils::GetGenericProperty(CPsTargetGenerator const&, unsigned int, CPsWActionDescriptor&) + 71
    7   com.adobe.PSAutomate          0x0000000121f89eb9 CPsActionUtils::GetObjectProperty(CPsTargetGenerator const&, unsigned int, CPsWActionDescriptor&) + 49
    8   com.adobe.PSAutomate          0x0000000121f54c62 CPsApplication::GetForegroundColor(MultiScript::InterfacePtr<CPsSolidColor>&) const + 66
    9   com.adobe.PSAutomate          0x0000000121f09b2f CPsApplication::HostGet(int, ScCore::Variant&) const + 3377
    10  com.adobe.PSAutomate          0x0000000121fa85e6 MultiScript::TProxyBase<ScCore::LiveObject>::get(int, ScCore::Variant&, ScCore::Error*) const + 240
    11  com.adobe.AdobeExtendScript   0x00000001223c4a6d ScScript::LiveObjectProperty::get(ScScript::Object&, int) + 941
    12  com.adobe.AdobeExtendScript   0x0000000122385bd4 jsOpVariable::get(jsRunner&, ScScript::PropRef&, ScScript::ESVariant&, bool) + 68
    13  com.adobe.AdobeExtendScript   0x0000000122380470 jsOpProperty::run(jsRunner&, ScScript::ESVariant&) const + 176
    14  com.adobe.AdobeExtendScript   0x00000001223805af jsOpProperty::getRef(jsRunner&, ScScript::PropRef&, int) const + 271
    15  com.adobe.AdobeExtendScript   0x0000000122380408 jsOpProperty::run(jsRunner&, ScScript::ESVariant&) const + 72
    16  com.adobe.AdobeExtendScript   0x00000001223805af jsOpProperty::getRef(jsRunner&, ScScript::PropRef&, int) const + 271
    17  com.adobe.AdobeExtendScript   0x0000000122380408 jsOpProperty::run(jsRunner&, ScScript::ESVariant&) const + 72
    18  com.adobe.AdobeExtendScript   0x00000001223805af jsOpProperty::getRef(jsRunner&, ScScript::PropRef&, int) const + 271
    19  com.adobe.AdobeExtendScript   0x000000012237962f jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 95
    20  com.adobe.AdobeExtendScript   0x000000012237df6c jsOpList::run(jsRunner&, ScScript::ESVariant*) const + 76
    21  com.adobe.AdobeExtendScript   0x00000001223798b5 jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 741
    22  com.adobe.AdobeExtendScript   0x0000000122378634 jsOpBinary::run(jsRunner&, ScScript::ESVariant&) const + 1508
    23  com.adobe.AdobeExtendScript   0x00000001223776f2 jsOpAssign::run(jsRunner&, ScScript::ESVariant&) const + 258
    24  com.adobe.AdobeExtendScript   0x0000000122382390 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 208
    25  com.adobe.AdobeExtendScript   0x000000012237be27 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 215
    26  com.adobe.AdobeExtendScript   0x00000001223a5741 jsRunner::run(ScScript::ESVariant&) + 113
    27  com.adobe.AdobeExtendScript   0x0000000122392d3f jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 287
    28  com.adobe.AdobeExtendScript   0x0000000122379930 jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 864
    29  com.adobe.AdobeExtendScript   0x0000000122382390 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 208
    30  com.adobe.AdobeExtendScript   0x000000012237be27 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 215
    31  com.adobe.AdobeExtendScript   0x00000001223a5741 jsRunner::run(ScScript::ESVariant&) + 113
    32  com.adobe.AdobeExtendScript   0x0000000122392cb8 jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 152
    33  com.adobe.AdobeExtendScript   0x00000001223c9504 ScScript::RealEngine::exec(int, ScScript::Object&, ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&, int) + 1652
    34  com.adobe.AdobeExtendScript   0x00000001223cd40d ScScript::RealEngine::eval(ScScript::Script&, ScCore::Variant*, int, int, ScCore::Variant const*) + 685
    35  com.adobe.AdobeExtendScript   0x00000001223c8dc1 ScScript::RealEngine::eval(ScCore::String const&, ScCore::Variant*, int, int, ScCore::Variant const*, ScCore::String const*, int) + 225
    36  com.adobe.PSAutomate          0x0000000121fa317a MultiScript::ExtendScript::RunScript(ScScript::Engine*, ScCore::String const&, ScCore::Array const&, MultiScript::ExtendScript::ExecutionModeType, ScCore::String const*, ScCore::String&) const + 538
    37  com.adobe.PSAutomate          0x0000000121fa3390 MultiScript::ExtendScriptEngine::ExecuteJSScript(ScCore::String const&, MultiScript::ExtendScript::ExecutionModeType) const + 96
    38  com.adobe.PSAutomate          0x0000000121fbac5f MultiScript::JSScriptingSuite::ExecuteScript(_t_JSEngine*, unsigned short const*, JavaScriptExecutionMode, unsigned short const**) + 199
    39  com.adobe.Photoshop           0x0000000100f89fcd AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13292689
    40  com.adobe.Photoshop           0x0000000100f8eeba AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13312894
    41  com.adobe.Photoshop           0x0000000100f9b843 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13364487
    42  com.adobe.PlugPlug            0x00000001068493e0 PlugPlugErrorCode boost::_bi::bind_t<PlugPlugErrorCode, PlugPlugErrorCode (*)(char const*, char const*, char const**), boost::_bi::list3<boost::arg<1> (*)(), boost::arg<2> (*)(), boost::arg<3> (*)()> >::operator()<char const*, char const*, char const**>(char const*&, char const*&, char const**&) + 44
    43  com.adobe.PlugPlug            0x0000000106849407 boost::detail::function::function_obj_invoker3<boost::_bi::bind_t<PlugPlugErrorCode, PlugPlugErrorCode (*)(char const*, char const*, char const**), boost::_bi::list3<boost::arg<1> (*)(), boost::arg<2> (*)(), boost::arg<3> (*)()> >, PlugPlugErrorCode, char const*, char const*, char const**>::invoke(boost::detail::function::function_buffer&, char const*, char const*, char const**) + 37
    44  com.adobe.PlugPlug            0x000000010684c73c boost::function3<PlugPlugErrorCode, char const*, char const*, char const**>::operator()(char const*, char const*, char const**) const + 114
    45  com.adobe.PlugPlug            0x000000010684c767 csxs::services::host::ApplicationCallbacks::EvaluateScript(char const*, char const*, char const**) + 21
    46  com.adobe.PlugPlug            0x000000010684beff csxs::services::host::ApplicationCallbacksLogger::EvaluateScript(char const*, char const*, char const**) + 73
    47  com.adobe.PlugPlug            0x00000001068337e3 csxs::commands::CmdEvalScriptImpl::Execute() + 213
    48  com.adobe.PlugPlug            0x000000010682e7e7 CmdFactoryExtensionCall::DoEvalScript(bool, char const*, char const*, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&) + 335
    49  com.adobe.PlugPlug            0x000000010682ef80 CmdFactoryExtensionCall::GetResult(bool, char const*, char const*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&) + 332
    50  com.adobe.PlugPlug            0x000000010684dc78 csxs::services::extensioncalls::ExtensionCallCommandFactory::Evaluate(std::basic_string<c har, std::char_traits<char>, std::allocator<char> >, vcfoundation::data::IVCString*, vcfoundation::data::IVCMutableString*) + 152
    51  com.adobe.PlugPlug            0x000000010685292e csxs::internal::StageManagerController::HandleExternalInterfaceCall(vcfoundation::data::I VCString*, char const**) + 578
    52  com.adobe.PlugPlug            0x000000010682168c PlugPlugExtensionCall + 340
    53  com.adobe.Photoshop           0x0000000100f9b627 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13363947
    54  com.adobe.Photoshop           0x0000000100f910eb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13321647
    55  com.adobe.Photoshop           0x000000010110c9d0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 14876308
    56  com.adobe.ape                 0x00000001225884e6 APEStreamWrite + 33366
    57  com.adobe.ape                 0x00000001225847e2 APEStreamWrite + 17746
    58  com.adobe.ape                 0x000000012257bec7 APEInitialize + 6903
    59  com.adobe.ape                 0x0000000122581c86 APEStreamWrite + 6646
    60  com.adobe.adobeswfl           0x0000000125880151 SWFLPlayer_Initialize + 4529
    61  com.adobe.adobeswfl           0x0000000125526c3d APXGetHostAPI + 1020445
    62  ???                           0x000000012926d8ab 0 + 4985378987
    63  ???                           0x00000001298cc621 0 + 4992058913
    64  ???                           0x00000001298cdaea 0 + 4992064234
    65  ???                           0x00000001298ce0ae 0 + 4992065710
    66  ???                           0x00000001298ca750 0 + 4992051024
    67  ???                           0x0000000129a5195b 0 + 4993653083
    68  com.adobe.adobeswfl           0x0000000125a8ca3e SWFLPlayer_Initialize + 2153118
    69  com.adobe.adobeswfl           0x0000000125a6f59d SWFLPlayer_Initialize + 2033149
    70  ???                           0x00000001292683f0 0 + 4985357296
    71  ???                           0x0000000129268879 0 + 4985358457
    72  ???                           0x0000000129263f5f 0 + 4985339743
    73  com.adobe.adobeswfl           0x0000000125526af7 APXGetHostAPI + 1020119
    74  com.adobe.adobeswfl           0x0000000125528223 APXGetHostAPI + 1026051
    75  com.adobe.adobeswfl           0x00000001258265dc APXGetHostAPI + 4164540
    76  com.adobe.adobeswfl           0x0000000125886cd4 SWFLPlayer_Initialize + 32052
    77  com.adobe.ape                 0x000000012257a946 APEInitialize + 1398
    78  com.adobe.ape                 0x000000012257fa38 APEPlayerCallExternalInterface + 88
    79  com.adobe.Photoshop           0x000000010110c8c4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 14876040
    80  com.adobe.Photoshop           0x0000000100f8eaaa AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13311854
    81  com.adobe.Photoshop           0x0000000100f8f882 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13315398
    82  com.adobe.Photoshop           0x00000001002502b9 0x100000000 + 2425529
    83  com.adobe.Photoshop           0x000000010054b4b6 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2550138
    84  com.adobe.Photoshop           0x000000010054b6d1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2550677
    85  com.adobe.Photoshop           0x00000001000c53c6 0x100000000 + 807878
    86  com.adobe.Photoshop           0x00000001000c53c6 0x100000000 + 807878
    87  com.adobe.Photoshop           0x00000001000b36ae 0x100000000 + 734894
    88  com.adobe.Photoshop           0x0000000100516dee AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2335410
    89  com.adobe.Photoshop           0x00000001000c53c6 0x100000000 + 807878
    90  com.adobe.Photoshop           0x00000001000c53c6 0x100000000 + 807878
    91  com.adobe.Photoshop           0x00000001000c53c6 0x100000000 + 807878
    92  com.adobe.Photoshop           0x00000001000c53c6 0x100000000 + 807878
    93  com.adobe.Photoshop           0x00000001000c53c6 0x100000000 + 807878
    94  com.adobe.Photoshop           0x00000001000c9057 0x100000000 + 823383
    95  com.adobe.Photoshop           0x0000000100cddf85 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 10490953
    96  com.adobe.Photoshop           0x0000000100cdd3de AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 10487970
    97  com.adobe.Photoshop           0x0000000100cdd794 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 10488920
    98  com.adobe.Photoshop           0x00000001012e30aa AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16803182
    99  com.apple.AppKit              0x00007fff83493608 -[NSView _recursiveLostHiddenAncestor] + 128
    100 com.apple.CoreFoundation      0x00007fff82c48a78 CFArrayApplyFunction + 216
    101 com.apple.AppKit              0x00007fff83413adc -[NSView(NSInternal) _setHidden:setNeedsDisplay:] + 1206
    102 com.adobe.owl                 0x00000001036e6905 OWLApplicationContainerGetBounds + 54809
    103 com.adobe.owl                 0x00000001036cd020 OWLDocumentSetCursorForTrackResize + 32414
    104 com.adobe.owl                 0x000000010366fa63 OWLDictionaryGetValue + 20079
    105 com.adobe.owl                 0x00000001036b4efa OWLDictionaryGetValue + 303878
    106 com.adobe.owl                 0x00000001036e37c3 OWLApplicationContainerGetBounds + 42199
    107 com.adobe.owl                 0x00000001036e39e1 OWLApplicationContainerGetBounds + 42741
    108 com.adobe.owl                 0x0000000103680d59 OWLDictionaryGetValue + 90469
    109 com.adobe.owl                 0x000000010368c733 OWLDictionaryGetValue + 138047
    110 com.adobe.owl                 0x00000001036913b7 OWLDictionaryGetValue + 157635
    111 com.adobe.owl                 0x00000001036945ad OWLDictionaryGetValue + 170425
    112 com.adobe.owl                 0x000000010366b55b OWLDictionaryGetValue + 2407
    113 com.adobe.owl                 0x0000000103643e32 OWLControlBarGetPreferredSize + 78100
    114 com.adobe.owl                 0x0000000103644a38 OWLControlBarGetPreferredSize + 81178
    115 com.adobe.owl                 0x00000001036c1095 OWLToolbarChangeMenu + 489
    116 com.adobe.owl                 0x000000010362ab28 OWLRemoveObjCExceptionCallback + 3520
    117 com.apple.Foundation          0x00007fff81bbd4c0 _nsnote_callback + 112
    118 com.apple.CoreFoundation      0x00007fff82c940f6 _CFXNotificationPostNotification + 566
    119 com.apple.Foundation          0x00007fff81bba756 -[NSNotificationCenter postNotificationName:object:userInfo:] + 102
    120 com.apple.AppKit              0x00007fff834daca0 -[NSWindow _setFrameCommon:display:stashSize:] + 1417
    121 com.adobe.owl                 0x000000010362a991 OWLRemoveObjCExceptionCallback + 3113
    122 com.adobe.owl                 0x0000000103640cbc OWLControlBarGetPreferredSize + 65438
    123 com.adobe.owl                 0x0000000103640d96 OWLControlBarGetPreferredSize + 65656
    124 com.adobe.owl                 0x00000001036910f3 OWLDictionaryGetValue + 156927
    125 com.adobe.owl                 0x0000000103692592 OWLDictionaryGetValue + 162206
    126 com.adobe.owl                 0x0000000103652e74 OWLWidgetMove + 46146
    127 com.adobe.owl                 0x000000010368c8e5 OWLDictionaryGetValue + 138481
    128 com.adobe.owl                 0x000000010364dba2 OWLWidgetMove + 24944
    129 com.adobe.owl                 0x000000010364ddf3 OWLWidgetMove + 25537
    130 com.adobe.owl                 0x000000010364e28a OWLWidgetMove + 26712
    131 com.adobe.owl                 0x000000010361b2b4 0x1035f1000 + 172724
    132 com.adobe.owl                 0x000000010363fb12 OWLControlBarGetPreferredSize + 60916
    133 com.adobe.owl                 0x00000001036c57c0 OWLDocumentSetCursorForTrackResize + 1598
    134 com.adobe.owl                 0x00000001036ca571 OWLDocumentSetCursorForTrackResize + 21487
    135 com.adobe.owl                 0x00000001036c7b8f OWLDocumentSetCursorForTrackResize + 10765
    136 com.adobe.owl                 0x00000001036bbfcf OWLDockGetAnchor + 7747
    137 com.adobe.owl                 0x00000001036bc0e5 OWLDockGetAnchor + 8025
    138 com.adobe.owl                 0x000000010360e5f7 0x1035f1000 + 120311
    139 com.apple.AppKit              0x00007fff834f4815 -[NSWindow sendEvent:] + 5214
    140 com.adobe.owl                 0x0000000103629fd1 OWLRemoveObjCExceptionCallback + 617
    141 com.adobe.owl                 0x000000010362bffe OWLRemoveObjCExceptionCallback + 8854
    142 com.apple.AppKit              0x00007fff834c1d46 -[NSApplication sendEvent:] + 5089
    143 com.adobe.Photoshop           0x00000001012ef760 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16854052
    144 com.adobe.Photoshop           0x00000001012efcf4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16855480
    145 com.apple.AppKit              0x00007fff8341c562 -[NSApplication run] + 497
    146 com.adobe.Photoshop           0x00000001012ee19c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16848480
    147 com.adobe.Photoshop           0x00000001012ef3c7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16853131
    148 com.adobe.Photoshop           0x0000000100068e82 0x100000000 + 429698
    149 com.adobe.Photoshop           0x0000000100238308 0x100000000 + 2327304
    150 com.adobe.Photoshop           0x00000001002383a7 0x100000000 + 2327463
    151 com.adobe.Photoshop           0x0000000100002ea4 0x100000000 + 11940
    Thread 1:
    0   libSystem.B.dylib             0x00007fff806c7706 kevent + 10
    1   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    2   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 2:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.amt.services        0x0000000106e1cc53 AMTConditionLock::LockWhenCondition(int) + 37
    2   com.adobe.amt.services        0x0000000106e15cce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    3   com.adobe.amt.services        0x0000000106e1ccbe AMTThread::Worker(void*) + 28
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib             0x00007fff80699e2a semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore 0x00007fff825d6371 MPWaitOnSemaphore + 96
    2   MultiProcessor Support        0x000000011b639bd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore 0x00007fff825c5a5c PrivateMPEntryPoint + 42
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   ...ple.CoreServices.CarbonCore 0x00007fff825c74b4 TSWaitOnCondition + 118
    2   ...ple.CoreServices.CarbonCore 0x00007fff825acc06 TSWaitOnConditionTimedRelative + 177
    3   ...ple.CoreServices.CarbonCore 0x00007fff825c7165 MPWaitOnQueue + 191
    4   AdobeACE                      0x000000010592a23d 0x1058f0000 + 238141
    5   AdobeACE                      0x0000000105929bea 0x1058f0000 + 236522
    6   ...ple.CoreServices.CarbonCore 0x00007fff825c5a5c PrivateMPEntryPoint + 42
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.PSAutomate          0x00000001220820fb ScObjects::Thread::sleep(unsigned int) + 59
    2   com.adobe.PSAutomate          0x0000000122064033 ScObjects::BridgeTalkThread::run() + 163
    3   com.adobe.PSAutomate          0x00000001220821f6 ScObjects::Thread::go(void*) + 166
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   libGLProgrammability.dylib    0x00007fff811e557b glvmDoWork + 155
    2   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    3   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.adobeswfl           0x000000012567f04d APXGetHostAPI + 2430509
    2   com.adobe.adobeswfl           0x0000000125440a39 APXGetHostAPI + 77849
    3   com.adobe.adobeswfl           0x000000012567f161 APXGetHostAPI + 2430785
    4   com.adobe.adobeswfl           0x000000012567f2ba APXGetHostAPI + 2431130
    5   com.adobe.adobeswfl           0x000000012567f3b0 APXGetHostAPI + 2431376
    6   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    7   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.adobeswfl           0x000000012567f04d APXGetHostAPI + 2430509
    2   com.adobe.adobeswfl           0x0000000125440a39 APXGetHostAPI + 77849
    3   com.adobe.adobeswfl           0x000000012567f161 APXGetHostAPI + 2430785
    4   com.adobe.adobeswfl           0x000000012567f2ba APXGetHostAPI + 2431130
    5   com.adobe.adobeswfl           0x000000012567f3b0 APXGetHostAPI + 2431376
    6   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    7   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib             0x00007fff80699dd6 mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff806a1413 mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff82cb09cf CFRunLoopRunSpecific + 1631
    3   com.apple.audio.CoreAudio     0x00007fff84c9a65a HALRunLoop::OwnThread(void*) + 142
    4   com.apple.audio.CoreAudio     0x00007fff84c9a597 CAPThread::Entry(CAPThread*) + 67
    5   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    6   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib             0x00007fff80699dd6 mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff806a1413 mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff82cb09cf CFRunLoopRunSpecific + 1631
    3   com.apple.CoreMediaIOServices 0x00007fff8109e63a MIO::DAL::RunLoop::OwnThread(void*) + 142
    4   com.apple.CoreMediaIOServices 0x00007fff810a04cb CAPThread::Entry(CAPThread*) + 67
    5   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    6   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib             0x00007fff80699e36 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff806c8c4a _pthread_cond_wait + 1207
    2   com.adobe.adobeswfl           0x000000012567f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl           0x0000000125814943 APXGetHostAPI + 4091683
    4   com.adobe.adobeswfl           0x000000012567f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl           0x000000012567f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl           0x000000012567f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib             0x00007fff80699e36 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff806c8c4a _pthread_cond_wait + 1207
    2   com.adobe.adobeswfl           0x000000012567f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl           0x000000012569b95c APXGetHostAPI + 2547516
    4   com.adobe.adobeswfl           0x000000012567f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl           0x000000012567f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl           0x000000012567f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib             0x00007fff8070de82 recvfrom + 10
    1   ServiceManager-Launcher.dylib 0x0000000128921adf Invoke + 50273
    2   ServiceManager-Launcher.dylib 0x0000000128920b26 Invoke + 46248
    3   ServiceManager-Launcher.dylib 0x0000000128920b81 Invoke + 46339
    4   ServiceManager-Launcher.dylib 0x0000000128920c02 Invoke + 46468
    5   ServiceManager-Launcher.dylib 0x000000012891b30d Invoke + 23695
    6   ServiceManager-Launcher.dylib 0x000000012891b4a6 Invoke + 24104
    7   ServiceManager-Launcher.dylib 0x000000012891bf2f Invoke + 26801
    8   ServiceManager-Launcher.dylib 0x000000012891c01d Invoke + 27039
    9   ServiceManager-Launcher.dylib 0x000000012891f31f Invoke + 40097
    10  ServiceManager-Launcher.dylib 0x000000012891f5c5 Invoke + 40775
    11  ServiceManager-Launcher.dylib 0x000000012891fb84 Invoke + 42246
    12  ServiceManager-Launcher.dylib 0x000000012891fd71 Invoke + 42739
    13  ServiceManager-Launcher.dylib 0x0000000128911daf Login + 1773
    14  ServiceManager-Launcher.dylib 0x0000000128913295 Login + 7123
    15  ServiceManager-Launcher.dylib 0x00000001289202a8 Invoke + 44074
    16  ServiceManager-Launcher.dylib 0x00000001289226c1 Invoke + 53315
    17  libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    18  libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib             0x00007fff80699e36 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff806c8c4a _pthread_cond_wait + 1207
    2   com.adobe.adobeswfl           0x000000012567f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl           0x0000000125814943 APXGetHostAPI + 4091683
    4   com.adobe.adobeswfl           0x000000012567f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl           0x000000012567f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl           0x000000012567f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib             0x00007fff80699e36 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff806c8c4a _pthread_cond_wait + 1207
    2   com.adobe.adobeswfl           0x000000012567f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl           0x000000012569b95c APXGetHostAPI + 2547516
    4   com.adobe.adobeswfl           0x000000012567f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl           0x000000012567f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl           0x000000012567f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib             0x00007fff80699dd6 mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff806a1413 mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff82cb09cf CFRunLoopRunSpecific + 1631
    3   com.apple.CFNetwork           0x00007fff84a5563f CFURLCacheWorkerThread(void*) + 319
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib             0x00007fff80699dd6 mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff806a1413 mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff82cb09cf CFRunLoopRunSpecific + 1631
    3   com.apple.Foundation          0x00007fff81c1d4e0 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 288
    4   com.apple.Foundation          0x00007fff81bbdd35 __NSThread__main__ + 1157
    5   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    6   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib             0x00007fff806e5582 select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    2   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib             0x00007fff80699e36 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff806c8c4a _pthread_cond_wait + 1207
    2   ...ple.CoreServices.CarbonCore 0x00007fff825acc26 TSWaitOnConditionTimedRelative + 209
    3   ...ple.CoreServices.CarbonCore 0x00007fff825aca37 TSWaitOnSemaphoreCommon + 362
    4   ...ple.CoreServices.CarbonCore 0x00007fff825ac77d AsyncFileThread(void*) + 47
    5   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    6   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib             0x00007fff80699e12 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw           0x000000012bf2c6fc EntryFM + 1855036
    2   com.adobe.CameraRaw           0x000000012bf30200 EntryFM + 1870144
    3   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    4   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   ...ple.CoreServices.CarbonCore 0x00007fff825c74b4 TSWaitOnCondition + 118
    2   ...ple.CoreServices.CarbonCore 0x00007fff825acc06 TSWaitOnConditionTimedRelative + 177
    3   ...ple.CoreServices.CarbonCore 0x00007fff825c7165 MPWaitOnQueue + 191
    4   com.adobe.CameraRaw           0x000000012bd03f9d 0x12bb5f000 + 1724317
    5   com.adobe.CameraRaw           0x000000012bd0393b 0x12bb5f000 + 1722683
    6   ...ple.CoreServices.CarbonCore 0x00007fff825c5a5c PrivateMPEntryPoint + 42
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.CameraRaw           0x000000012bb9a8c5 0x12bb5f000 + 243909
    2   com.adobe.CameraRaw           0x000000012be1d2e7 EntryFM + 743975
    3   com.adobe.CameraRaw           0x000000012bc34e8b 0x12bb5f000 + 876171
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib             0x00007fff80699e12 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw           0x000000012bf2c6fc EntryFM + 1855036
    2   com.adobe.CameraRaw           0x000000012bf32990 EntryFM + 1880272
    Thread 24:
    0   libSystem.B.dylib             0x00007fff80699e12 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw           0x000000012bf2c6fc EntryFM + 1855036
    2   com.adobe.CameraRaw           0x000000012bf32945 EntryFM + 1880197
    Thread 25:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.CameraRaw           0x000000012bb9a8c5 0x12bb5f000 + 243909
    2   com.adobe.CameraRaw           0x000000012be972c8 EntryFM + 1243656
    3   com.adobe.CameraRaw           0x000000012bc34e8b 0x12bb5f000 + 876171
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000001  rbx: 0x0000000121e93cb0  rcx: 0x000000000000000a  rdx: 0x0000000000000000
      rdi: 0x0000000000000000  rsi: 0x00007fff5fbfa6b0  rbp: 0x00007fff5fbfa640  rsp: 0x00007fff5fbfa630
       r8: 0x00000001253ffdce   r9: 0x0000000082110044  r10: 0x0000000000000001  r11: 0x00007fff834c1e79
      r12: 0x0000000121e93cb0  r13: 0x00000001253ee4e0  r14: 0x000000011a6210f0  r15: 0x000000000000000a
      rip: 0x00000001036bc18f  rfl: 0x0000000000010246  cr2: 0x0000000000000000
    Binary Images:
           0x100000000 -        0x1026b5fff +com.adobe.Photoshop 12.0 (12.0x20100407.r.1103) (12.0) <b69d89e501ddc22048b1e129d0574536> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x103295000 -        0x10330dfef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4a3556861451b19a0c55dfe49fd2539e> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103323000 -        0x103329fff  org.twain.dsm 1.9.3 (1.9.3) /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103331000 -        0x103341ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5d6ffc4e7b813e8cf0d466a3fa94a837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10334c000 -        0x103352fef  com.apple.agl 3.0.9 (AGL-3.0.9) <b0385e6bbcc04cc56717e19a518b5d8e> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x103358000 -        0x10355efef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499b4e7a08bb80fcc220d57d45ca424f> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x1035f1000 -        0x10379ffef +com.adobe.owl AdobeOwl version 3.0.91 (3.0.91) <c36ca603effb2eed6cee0b532ce052d2> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103841000 -        0x103c71fef +AdobeMPS ??? (???) <fa3341425343880877604318eb62ad51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103dcb000 -        0x1040f6ff7 +AdobeAGM ??? (???) <52e17d566e7aa63582ed5de1f3e5045d> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1041c3000 -        0x1044ebfe7 +AdobeCoolType ??? (???) <9e03f47a06a3f1f4ac4c76f12facc294> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104583000 -        0x1045a4ff7 +AdobeBIBUtils ??? (???) <f71506882c150f0caf2493ed82fc321a> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1045b1000 -        0x1045dcff6 +AdobeAXE8SharedExpat ??? (???) <7e809606bf97db3ae465156446e56d00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x1045ee000 -        0x104732fef +WRServices ??? (???) <76354373f0bd0baf6fc0b96dbb371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x104779000 -        0x1047defff +aif_core ??? (???) <12fa670e05a81fcba7a2aae68728ea30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x1047fa000 -        0x104810fff +data_flow ??? (???) <9c5d39a6d2a29b6a8b64d1b59396c112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104828000 -        0x1048befff +image_flow ??? (???) <b72aa9220d68d57e96b12e009b0ad4ae> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104935000 -        0x104953fff +image_runtime ??? (???) <32786637c9bf4cb62df95d99220e00be> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104970000 -        0x104b9ffff +aif_ogl ??? (???) <615e7df609b1857a74ace224a636bee1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104c7e000 -        0x104d11fff +AdobeOwlCanvas ??? (???) <ec667f6d0bb603ea41e8624425b2bf4b> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d31000 -        0x10507afef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023e07600223ab5d758c2c5a052f6af4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10520a000 -        0x10538cfe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <420772959026d519c05735e07029d97b> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10542e000 -        0x1057a6fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0e95a0df038acff2ec7bbdb905cdf5c5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x1058f0000 -        0x105a04fff +AdobeACE ??? (???) <e359887d1e7f5e62cb8d37ce4dbfb4d8> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a29000 -        0x105a45fff +AdobeBIB ??? (???) <7a792f2742cc2dcad5df88a2ce6c2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105a4f000 -        0x105ab9ff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6b2f73c210ab08b34ab0a31c83d1e5e0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105aec000 -        0x105bbfffb +AdobeJP2K ??? (???) <465d1693be79590ee1aabaa8061b4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105bdf000 -        0x105be3ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0c380604c686c2e40535c1fab230187e> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105be7000 -        0x105c5efff +FileInfo ??? (???) <6d5235b90eb617ca6457a2507a87ea8f> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105c7f000 -        0x105cddffd +AdobeXMP ??? (???) <561026bbc6ea29ce4790cabcb81e8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105ceb000 -        0x106186fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x10670c000 -        0x106762feb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03b806982c3ba232f15f8f08f8963a19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1067a7000 -        0x1067ccffe +adobepdfsettings ??? (???) <56e7f03360322ec2250e43f1ebd123b1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x106806000 -        0x10680bffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <dffb9a088369d65f161f7c61d562e307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106810000 -        0x1069abfff +com.adobe.PlugPlug 2.0.0.746 (2.0.0.746) <cb23c5aa0e4b182bcb8857dd32893f92> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106a53000 -        0x106b4bfef  libiconv.2.dylib ??? (???) <23f57ab0cce3fc583f44eded72c3b4fc> /usr/lib/libiconv.2.dylib
           0x106b52000 -        0x106b6bfeb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106b7c000 -        0x106b82feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106b89000 -        0x106b89ffd  libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
           0x106b8d000 -        0x106b95ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858df5af02022a7b94514ec277724d4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106ba3000 -        0x106ba7fff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <f9cc74c2bc3fa2228542ff4fa1a21202> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x106be2000 -        0x106be4fe1  com.apple.textencoding.unicode 2.2 (2.2) <9763da549175eb8eca339592062b852d> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x106df9000 -        0x106e69ff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52ff1f9b9991ece2c7e309da1b368cbe> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x119e8c000 -        0x119e8dfe7  libCyrillicConverter.dylib ??? (???) <1feb792ba69c351faffcc10633022d87> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x11a1d1000 -        0x11a1e8fef  libJapaneseConverter.dylib ??? (???) <968851efde951743d650c269974d678d> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x11a1ec000 -        0x11a20dff7  libKoreanConverter.dylib ??? (???) <0924c10884df1f952ce4bc06d1e14d42> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x11a211000 -        0x11a220fe7  libSimplifiedChineseConverter.dylib ??? (???) <a91a1f5cf3f364b768e84f6d997e7109> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x11a224000 -        0x11a236fef  libTraditionalChineseConverter.dylib ??? (???) <37d7b591c8537068fb3c7da4b8f2aa50> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x11a700000 -        0x11a708fff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3d59cb21f5c74232ab00dfeb04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x11aadd000 -        0x11adcdff3  com.apple.RawCamera.bundle 2.3.0 (505) <e65cf9645aff805ae24c4a9e2e3d4759> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
           0x11b04a000 -        0x11b051fff +Enable Async IO ??? (???) <9c98dc9e5974fe5d75c316bc4738dcc8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x11b505000 -        0x11b50efff +FastCore ??? (???) <f1d1c94d4fe1f9696fc28d81837ca5e1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11b51b000 -        0x11b57eff3 +MMXCore ??? (???) <2db6fa8e43739823c4f5a9f5f8f80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11b604000 -        0x11b66fff0 +MultiProcessor Support ??? (???) <1334b570c7133767225f3c1cba1bf37c> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11ec5c000 -        0x11ec5cffe  com.apple.quartzframework 1.5 (1.5) <0f92ad0131676921113aa5f137a55e63> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x11f2da000 -        0x11f2dbfff  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <55cb06b48756e6f3766bfa9af36eb6d8> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
           0x1211c4000 -        0x1211cbffb  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <33069625811249c0672d574bc3cb1238> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
           0x121cad000 -        0x121cc9ff7 +MeasurementCore ??? (???) <0e3be9b3ff3d78a638ec5cb0828b80eb> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x121f00000 -        0x12215cfef +com.adobe.PSAutomate 12.0 (12.0) <35aef3a82e6471d139eda34760caac29> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x122372000 -        0x122416ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7573) <332e7d8dbf4231779bc5033942de35e0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x122478000 -        0x122518fef +com.adobe.AdobeScCore ScCore 4.1.23 (4.1.23.7573) <53dd72815b597ff5db57c9fd60e524c7> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x122576000 -        0x122596ffb +com.adobe.ape adbeapecore version 3.1.65.7508 (3.1.65.7508) <284c86beacd831dde58d544f581bc93b> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x12271d000 -        0x12273cff7  GLRendererFloat ??? (???) <b6bac044bc2d6f61770047d2d91ca010> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/G LRendererFloat
           0x123800000 -        0x12399ffe3  GLEngine ??? (???) <fbb263309a56201f6833c1c32da4e7b3> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x1239ce000 -        0x123e30fff  com.apple.driver.AppleIntelGMAX3100GLDriver 1.5.48 (5.4.8) <42590dfb07ec4aed399b0b0c6cc3b963> /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/AppleIntelGMA X3100GLDriver
           0x12529d000 -        0x1252aefff  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <e7ef32095450e217430da789d3bfa143> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
           0x1252c0000 -        0x1252e3fef  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x1252f9000 -        0x1252fafff  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
           0x125400000 -        0x126247fcf +com.adobe.adobeswfl ??? (2.0.0.7489) <dbd3811148d6c031ef50d034c94ed38b> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
           0x126448000 -        0x1264d5fff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
           0x12654d000 -        0x1265a3fe9  com.apple.securityinterface 3.0.4 (37213) <0f5f9ec6d6549eed0036cfdbf8d0957e> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
           0x1265fb000 -        0x126641fe2  com.apple.securityfoundation 3.0.2 (36131) <523ceeda36f017a1464d9c79e620293f> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
           0x126685000 -        0x126881feb  com.apple.QuartzComposer 2.1 (106.13) <96b3a8d52d816d2ae38bc46ba39c1af7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
           0x126a57000 -        0x126a9aff7  com.apple.quartzfilters 1.5.0 (1.5.0) <38e943349b7388148518c823dd49972b> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
           0x126ada000 -        0x126c5afff  com.apple.imageKit 1.0.2 (1.0) <8f494d257c5ded166dbac4ce0f81c571> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
           0x126dbe000 -        0x12

    The email I used to submit is <<email removed>>
    Here's the report:
    Process:         Adobe Photoshop CS5 [647]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.2 (12.0.2x20101122.r.1204) (12.0.2)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [62]
    Date/Time:       2011-02-16 12:59:41.660 -0500
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  A21F2F7D-BA07-481C-A9FE-04AFEAD1F2ED
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    Crashed Thread:  0
    Thread 0 Crashed:
    0   com.adobe.owl                 0x0000000103707186 OWLDockGetAnchor + 8186
    1   com.adobe.owl                 0x000000010366dbc2 0x10363c000 + 203714
    2   com.adobe.owl                 0x0000000103674cb6 OWLHandleNSApplicationEvent + 40
    3   com.adobe.Photoshop           0x000000010024f6a9 0x100000000 + 2422441
    4   com.adobe.Photoshop           0x00000001002791e5 0x100000000 + 2593253
    5   com.adobe.PSAutomate          0x0000000122690e5b CPsWActionControl::Get(CPsWActionReference const&, CPsWActionDescriptor&) + 31
    6   com.adobe.PSAutomate          0x0000000122689bf5 CPsActionUtils::GetGenericProperty(CPsTargetGenerator const&, unsigned int, CPsWActionDescriptor&) + 71
    7   com.adobe.PSAutomate          0x0000000122689dfd CPsActionUtils::GetObjectProperty(CPsTargetGenerator const&, unsigned int, CPsWActionDescriptor&) + 49
    8   com.adobe.PSAutomate          0x0000000122654ba6 CPsApplication::GetForegroundColor(MultiScript::InterfacePtr<CPsSolidColor>&) const + 66
    9   com.adobe.PSAutomate          0x0000000122609a73 CPsApplication::HostGet(int, ScCore::Variant&) const + 3377
    10  com.adobe.PSAutomate          0x00000001226a852a MultiScript::TProxyBase<ScCore::LiveObject>::get(int, ScCore::Variant&, ScCore::Error*) const + 240
    11  com.adobe.AdobeExtendScript   0x0000000122ac4a6d ScScript::LiveObjectProperty::get(ScScript::Object&, int) + 941
    12  com.adobe.AdobeExtendScript   0x0000000122a85bd4 jsOpVariable::get(jsRunner&, ScScript::PropRef&, ScScript::ESVariant&, bool) + 68
    13  com.adobe.AdobeExtendScript   0x0000000122a80470 jsOpProperty::run(jsRunner&, ScScript::ESVariant&) const + 176
    14  com.adobe.AdobeExtendScript   0x0000000122a805af jsOpProperty::getRef(jsRunner&, ScScript::PropRef&, int) const + 271
    15  com.adobe.AdobeExtendScript   0x0000000122a80408 jsOpProperty::run(jsRunner&, ScScript::ESVariant&) const + 72
    16  com.adobe.AdobeExtendScript   0x0000000122a805af jsOpProperty::getRef(jsRunner&, ScScript::PropRef&, int) const + 271
    17  com.adobe.AdobeExtendScript   0x0000000122a80408 jsOpProperty::run(jsRunner&, ScScript::ESVariant&) const + 72
    18  com.adobe.AdobeExtendScript   0x0000000122a805af jsOpProperty::getRef(jsRunner&, ScScript::PropRef&, int) const + 271
    19  com.adobe.AdobeExtendScript   0x0000000122a7962f jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 95
    20  com.adobe.AdobeExtendScript   0x0000000122a7df6c jsOpList::run(jsRunner&, ScScript::ESVariant*) const + 76
    21  com.adobe.AdobeExtendScript   0x0000000122a798b5 jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 741
    22  com.adobe.AdobeExtendScript   0x0000000122a78634 jsOpBinary::run(jsRunner&, ScScript::ESVariant&) const + 1508
    23  com.adobe.AdobeExtendScript   0x0000000122a776f2 jsOpAssign::run(jsRunner&, ScScript::ESVariant&) const + 258
    24  com.adobe.AdobeExtendScript   0x0000000122a82390 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 208
    25  com.adobe.AdobeExtendScript   0x0000000122a7be27 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 215
    26  com.adobe.AdobeExtendScript   0x0000000122aa5741 jsRunner::run(ScScript::ESVariant&) + 113
    27  com.adobe.AdobeExtendScript   0x0000000122a92d3f jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 287
    28  com.adobe.AdobeExtendScript   0x0000000122a79930 jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 864
    29  com.adobe.AdobeExtendScript   0x0000000122a82390 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 208
    30  com.adobe.AdobeExtendScript   0x0000000122a7be27 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 215
    31  com.adobe.AdobeExtendScript   0x0000000122aa5741 jsRunner::run(ScScript::ESVariant&) + 113
    32  com.adobe.AdobeExtendScript   0x0000000122a92cb8 jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 152
    33  com.adobe.AdobeExtendScript   0x0000000122ac9504 ScScript::RealEngine::exec(int, ScScript::Object&, ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&, int) + 1652
    34  com.adobe.AdobeExtendScript   0x0000000122acd40d ScScript::RealEngine::eval(ScScript::Script&, ScCore::Variant*, int, int, ScCore::Variant const*) + 685
    35  com.adobe.AdobeExtendScript   0x0000000122ac8dc1 ScScript::RealEngine::eval(ScCore::String const&, ScCore::Variant*, int, int, ScCore::Variant const*, ScCore::String const*, int) + 225
    36  com.adobe.PSAutomate          0x00000001226a30be MultiScript::ExtendScript::RunScript(ScScript::Engine*, ScCore::String const&, ScCore::Array const&, MultiScript::ExtendScript::ExecutionModeType, ScCore::String const*, ScCore::String&) const + 538
    37  com.adobe.PSAutomate          0x00000001226a32d4 MultiScript::ExtendScriptEngine::ExecuteJSScript(ScCore::String const&, MultiScript::ExtendScript::ExecutionModeType) const + 96
    38  com.adobe.PSAutomate          0x00000001226baba3 MultiScript::JSScriptingSuite::ExecuteScript(_t_JSEngine*, unsigned short const*, JavaScriptExecutionMode, unsigned short const**) + 199
    39  com.adobe.Photoshop           0x0000000100f8c161 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13299585
    40  com.adobe.Photoshop           0x0000000100f9104e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13319790
    41  com.adobe.Photoshop           0x0000000100f9d9d7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13371383
    42  com.adobe.PlugPlug            0x000000010689587e PlugPlugErrorCode boost::_bi::bind_t<PlugPlugErrorCode, PlugPlugErrorCode (*)(char const*, char const*, char const**), boost::_bi::list3<boost::arg<1> (*)(), boost::arg<2> (*)(), boost::arg<3> (*)()> >::operator()<char const*, char const*, char const**>(char const*&, char const*&, char const**&) + 44
    43  com.adobe.PlugPlug            0x00000001068958a5 boost::detail::function::function_obj_invoker3<boost::_bi::bind_t<PlugPlugErrorCode, PlugPlugErrorCode (*)(char const*, char const*, char const**), boost::_bi::list3<boost::arg<1> (*)(), boost::arg<2> (*)(), boost::arg<3> (*)()> >, PlugPlugErrorCode, char const*, char const*, char const**>::invoke(boost::detail::function::function_buffer&, char const*, char const*, char const**) + 37
    44  com.adobe.PlugPlug            0x0000000106898bda boost::function3<PlugPlugErrorCode, char const*, char const*, char const**>::operator()(char const*, char const*, char const**) const + 114
    45  com.adobe.PlugPlug            0x0000000106898c05 csxs::services::host::ApplicationCallbacks::EvaluateScript(char const*, char const*, char const**) + 21
    46  com.adobe.PlugPlug            0x000000010689839d csxs::services::host::ApplicationCallbacksLogger::EvaluateScript(char const*, char const*, char const**) + 73
    47  com.adobe.PlugPlug            0x000000010687f8f3 csxs::commands::CmdEvalScriptImpl::Execute() + 213
    48  com.adobe.PlugPlug            0x000000010687a8a9 CmdFactoryExtensionCall::DoEvalScript(bool, char const*, char const*, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&) + 335
    49  com.adobe.PlugPlug            0x000000010687b042 CmdFactoryExtensionCall::GetResult(bool, char const*, char const*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&) + 332
    50  com.adobe.PlugPlug            0x000000010689a116 csxs::services::extensioncalls::ExtensionCallCommandFactory::Evaluate(std::basic_string<c har, std::char_traits<char>, std::allocator<char> >, vcfoundation::data::IVCString*, vcfoundation::data::IVCMutableString*) + 152
    51  com.adobe.PlugPlug            0x000000010689edcc csxs::internal::StageManagerController::HandleExternalInterfaceCall(vcfoundation::data::I VCString*, char const**) + 578
    52  com.adobe.PlugPlug            0x000000010686d700 PlugPlugExtensionCall + 340
    53  com.adobe.Photoshop           0x0000000100f9d7bb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13370843
    54  com.adobe.Photoshop           0x0000000100f9327f AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13328543
    55  com.adobe.Photoshop           0x000000010110f4c0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 14885600
    56  com.adobe.ape                 0x00000001223d84e6 APEStreamWrite + 33366
    57  com.adobe.ape                 0x00000001223d47e2 APEStreamWrite + 17746
    58  com.adobe.ape                 0x00000001223cbec7 APEInitialize + 6903
    59  com.adobe.ape                 0x00000001223d1c86 APEStreamWrite + 6646
    60  com.adobe.adobeswfl           0x0000000125f8a741 SWFLPlayer_Initialize + 4433
    61  com.adobe.adobeswfl           0x0000000125c274fd APXGetHostAPI + 1023085
    62  ???                           0x0000000129a93be7 0 + 4993924071
    63  ???                           0x0000000129bb2bc9 0 + 4995099593
    64  ???                           0x0000000129bb45c4 0 + 4995106244
    65  ???                           0x0000000129bb4c9e 0 + 4995107998
    66  ???                           0x0000000129ab38d4 0 + 4994054356
    67  ???                           0x0000000129aaba6e 0 + 4994021998
    68  com.adobe.adobeswfl           0x00000001261a2915 SWFLPlayer_Initialize + 2200357
    69  com.adobe.adobeswfl           0x0000000126185d6d SWFLPlayer_Initialize + 2082685
    70  ???                           0x0000000129a8e698 0 + 4993902232
    71  ???                           0x0000000129a8ec41 0 + 4993903681
    72  ???                           0x0000000129a89c3f 0 + 4993883199
    73  com.adobe.adobeswfl           0x0000000125c273b7 APXGetHostAPI + 1022759
    74  com.adobe.adobeswfl           0x0000000125c28a83 APXGetHostAPI + 1028595
    75  com.adobe.adobeswfl           0x0000000125f317dc APXGetHostAPI + 4210508
    76  com.adobe.adobeswfl           0x0000000125f91276 SWFLPlayer_Initialize + 31878
    77  com.adobe.ape                 0x00000001223ca946 APEInitialize + 1398
    78  com.adobe.ape                 0x00000001223cfa38 APEPlayerCallExternalInterface + 88
    79  com.adobe.Photoshop           0x000000010110f3b4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 14885332
    80  com.adobe.Photoshop           0x0000000100f90c3e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13318750
    81  com.adobe.Photoshop           0x0000000100f91a16 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 13322294
    82  com.adobe.Photoshop           0x00000001002500f5 0x100000000 + 2425077
    83  com.adobe.Photoshop           0x000000010054b9e6 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2549766
    84  com.adobe.Photoshop           0x000000010054bc01 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2550305
    85  com.adobe.Photoshop           0x00000001000c50b6 0x100000000 + 807094
    86  com.adobe.Photoshop           0x00000001000c50b6 0x100000000 + 807094
    87  com.adobe.Photoshop           0x00000001000b339c 0x100000000 + 734108
    88  com.adobe.Photoshop           0x00000001005172ce AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2334958
    89  com.adobe.Photoshop           0x00000001000c50b6 0x100000000 + 807094
    90  com.adobe.Photoshop           0x00000001000c50b6 0x100000000 + 807094
    91  com.adobe.Photoshop           0x00000001000c50b6 0x100000000 + 807094
    92  com.adobe.Photoshop           0x00000001000c50b6 0x100000000 + 807094
    93  com.adobe.Photoshop           0x00000001000c50b6 0x100000000 + 807094
    94  com.adobe.Photoshop           0x00000001000c8d47 0x100000000 + 822599
    95  com.adobe.Photoshop           0x0000000100ce03b9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 10498521
    96  com.adobe.Photoshop           0x0000000100cdf812 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 10495538
    97  com.adobe.Photoshop           0x0000000100cdfbc8 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 10496488
    98  com.adobe.Photoshop           0x00000001012d50c8 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16744168
    99  com.apple.AppKit              0x00007fff83493608 -[NSView _recursiveLostHiddenAncestor] + 128
    100 com.apple.CoreFoundation      0x00007fff82c48a78 CFArrayApplyFunction + 216
    101 com.apple.AppKit              0x00007fff83413adc -[NSView(NSInternal) _setHidden:setNeedsDisplay:] + 1206
    102 com.adobe.owl                 0x0000000103731905 OWLApplicationContainerGetBounds + 54809
    103 com.adobe.owl                 0x0000000103718020 OWLDocumentSetCursorForTrackResize + 32414
    104 com.adobe.owl                 0x00000001036ba9d7 OWLDictionaryGetValue + 20079
    105 com.adobe.owl                 0x00000001036ffefa OWLDictionaryGetValue + 304018
    106 com.adobe.owl                 0x000000010372e7c3 OWLApplicationContainerGetBounds + 42199
    107 com.adobe.owl                 0x000000010372e9e1 OWLApplicationContainerGetBounds + 42741
    108 com.adobe.owl                 0x00000001036cbccd OWLDictionaryGetValue + 90469
    109 com.adobe.owl                 0x00000001036d76a7 OWLDictionaryGetValue + 138047
    110 com.adobe.owl                 0x00000001036dc3e5 OWLDictionaryGetValue + 157821
    111 com.adobe.owl                 0x00000001036df7fb OWLDictionaryGetValue + 171155
    112 com.adobe.owl                 0x00000001036b64cf OWLDictionaryGetValue + 2407
    113 com.adobe.owl                 0x000000010368eda6 OWLControlBarGetPreferredSize + 78100
    114 com.adobe.owl                 0x000000010368f9ac OWLControlBarGetPreferredSize + 81178
    115 com.adobe.owl                 0x000000010370c095 OWLToolbarChangeMenu + 489
    116 com.adobe.owl                 0x0000000103675aac OWLRemoveObjCExceptionCallback + 3520
    117 com.apple.Foundation          0x00007fff81bbd4c0 _nsnote_callback + 112
    118 com.apple.CoreFoundation      0x00007fff82c940f6 _CFXNotificationPostNotification + 566
    119 com.apple.Foundation          0x00007fff81bba756 -[NSNotificationCenter postNotificationName:object:userInfo:] + 102
    120 com.apple.AppKit              0x00007fff834daca0 -[NSWindow _setFrameCommon:display:stashSize:] + 1417
    121 com.adobe.owl                 0x0000000103675915 OWLRemoveObjCExceptionCallback + 3113
    122 com.adobe.owl                 0x000000010368bc30 OWLControlBarGetPreferredSize + 65438
    123 com.adobe.owl                 0x000000010368bd0a OWLControlBarGetPreferredSize + 65656
    124 com.adobe.owl                 0x00000001036dc121 OWLDictionaryGetValue + 157113
    125 com.adobe.owl                 0x00000001036dd62c OWLDictionaryGetValue + 162500
    126 com.adobe.owl                 0x000000010369dde8 OWLWidgetMove + 46146
    127 com.adobe.owl                 0x00000001036d7859 OWLDictionaryGetValue + 138481
    128 com.adobe.owl                 0x0000000103698b16 OWLWidgetMove + 24944
    129 com.adobe.owl                 0x0000000103698d67 OWLWidgetMove + 25537
    130 com.adobe.owl                 0x00000001036991fe OWLWidgetMove + 26712
    131 com.adobe.owl                 0x0000000103666238 0x10363c000 + 172600
    132 com.adobe.owl                 0x000000010368aa86 OWLControlBarGetPreferredSize + 60916
    133 com.adobe.owl                 0x00000001037107c0 OWLDocumentSetCursorForTrackResize + 1598
    134 com.adobe.owl                 0x0000000103715571 OWLDocumentSetCursorForTrackResize + 21487
    135 com.adobe.owl                 0x0000000103712b8f OWLDocumentSetCursorForTrackResize + 10765
    136 com.adobe.owl                 0x0000000103706fcf OWLDockGetAnchor + 7747
    137 com.adobe.owl                 0x00000001037070e5 OWLDockGetAnchor + 8025
    138 com.adobe.owl                 0x000000010365957b 0x10363c000 + 120187
    139 com.apple.AppKit              0x00007fff834f4815 -[NSWindow sendEvent:] + 5214
    140 com.adobe.owl                 0x0000000103674f55 OWLRemoveObjCExceptionCallback + 617
    141 com.adobe.owl                 0x0000000103676fa4 OWLRemoveObjCExceptionCallback + 8888
    142 com.apple.AppKit              0x00007fff834c1d46 -[NSApplication sendEvent:] + 5089
    143 com.adobe.Photoshop           0x00000001012e251e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16798526
    144 com.adobe.Photoshop           0x00000001012e1cd1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796401
    145 com.apple.AppKit              0x00007fff8341c562 -[NSApplication run] + 497
    146 com.adobe.Photoshop           0x00000001012e0594 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16790452
    147 com.adobe.Photoshop           0x00000001012e0ff1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16793105
    148 com.adobe.Photoshop           0x0000000100068dd2 0x100000000 + 429522
    149 com.adobe.Photoshop           0x0000000100238151 0x100000000 + 2326865
    150 com.adobe.Photoshop           0x00000001002381e1 0x100000000 + 2327009
    151 com.adobe.Photoshop           0x0000000100002df4 0x100000000 + 11764
    Thread 1:
    0   libSystem.B.dylib             0x00007fff806c7706 kevent + 10
    1   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    2   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 2:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.amt.services        0x0000000106e5ac53 AMTConditionLock::LockWhenCondition(int) + 37
    2   com.adobe.amt.services        0x0000000106e53cce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    3   com.adobe.amt.services        0x0000000106e5acbe AMTThread::Worker(void*) + 28
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib             0x00007fff80699e2a semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore 0x00007fff825d6371 MPWaitOnSemaphore + 96
    2   MultiProcessor Support        0x000000011b67fb9b ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore 0x00007fff825c5a5c PrivateMPEntryPoint + 42
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   ...ple.CoreServices.CarbonCore 0x00007fff825c74b4 TSWaitOnCondition + 118
    2   ...ple.CoreServices.CarbonCore 0x00007fff825acc06 TSWaitOnConditionTimedRelative + 177
    3   ...ple.CoreServices.CarbonCore 0x00007fff825c7165 MPWaitOnQueue + 191
    4   AdobeACE                      0x000000010597518d 0x10593b000 + 237965
    5   AdobeACE                      0x0000000105974b3a 0x10593b000 + 236346
    6   ...ple.CoreServices.CarbonCore 0x00007fff825c5a5c PrivateMPEntryPoint + 42
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.PSAutomate          0x000000012278209b ScObjects::Thread::sleep(unsigned int) + 59
    2   com.adobe.PSAutomate          0x0000000122763fd3 ScObjects::BridgeTalkThread::run() + 163
    3   com.adobe.PSAutomate          0x0000000122782196 ScObjects::Thread::go(void*) + 166
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   libGLProgrammability.dylib    0x00007fff811e557b glvmDoWork + 155
    2   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    3   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.adobeswfl           0x0000000125d8789d APXGetHostAPI + 2465805
    2   com.adobe.adobeswfl           0x0000000125b405e9 APXGetHostAPI + 77145
    3   com.adobe.adobeswfl           0x0000000125d879b1 APXGetHostAPI + 2466081
    4   com.adobe.adobeswfl           0x0000000125d87d1a APXGetHostAPI + 2466954
    5   com.adobe.adobeswfl           0x0000000125d87e49 APXGetHostAPI + 2467257
    6   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    7   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.adobeswfl           0x0000000125d8789d APXGetHostAPI + 2465805
    2   com.adobe.adobeswfl           0x0000000125b405e9 APXGetHostAPI + 77145
    3   com.adobe.adobeswfl           0x0000000125d879b1 APXGetHostAPI + 2466081
    4   com.adobe.adobeswfl           0x0000000125d87d1a APXGetHostAPI + 2466954
    5   com.adobe.adobeswfl           0x0000000125d87e49 APXGetHostAPI + 2467257
    6   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    7   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib             0x00007fff80699dd6 mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff806a1413 mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff82cb09cf CFRunLoopRunSpecific + 1631
    3   com.apple.audio.CoreAudio     0x00007fff84c9a65a HALRunLoop::OwnThread(void*) + 142
    4   com.apple.audio.CoreAudio     0x00007fff84c9a597 CAPThread::Entry(CAPThread*) + 67
    5   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    6   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib             0x00007fff80699dd6 mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff806a1413 mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff82cb09cf CFRunLoopRunSpecific + 1631
    3   com.apple.CoreMediaIOServices 0x00007fff8109e63a MIO::DAL::RunLoop::OwnThread(void*) + 142
    4   com.apple.CoreMediaIOServices 0x00007fff810a04cb CAPThread::Entry(CAPThread*) + 67
    5   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    6   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib             0x00007fff80699e36 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff806c8c4a _pthread_cond_wait + 1207
    2   com.adobe.adobeswfl           0x0000000125d87869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl           0x0000000125da40ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl           0x0000000125d879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000125d87d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000125d87e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib             0x00007fff80699e36 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff806c8c4a _pthread_cond_wait + 1207
    2   com.adobe.adobeswfl           0x0000000125d87869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl           0x0000000125f21ef3 APXGetHostAPI + 4146787
    4   com.adobe.adobeswfl           0x0000000125d879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000125d87d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000125d87e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib             0x00007fff8070de82 recvfrom + 10
    1   ServiceManager-Launcher.dylib 0x0000000128ff6adf Invoke + 50273
    2   ServiceManager-Launcher.dylib 0x0000000128ff5b26 Invoke + 46248
    3   ServiceManager-Launcher.dylib 0x0000000128ff5b81 Invoke + 46339
    4   ServiceManager-Launcher.dylib 0x0000000128ff5c02 Invoke + 46468
    5   ServiceManager-Launcher.dylib 0x0000000128ff030d Invoke + 23695
    6   ServiceManager-Launcher.dylib 0x0000000128ff04a6 Invoke + 24104
    7   ServiceManager-Launcher.dylib 0x0000000128ff0f2f Invoke + 26801
    8   ServiceManager-Launcher.dylib 0x0000000128ff101d Invoke + 27039
    9   ServiceManager-Launcher.dylib 0x0000000128ff431f Invoke + 40097
    10  ServiceManager-Launcher.dylib 0x0000000128ff45c5 Invoke + 40775
    11  ServiceManager-Launcher.dylib 0x0000000128ff4b84 Invoke + 42246
    12  ServiceManager-Launcher.dylib 0x0000000128ff4d71 Invoke + 42739
    13  ServiceManager-Launcher.dylib 0x0000000128fe6daf Login + 1773
    14  ServiceManager-Launcher.dylib 0x0000000128fe8295 Login + 7123
    15  ServiceManager-Launcher.dylib 0x0000000128ff52a8 Invoke + 44074
    16  ServiceManager-Launcher.dylib 0x0000000128ff76c1 Invoke + 53315
    17  libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    18  libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib             0x00007fff80699e36 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff806c8c4a _pthread_cond_wait + 1207
    2   com.adobe.adobeswfl           0x0000000125d87869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl           0x0000000125da40ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl           0x0000000125d879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000125d87d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000125d87e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib             0x00007fff80699e36 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff806c8c4a _pthread_cond_wait + 1207
    2   com.adobe.adobeswfl           0x0000000125d87869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl           0x0000000125f21ef3 APXGetHostAPI + 4146787
    4   com.adobe.adobeswfl           0x0000000125d879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x0000000125d87d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x0000000125d87e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib             0x00007fff80699e12 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw           0x000000012acb4c51 EntryFM + 2315617
    2   com.adobe.CameraRaw           0x000000012ace4393 EntryFM + 2509987
    3   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    4   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   ...ple.CoreServices.CarbonCore 0x00007fff825c74b4 TSWaitOnCondition + 118
    2   ...ple.CoreServices.CarbonCore 0x00007fff825acc06 TSWaitOnConditionTimedRelative + 177
    3   ...ple.CoreServices.CarbonCore 0x00007fff825c7165 MPWaitOnQueue + 191
    4   com.adobe.CameraRaw           0x000000012aa03949 0x12a811000 + 2042185
    5   com.adobe.CameraRaw           0x000000012aa02bb0 0x12a811000 + 2038704
    6   ...ple.CoreServices.CarbonCore 0x00007fff825c5a5c PrivateMPEntryPoint + 42
    7   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    8   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.CameraRaw           0x000000012a86c933 0x12a811000 + 375091
    2   com.adobe.CameraRaw           0x000000012ab47d84 EntryFM + 820884
    3   com.adobe.CameraRaw           0x000000012a90f6a0 0x12a811000 + 1042080
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib             0x00007fff80699e12 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw           0x000000012acb4c51 EntryFM + 2315617
    2   com.adobe.CameraRaw           0x000000012ace5809 EntryFM + 2515225
    Thread 20:
    0   libSystem.B.dylib             0x00007fff80699e12 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw           0x000000012acb4c51 EntryFM + 2315617
    2   com.adobe.CameraRaw           0x000000012ace56cb EntryFM + 2514907
    Thread 21:
    0   libSystem.B.dylib             0x00007fff806a0da2 __semwait_signal + 10
    1   com.adobe.CameraRaw           0x000000012a86c933 0x12a811000 + 375091
    2   com.adobe.CameraRaw           0x000000012ac1675b EntryFM + 1667179
    3   com.adobe.CameraRaw           0x000000012a90f6a0 0x12a811000 + 1042080
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib             0x00007fff80699dd6 mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff806a1413 mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff82cb09cf CFRunLoopRunSpecific + 1631
    3   com.apple.CFNetwork           0x00007fff84a5563f CFURLCacheWorkerThread(void*) + 319
    4   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    5   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib             0x00007fff80699dd6 mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff806a1413 mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff82cb09cf CFRunLoopRunSpecific + 1631
    3   com.apple.Foundation          0x00007fff81c1d4e0 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 288
    4   com.apple.Foundation          0x00007fff81bbdd35 __NSThread__main__ + 1157
    5   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    6   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 24:
    0   libSystem.B.dylib             0x00007fff806e5582 select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib             0x00007fff806c7e8f _pthread_start + 316
    2   libSystem.B.dylib             0x00007fff806c7d51 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000001  rbx: 0x00000001225af8f0  rcx: 0x000000000000000a  rdx: 0x0000000000000000
      rdi: 0x0000000000000000  rsi: 0x00007fff5fbfa720  rbp: 0x00007fff5fbfa6b0  rsp: 0x00007fff5fbfa6a0
       r8: 0x000000012cafeaf9   r9: 0x0000000048480000  r10: 0x0000000000000001  r11: 0x00007fff834c1e79
      r12: 0x00000001225af8f0  r13: 0x000000012ca579f0  r14: 0x000000011a635ac0  r15: 0x000000000000000a
      rip: 0x0000000103707186  rfl: 0x0000000000010246  cr2: 0x0000000000000000
    Binary Images:
           0x100000000 -        0x1026ebfff +com.adobe.Photoshop 12.0.2 (12.0.2x20101122.r.1204) (12.0.2) <a7c6ff45ff8b5eca247cd09ba0bbf589> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x1032e0000 -        0x103358fef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4a3556861451b19a0c55dfe49fd2539e> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x10336e000 -        0x103374fff  org.twain.dsm 1.9.3 (1.9.3) /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x10337c000 -        0x10338cff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5d6ffc4e7b813e8cf0d466a3fa94a837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x103397000 -        0x10339dfef  com.apple.agl 3.0.9 (AGL-3.0.9) <b0385e6bbcc04cc56717e19a518b5d8e> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x1033a3000 -        0x1035a9fef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499b4e7a08bb80fcc220d57d45ca424f> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x10363c000 -        0x1037eafef +com.adobe.owl AdobeOwl version 3.0.93 (3.0.93) <74cf40f6b216db735c8ffc5533220cd9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x10388c000 -        0x103cbcfef +AdobeMPS ??? (???) <0f44873ef5b1d5380beb8fdfd09102d6> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103e16000 -        0x104141ff7 +AdobeAGM ??? (???) <52e17d566e7aa63582ed5de1f3e5045d> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x10420e000 -        0x104536fe7 +AdobeCoolType ??? (???) <9979447d9477bc48a84e8a6a6af380b5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1045ce000 -        0x1045efff7 +AdobeBIBUtils ??? (???) <f71506882c150f0caf2493ed82fc321a> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1045fc000 -        0x104627ff6 +AdobeAXE8SharedExpat ??? (???) <7e809606bf97db3ae465156446e56d00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x104639000 -        0x10477dfef +WRServices ??? (???) <76354373f0bd0baf6fc0b96dbb371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1047c4000 -        0x104829fff +aif_core ??? (???) <12fa670e05a81fcba7a2aae68728ea30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x104845000 -        0x10485bfff +data_flow ??? (???) <9c5d39a6d2a29b6a8b64d1b59396c112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104873000 -        0x104909fff +image_flow ??? (???) <b72aa9220d68d57e96b12e009b0ad4ae> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104980000 -        0x10499efff +image_runtime ??? (???) <32786637c9bf4cb62df95d99220e00be> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x1049bb000 -        0x104beafff +aif_ogl ??? (???) <615e7df609b1857a74ace224a636bee1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104cc9000 -        0x104d5cfff +AdobeOwlCanvas ??? (???) <ec667f6d0bb603ea41e8624425b2bf4b> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d7c000 -        0x1050c5fef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023e07600223ab5d758c2c5a052f6af4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x105255000 -        0x1053d7fe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <420772959026d519c05735e07029d97b> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x105479000 -        0x1057f1fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0e95a0df038acff2ec7bbdb905cdf5c5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x10593b000 -        0x105a50fff +AdobeACE ??? (???) <c544307ec1e6fca84d322ec0d5820bbd> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a75000 -        0x105a91fff +AdobeBIB ??? (???) <7a792f2742cc2dcad5df88a2ce6c2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105a9b000 -        0x105b05ff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6b2f73c210ab08b34ab0a31c83d1e5e0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105b38000 -        0x105c0bffb +AdobeJP2K ??? (???) <465d1693be79590ee1aabaa8061b4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105c2b000 -        0x105c2fff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0c380604c686c2e40535c1fab230187e> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105c33000 -        0x105caafff +FileInfo ??? (???) <6d5235b90eb617ca6457a2507a87ea8f> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105ccb000 -        0x105d29ffd +AdobeXMP ??? (???) <561026bbc6ea29ce4790cabcb81e8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105d37000 -        0x1061d2fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x106758000 -        0x1067aefeb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03b806982c3ba232f15f8f08f8963a19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1067f3000 -        0x106818ffe +adobepdfsettings ??? (???) <56e7f03360322ec2250e43f1ebd123b1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x106852000 -        0x106857ffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <dffb9a088369d65f161f7c61d562e307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x10685c000 -        0x1069f8fff +com.adobe.PlugPlug 2.0.0.109 (2.0.0.109) <83092855e671f64aee0d1110cf669634> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106aa0000 -        0x106b98fef  libiconv.2.dylib ??? (???) <23f57ab0cce3fc583f44eded72c3b4fc> /usr/lib/libiconv.2.dylib
           0x106b9f000 -        0x106bb8feb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106bc9000 -        0x106bcffeb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106bd6000 -        0x106bd6ffd  libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
           0x106bda000 -        0x106be2ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858df5af02022a7b94514ec277724d4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106bf0000 -        0x106bf4fff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <f9cc74c2bc3fa2228542ff4fa1a21202> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x106e11000 -        0x106e13fe1  com.apple.textencoding.unicode 2.2 (2.2) <9763da549175eb8eca339592062b852d> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x106e37000 -        0x106ea7ff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52ff1f9b9991ece2c7e309da1b368cbe> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x119ee8000 -        0x119ee9fe7  libCyrillicConverter.dylib ??? (???) <1feb792ba69c351faffcc10633022d87> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x11a235000 -        0x11a24cfef  libJapaneseConverter.dylib ??? (???) <968851efde951743d650c269974d678d> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x11a250000 -        0x11a271ff7  libKoreanConverter.dylib ??? (???) <0924c10884df1f952ce4bc06d1e14d42> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x11a275000 -        0x11a284fe7  libSimplifiedChineseConverter.dylib ??? (???) <a91a1f5cf3f364b768e84f6d997e7109> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x11a288000 -        0x11a29afef  libTraditionalChineseConverter.dylib ??? (???) <37d7b591c8537068fb3c7da4b8f2aa50> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x11a2e0000 -        0x11a2e8fff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3d59cb21f5c74232ab00dfeb04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x11ab32000 -        0x11ae22ff3  com.apple.RawCamera.bundle 2.3.0 (505) <e65cf9645aff805ae24c4a9e2e3d4759> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
           0x11b4f8000 -        0x11b517ff7  GLRendererFloat ??? (???) <b6bac044bc2d6f61770047d2d91ca010> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/G LRendererFloat
           0x11b53b000 -        0x11b542fff +Enable Async IO ??? (???) <9c98dc9e5974fe5d75c316bc4738dcc8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x11b54b000 -        0x11b554fff +FastCore ??? (???) <f1d1c94d4fe1f9696fc28d81837ca5e1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11b561000 -        0x11b5c4ff3 +MMXCore ??? (???) <2db6fa8e43739823c4f5a9f5f8f80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11b64a000 -        0x11b6b5ff0 +MultiProcessor Support ??? (???) <9c6e0c9e50acb0cdd705c9760289c298> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11f947000 -        0x11f963ff7 +MeasurementCore ??? (???) <0e3be9b3ff3d78a638ec5cb0828b80eb> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x1223c6000 -        0x1223e6ffb +com.adobe.ape adbeapecore version 3.1.70.10055 (3.1.70.10055) <66373adb0865ecdbd3d0b3373fc43919> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x122600000 -        0x12285cfef +com.adobe.PSAutomate 12.0.2 (12.0.2) <3a8e6cc2b410ebee32fd509fc674ae28> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x122a72000 -        0x122b16ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.26 (4.1.26.11099) <00717496ace17d2fdee74316d0ab52d5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x122b78000 -        0x122c18fef +com.adobe.AdobeScCore ScCore 4.1.26 (4.1.26.11099) <036dbc1f0576705f3507213e9f455222> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x122cad000 -        0x122cadffe  com.apple.quartzframework 1.5 (1.5) <0f92ad0131676921113aa5f137a55e63> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x122cb1000 -        0x122cc2fff  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <e7ef32095450e217430da789d3bfa143> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
           0x122cd4000 -        0x122cdbffb  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <33069625811249c0672d574bc3cb1238> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
           0x122ce3000 -        0x122ce4fff  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <55cb06b48756e6f3766bfa9af36eb6d8> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
           0x123600000 -        0x12379ffe3  GLEngine ??? (???) <fbb263309a56201f6833c1c32da4e7b3> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x1237ce000 -        0x1237ecff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <5095906f78ad0179f0678ac0105054b7> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
           0x124000000 -        0x124462fff  com.apple.driver.AppleIntelGMAX3100GLDriver 1.5.48 (5.4.8) <42590dfb07ec4aed399b0b0c6cc3b963> /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/AppleIntelGMA X3100GLDriver
           0x1246b0000 -        0x1246d3fef  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x1246e9000 -        0x1246eafff  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
           0x12595c000 -        0x1259a2fe2  com.apple.securityfoundation 3.0.2 (36131) <523ceeda36f017a1464d9c79e620293f> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
           0x125b00000 -        0x126968ff3 +com.adobe.adobeswfl ??? (2.0.0.10053) <ade7e8aa80b67bac820513d7a0e89df8> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
           0x126b6a000 -        0x126bf7fff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
           0x126c6f000 -        0x126cc5fe9  com.apple.securityinterface 3.0.4 (37213) <0f5f9ec6d6549eed0036cfdbf8d0957e> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
           0x126d1d000 -        0x126f19feb  com.apple.QuartzComposer 2.1 (106.13) <96b3a8d52d816d2ae38bc46ba39c1af7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
           0x1270ef000 -        0x127132ff7  com.apple.quartzfilters 1.5.0 (1.5.0) <38e943349b7388148518c823dd49972b> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
           0x127172000 -        0x1272f2fff  com.apple.imageKit 1.0.2 (1.0) <8f494d257c5ded166dbac4ce0f81c571> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
           0x127456000 -        0x127640fff  com.apple.JavaScriptCore 5533.19 (5533.19.1) <aba873160118853294129aa5a2127133> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x1276b8000 -        0x127717fff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
           0x128918000 -        0x128945fef  com.apple.mio.DAL.VDC_4 130.0 (935) <28c0e80414d3c2646a6d9340b5f7bd66> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC
           0x128f8c000 -        0x128fc9feb +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 1.0.0.64 (1.0.0.64) <cd8bd7c70f6629b6c158a6ef8df69996> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotification s
           0x128fe4000 -        0x12900cfef +ServiceManager-Launcher.dylib ??? (???) <4608e5e77f22a4ff527ce97ea339fccc> /Library/Application Support/Adobe/CS5ServiceManager/lib/ServiceManager-Launcher.dylib
           0x12a811000 -        0x12b10aff7 +com.adobe.CameraRaw 6.3 (79) (6.3.0f79) <7ef815393fc201666c138977c9e05f7b> /Library/Application Support/Adobe/Plug-Ins/CS5/File Formats/Camera Raw.plugin/Contents/MacOS/Camera Raw
           0x12c619000 -        0x12c6a2fe7 + ??? (???) <90212778e699a9309b42a7220527da79>
           0x12c6ad000 -        0

  • Analysis takes more than 1hr to show results : Obiee 11g (11.1.1.5.0)

    Hi,
    I have an analysis which taking too long to show the results. I have executed the physical query of this analysis(generated by BI Server) on Database and it take 3 seconds.
    Has anyone faced this issue? How to fix this?
    Thanks in advance.

    Hi Raj,
    Thanks for your reply.
    1. Check the concurrent settings in the connection pool. What OS are you using? Make sure the query threads are not on wait mode.It is only happening to a particular Analysis. All others are running fine.
    2. Is the analytics server merging multiple query results from the database? If so, check the memory settings on the analytics server.At the moment only this Analysis is running. There is no problem with the memory.
    3. Also, you mentioned the query at the database comes back in 3 seconds. If you ran the query directly from the database server, you might want to check for network issues.There are no network issues...as there is problem only with this Analysis.
    Thanks in advance.

  • More than 1023 characters data in basic report layout?

    Hi,
    Am developing a basic report, where in I have to accommidate around 1100 characters data in a line (columnn headings itself are taking 1080 characters), but system is allowing only 1023 characters, pls. let me know how to achive this?
    Thank you

    If a bottle can only hold 1 litre and you are told to put 2 litres in it, would you also ask how you should do it?
    Why don't you just break up 1 line into 2 separates lines?

  • I can't make more than one layer show up in the Layers panel.

    Hi,
    How do I get multiple Layers to show up in the Layers Panel on the right side of the screen?  I have two images I want to merge.  selecting one displays it right over the other one; I can't perform the Merge.
    Thanks!
    Lee

    From Full Edit (expert Mode) use the top menu:
    File >> Open
    Choose your first image and click the Open button
    Then click File >> Place
    Choose your second image and click the Place button

Maybe you are looking for