A query with "insert..select" run with dqp?

I would like to know if a query with "insert cluase select clause" is operated with the function of the dqp.
I think that a query portion with "select clause" is possible to run with dqp.
if anybody knows about this case, please let me know.
Thanks in advance,
Dokon Kim

There is no such thing as pl/sql 5.1.4, at that time pl/sql didn't even exist.
You also state it works in Sql*plus but it doesn't work in PL/SQL as PL/SQL is using OCI7. Which isn't true.
Please stop playing games and withhelding information.
Post the real info. Not what you think is important.
Why are you using a (desupported) 9.0.1 client against a 10GR2 database?}
Sybrand Bakker
Senior Oracle DBA

Similar Messages

  • Smart scan not working with Insert Select statements

    We have observed that smart scan is not working with insert select statements but works when select statements are execute alone.
    Can you please help us to explain this behavior?

    There is a specific exadata forum - you would do better to post the question there: Exadata
    I can't give you a definitive answer, but it's possible that this is simply a known limitation similar to the way that "Create table as select" won't run the select statement the same way as the basic select if it involves a distributed query.
    Regards
    Jonathan Lewis

  • Associating a process with a 'select list with submit'

    Hi,
    In a tabular form I have 2 'select list with submit'. If a row is selected in the tabular form I need the following functionality from each of the select lists:
    Once a value is selected from the list a process will get excuted which will update a column of the checked row in the database table with the selected value from the list.
    My question is,
    1. How can I associate an 'after submit process' with the 'select list with submit'?
    2. Can I store the selected value in a variable which I can pass as an input parameter to a PL/SQL body?
    Regards,
    AM

    Hi,
    Please see my requirement below.
    I have a 'select list with submit' say P1_Select in a Tabular form Page. I want to create an after submit process (PL/SQL Process) which will take the selected value from the select list as input parameter and perform an update function for the checked row with that value.
    I'm trying give a feel the procedure:
    CREATE OR REPLACE procedure "P_REJECT"
    (p_message IN VARCHAR2 default Null)
    is
    begin
    FOR ii IN 1 .. APEX_APPLICATION.G_F01.count
    LOOP
    UPDATE NI SET NI.STATUS_NI = 'WCONF', NI.NI_Message = p_MESSAGE
    WHERE NI.NI_REF = APEX_APPLICATION.G_F01(APEX_APPLICATION.G_F01(ii));
    END LOOP;
    end;
    As suggested by Flavio I created the conditional 'after submit' process where I'm making a call to the above procedure.
    1. I am not sure how to pass the selected value as a parameter to the proc.
    2. 'request = value, where the value is the string literal P1_SELECT'.... Could not really figure out the meaning of string literal P1_SELECT
    Regards,
    AM

  • Query takes longer to run with indexes.

    Here is my situation. I had a query which I use to run in Production (oracle 9.2.0.5) and Reporting database (9.2.0.3). The time taken to run in both databases was almost the same until 2 months ago which was about 2 minutes. Now in production the query does not run at all where as in Reporting it continues to run in about 2 minutes. Some of the things I obsevred in P are 1) the optimizer_index_cost_adj parameter was changed to 20 from 100 in order to improve the performance of a paycalc program about 3 months ago. Even with this parameter being set to 20, the query use to run in 2 minutes until 2 months ago. in the last two months the GL table increased in size from 25 million rows to 27 million rows. With optimizer_index_cost_adj of 20 and Gl table of 25 million rows it runs fine, but with 27 million rows it does not run at all. If I change the value of optimizer_index_cost_adj to 100 then the query runs with 27 million rows in 2 minutes and I found that it uses full table scan. In Reporting database it always used full table sacn as found thru explain plan. CBO determines which scan is best and it uses that. So my question is that by making optimizer_index_cost_adj = 20, does oracle forces it to use index scan when the table size is 27 million rows? Isn't the index scan is not faster than full table scan? In what situation the full table scan is faster than index scan? If I drop all the indexes on the GL table then the query runs faster in production as it uses full table scan. What is the real benefit of changing optimizer_index_cost_adj values? Any input is most welcome.

    Isn't the index scan is not faster than full table scan? In what situation the full table scan is faster than index scan? No. It is not about which one is the "+fastest+" as that concept is flawed. How can an index be "faster" than a table for example? Does it have better tires and shinier paint job? ;-)
    It is about the amount of I/O that the database needs to perform in order to use that object's contents for resolving/executing that applicable SQL statement.
    If the CBO determines that it needs a 100 widgets worth of I/O to scan the index, and then another 100 widgets of I/O to scan the table, it may decide to not use the index at all, as a full table scan will cost only a 180 I/O widgets - 20 less than the combined scanning of index and table.
    Also, a full scan can make use of multi-block reads - and this, on most storage/file systems, is faster than single block reads.
    So no - a full table scan is NOT a Bad Thing (tm) and not an indicator of a problem. The thing that is of concern is the amount of I/O. The more I/O, the slower the operation. So obviously, we want to make sure that we design SQL that requires the minimal amount of I/O, design a database that support minimal I/O to find the required data (using clusters/partitions/IOTs/indexes/etc), and then check that the CBO also follows suit (which can be the complex bit).
    But before questioning the CBO, first question your code and design - and whether or not they provide the optimal (smallest) I/O footprint for the job at hand.

  • Problems with ABAP report running with transaction code

    Hi experts,
    now I have a problem, that I never seen.
    I have create a report with at selection-screen on value request. When the report is startet in SE38, it runs well. But when i start it with the transction I has defined, it leaves at the line 
    at selection-screen on value request and did not go to start-of-selection.
    Is there anyone who can help me ?
    Angelika

    hi,
    its puzzling!!!
    did u debug the program???? create a break point and try it!!!
    regards,
    madhumitha

  • How to do an insert with a select statement, with unique values

    Hi,
    I have an insert statement like this
    INSERT INTO TABLEA (ID, zzz
    SELECT sequence.nextval, zzz FROM TABLEB
    The problem is TABLEA won't allow any duplicates and TABLEB will return duplicates. Yet I can't use the distinct keyword since I am using a sequence.
    Thanks.

    Samuel411 wrote:
    Hi,
    I have an insert statement like this
    INSERT INTO TABLEA (ID, zzz
    SELECT sequence.nextval, zzz FROM TABLEB
    The problem is TABLEA won't allow any duplicates and TABLEB will return duplicates. Yet I can't use the distinct keyword since I am using a sequence.
    Thanks.Why not?
    drop sequence s
    create sequence s;
    create table distincting (col1 number, object_owner varchar2(30));
    TUBBY_TUBBZ?
    insert into distincting
    select s.nextval, object_owner
    from
      select
        distinct
          owner as object_owner
      from dba_objects
      9  );
    37 rows created.
    TUBBY_TUBBZ?

  • Help in query required – Insert, Select in same table

    Hi All
    I need your help on writing the queries effectively.
    Oracle Version: 10.2.0.3.0
    OS: UNIX
    I have a table METRICS_TBL as mentioned below.
    CYCLE_DATE     METRICS     VALUE
    08/17/2008     COST-TV     100
    08/17/2008     COST-NEWSPAPER     50
    08/17/2008     COST-POSTALMAIL     25
    08/17/2008     PROD-TV     10
    08/17/2008     PROD-NEWSPAPER     25
    08/17/2008     PROD-POSTALMAIL     5
    Based on the above data, I need to append (Insert into METRICS_TBL select from METRICS_TBL) the same table with the records as mentioned below.
    08/17/2008     COSTPERPROD-TV     10
    08/17/2008     COSTPERPROD-NEWSPAPER     2
    08/17/2008     COSTPER PROD-POSTALMAIL     5
    Basically, I need to calculate Cost per Product for each category. Depending upon the available metrics, metrics also should be changed like COSTPERPROD and values should be Cost/prod under each category.
    Can somebody help me with the query.
    Thanks

    SQL> WITH t AS
      2       (
      3          SELECT TO_DATE('8/17/2008', 'MM/DD/YYYY') AS CYCLE_DATE, 'COST-TV' AS METRICS, 100 AS VALUE
      4            FROM DUAL
      5          UNION ALL
      6          SELECT TO_DATE('08/17/2008', 'MM/DD/YYYY'), 'COST-NEWSPAPER', 50
      7            FROM DUAL
      8          UNION ALL
      9          SELECT TO_DATE('08/17/2008', 'MM/DD/YYYY'), 'COST-POSTALMAIL', 25
    10            FROM DUAL
    11          UNION ALL
    12          SELECT TO_DATE('08/17/2008', 'MM/DD/YYYY'), 'PROD-TV', 10
    13            FROM DUAL
    14          UNION ALL
    15          SELECT TO_DATE('08/17/2008', 'MM/DD/YYYY'), 'PROD-NEWSPAPER', 25
    16            FROM DUAL
    17          UNION ALL
    18          SELECT TO_DATE('08/17/2008', 'MM/DD/YYYY'), 'PROD-POSTALMAIL', 5
    19            FROM DUAL)
    20  SELECT COST.CYCLE_DATE, 'COSTPERPROD-' || SUBSTR(COST.metrics, 6) AS Metrics,
    21         COST.VALUE / prod.VALUE AS COSTPERPROD
    22    FROM t COST, t prod
    23   WHERE COST.CYCLE_DATE = PROD.CYCLE_DATE
    24     AND COST.metrics LIKE 'COST-%'
    25     AND prod.metrics LIKE 'PROD-%'
    26     AND SUBSTR(COST.metrics, 6) = SUBSTR(prod.metrics, 6)
    27  /
    CYCLE_DA METRICS                                    COSTPERPROD
    17.08.08 COSTPERPROD-NEWSPAPER                                2
    17.08.08 COSTPERPROD-POSTALMAIL                               5
    17.08.08 COSTPERPROD-TV                                      10

  • Multi-thread application recompile object with make but runs with old value

    Hi. I am working on a simulation in Java, and there is some behavior going on that I cannot understand. Granted, I'm a mechanical engineer, not a CS student (a fact that is probably made obvious by the code I'm posting below). The simulation comprises three parts: a controller, a robot, and a 3-d sensor. Here's the code for the "Simulation" application.
    class Simulation {
        void go() {
         ThreeDSensor sensorRunner = new ThreeDSensor();
         VSController controllerRunner = new VSController();
         KukaKR15SL robotRunner = new KukaKR15SL();
         Thread sensorThread = new Thread(sensorRunner);
         Thread controllerThread = new Thread(controllerRunner);
         Thread robotThread = new Thread(robotRunner);
         sensorThread.start();
         try {
             Thread.sleep(1000);  // Give sensorThread time to start in order to catch first triggers
         } catch(InterruptedException ex) {
             ex.printStackTrace();
         controllerThread.start();
         try {
             Thread.sleep(1000);  // Give controllerThread time to open the socket for communication with robotThread
         } catch(InterruptedException ex) {
             ex.printStackTrace();
         robotThread.start();
        public static void main(String[] args) {
         Simulation sim = new Simulation();
         sim.go();
    }I guess the big reason I'm using multi-threading is that once this simulation is working I want to be able to just run VSController alone and have it interface with a robot controller and a PC performing image processing. So with multiple threads I'm sending TCP and UDP messages around just like the final system will.
    I have made an object for my VSController that just stores values used by the simulation. That way I could have them all in one place instead of hunting through methods to change them. One example is "double noiseThreshold". Quickly, here is the code for "ControllerSettings.java".
    class ControllerSettings {
        final double cameraXOffset = 0;  // If > 0 then the origin of the camera CS is not on the center line of the lens
        final double cameraYOffset = 0;  // If > 0 then the origin of the camera CS is not on the center line of the lens
        final double cameraZOffset = 700;  // The distance that must be kept between the camera and the target
        // Error magnitude less than this is disregarded (in centimeters if roundingData else in millimeters)
        final double noiseThreshold = 60;
        final boolean estimatingEndPoints = false;  // If the controller is using two images per cycle then true
        final boolean roundingData = false;
        final boolean using3DData = true;  // How double[] sent from Matlab image processing is used
         * If the robot controller uses the output of this controller to command
         * motions in cartesian space then true.  This is used in two places: 1) initial guess of Jacobian,
         * and 2) "commandType" element sent to robot controller.
        final boolean useRobotControllerModel = false;
        final double thetaBumpValueForEstimationOfJacobian = .1;  // Distance each joint is jogged in estimation process
        final double bumpDistance = 50;  // Distance robot moves each time (magnitude of translation in mm)
        final double limitAngular = .5;  // Max amout robot joint will be commanded to rotate (in degrees)
    }And here is some pertinent code from "VSController.java".
    class VSController implements Runnable{
        ControllerSettings cSettings;  // Stores all the preferences used by the controller
        NGN controller;  // This is the controller algorithm.
        int dof;  // The degrees of freedom of the robot being controlled
        KukaSendData ksd;  // This provides communication to the robot.
        protected DatagramSocket socketForVisionSystem = null;
        ImageFeaturesData ifd;  // This parses and stores data from the image system.
        double[] errorVector;  // This is what's acted on by the algorithm
        PrintWriter errorTrackerOut = null;  // For analysis of error vector
        public void run() {
         VSController vsc = new VSController();
         vsc.go();
        public void go() {
         initWriters();
         cSettings = new ControllerSettings();
        public boolean isNoise() {
         boolean ret = false;
         double magnitude = 0;
         for (int i = 0; i < errorVector.length; i++) {
             magnitude += errorVector[i] * errorVector;
         magnitude = Math.sqrt(magnitude);
         if (magnitude <= cSettings.noiseThreshold) {
         System.out.println("VSController: magnitude (of errorVector) = " + magnitude +
                   ", threshold = " + cSettings.noiseThreshold); // Debug
    Now here's my issue: I change the value for "noiseThreshold" in "ControllerSettings.java" then run make from terminal (makefile code posted below) and rerun "Simulation". However, despite my changes to "ControllerSettings.java" the value for "noiseThreshold" is not changed, as evidenced by the output on the terminal screen:VSController: magnitude (of errorVector) = 6.085046125925263, threshold = 10.0 See, that value of 10.0 is what I used to have for noiseThreshold. I do not know why this value does not update even though I save the java file and execute make in between executions of Simulation. I would love it if someone could explain this problem to me.
    Here's the contents of makefile.
    JFLAGS = -cp ../Jama\-1\.0\.2.jar:../utils/:/usr/share/java/vecmath\-1\.5\.2.jar:.
    JC = javac
    .SUFFIXES: .java .class
    .java.class:
         $(JC) $(JFLAGS) $*.java
    CLASSES = \
         ControllerSettings.java \
         ImageFeaturesData.java \
         KukaKR15SL.java \
         ../utils/KukaSendData.java \
         NGN.java \
         Puma560.java \
         Robot.java \
         RobotSettings.java \
         Simulation.java \
         SimulationSettings.java \
         SixRRobot.java \
         Targets.java \
         TargetsSettings.java \
         ThreeDData.java \
         ThreeDSensor.java \
         VSController.java
    default: classes
    classes: $(CLASSES:.java=.class)
    clean:
         $(RM) *.classEdited by: raequin on Apr 5, 2010 1:43 PM

    I saw this explanation about what's causing my problem.
    "When the Java compiler sees a reference to a final static primitive or String, it inserts the actual value of that constant into the class that uses it. If you then change the constant value in the defining class but don't recompile the using class, it will continue to use the old value."
    I verified that the value updates if I also change something in VSController.java, forcing it to recompile. I think I will solve this problem by just making the variables in ControllerSettings no longer final (and then recompile VSController to make sure it takes effect!). Is there another solution? I saw intern(), but that seems to only apply to Strings.
    Thanks.

  • Blank Page Facebook with Safari-but running with firefox- help

    Since a few days, opening Facebook with safari doesn't work:I can't log, the page is white. If I use  Firefox or try whith an another user account with Safari,it's running.
    Here is my report.
    Thanks for the help!
    Process:         Safari [179]
    Path:            /Applications/Pacifist/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.6 (5533.22.3)
    Build Info:      WebBrowser-75332203~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [128]
    Date/Time:       2013-01-24 09:21:30.211 -0500
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  B7361C74-FCF7-45BD-BFD7-D7F36F114C22
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004
    Crashed Thread:  9
    Thread 0:
    0   libSystem.B.dylib                       0xffff0691 __bzero + 145 (cpu_capabilities.h:244)
    1   libJPEG.dylib                           0x9089bcd0 _cg_jzero_far + 32
    2   libJPEG.dylib                           0x9089da96 access_virt_barray + 300
    3   libJPEG.dylib                           0x9089d7a5 consume_data + 94
    4   libJPEG.dylib                           0x9089d5e9 decompress_data + 74
    5   libJPEG.dylib                           0x908ac20c process_data_simple_main + 52
    6   libJPEG.dylib                           0x9089b6bf _cg_jpeg_read_scanlines + 150
    7   com.apple.ImageIO.framework             0x91a95863 getBandProcJPGProg + 258
    8   com.apple.ImageIO.framework             0x91acb1c3 faultCacheData_cb + 120
    9   com.apple.CoreGraphics                  0x95157321 faultDataAcquireBytePointer + 190
    10  com.apple.CoreGraphics                  0x94f9dccb CGDataProviderGetBytePtr + 122
    11  com.apple.ImageIO.framework             0x91a5d0c9 CGImagePlusCreateImage + 491
    12  com.apple.WebCore                       0x96dc1e8a WebCore::ImageSource::createFrameAtIndex(unsigned long) + 90
    13  com.apple.WebCore                       0x96dc1c52 WebCore::BitmapImage::cacheFrame(unsigned long) + 66
    14  com.apple.WebCore                       0x96dc1bfc WebCore::BitmapImage::frameAtIndex(unsigned long) + 76
    15  com.apple.WebCore                       0x96faa0fa WebCore::BitmapImage::draw(WebCore::GraphicsContext*, WebCore::FloatRect const&, WebCore::FloatRect const&, WebCore::ColorSpace, WebCore::CompositeOperator) + 58
    16  com.apple.WebCore                       0x96faa021 WebCore::GraphicsContext::drawImage(WebCore::Image*, WebCore::ColorSpace, WebCore::FloatRect const&, WebCore::FloatRect const&, WebCore::CompositeOperator, bool) + 481
    17  com.apple.WebCore                       0x972f0916 WebCore::GraphicsContext::drawImage(WebCore::Image*, WebCore::ColorSpace, WebCore::IntRect const&, WebCore::IntRect const&, WebCore::CompositeOperator, bool) + 102
    18  com.apple.WebCore                       0x96fb4ba8 WebCore::GraphicsContext::drawImage(WebCore::Image*, WebCore::ColorSpace, WebCore::IntRect const&, WebCore::CompositeOperator, bool) + 88
    19  com.apple.WebCore                       0x96fb46b0 WebCore::RenderImage::paintIntoRect(WebCore::GraphicsContext*, WebCore::IntRect const&) + 464
    20  com.apple.WebCore                       0x96fa98a5 WebCore::RenderImage::paintReplaced(WebCore::PaintInfo&, int, int) + 949
    21  com.apple.WebCore                       0x96fa8f79 WebCore::RenderReplaced::paint(WebCore::PaintInfo&, int, int) + 665
    22  com.apple.WebCore                       0x96fa8cac WebCore::RenderImage::paint(WebCore::PaintInfo&, int, int) + 44
    23  com.apple.WebCore                       0x96f17ea1 WebCore::InlineBox::paint(WebCore::PaintInfo&, int, int, int, int) + 337
    24  com.apple.WebCore                       0x96e8ad1d WebCore::InlineFlowBox::paint(WebCore::PaintInfo&, int, int, int, int) + 381
    25  com.apple.WebCore                       0x96e8aad5 WebCore::RootInlineBox::paint(WebCore::PaintInfo&, int, int, int, int) + 85
    26  com.apple.WebCore                       0x96e8a160 WebCore::RenderLineBoxList::paint(WebCore::RenderBoxModelObject*, WebCore::PaintInfo&, int, int) const + 704
    27  com.apple.WebCore                       0x9795b471 WebCore::RenderBlock::paintContents(WebCore::PaintInfo&, int, int) + 81
    28  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    29  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    30  com.apple.WebCore                       0x96f90895 WebCore::RenderTableCell::paint(WebCore::PaintInfo&, int, int) + 53
    31  com.apple.WebCore                       0x96f904ea WebCore::RenderTableSection::paintCell(WebCore::RenderTableCell*, WebCore::PaintInfo&, int, int) + 154
    32  com.apple.WebCore                       0x96f8fd08 WebCore::RenderTableSection::paintObject(WebCore::PaintInfo&, int, int) + 488
    33  com.apple.WebCore                       0x96f8fae7 WebCore::RenderTableSection::paint(WebCore::PaintInfo&, int, int) + 167
    34  com.apple.WebCore                       0x96f89f41 WebCore::RenderTable::paintObject(WebCore::PaintInfo&, int, int) + 305
    35  com.apple.WebCore                       0x96f89d8e WebCore::RenderTable::paint(WebCore::PaintInfo&, int, int) + 238
    36  com.apple.WebCore                       0x96e85c09 WebCore::RenderBlock::paintFloats(WebCore::PaintInfo&, int, int, bool) + 441
    37  com.apple.WebCore                       0x96e84ebc WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 716
    38  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    39  com.apple.WebCore                       0x96f90895 WebCore::RenderTableCell::paint(WebCore::PaintInfo&, int, int) + 53
    40  com.apple.WebCore                       0x96f904ea WebCore::RenderTableSection::paintCell(WebCore::RenderTableCell*, WebCore::PaintInfo&, int, int) + 154
    41  com.apple.WebCore                       0x96f8fd08 WebCore::RenderTableSection::paintObject(WebCore::PaintInfo&, int, int) + 488
    42  com.apple.WebCore                       0x96f8fae7 WebCore::RenderTableSection::paint(WebCore::PaintInfo&, int, int) + 167
    43  com.apple.WebCore                       0x96f89f41 WebCore::RenderTable::paintObject(WebCore::PaintInfo&, int, int) + 305
    44  com.apple.WebCore                       0x96f89d8e WebCore::RenderTable::paint(WebCore::PaintInfo&, int, int) + 238
    45  com.apple.WebCore                       0x96e855fa WebCore::RenderBlock::paintChildren(WebCore::PaintInfo&, int, int) + 538
    46  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    47  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    48  com.apple.WebCore                       0x96e855fa WebCore::RenderBlock::paintChildren(WebCore::PaintInfo&, int, int) + 538
    49  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    50  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    51  com.apple.WebCore                       0x96e837a1 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 3489
    52  com.apple.WebCore                       0x96fcc3f6 WebCore::RenderLayer::paintList(***::Vector<WebCore::RenderLayer*, 0ul>*, WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 102
    53  com.apple.WebCore                       0x96e82d72 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 882
    54  com.apple.WebCore                       0x96e82975 WebCore::RenderLayer::paint(WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*) + 101
    55  com.apple.WebCore                       0x96e824dd WebCore::FrameView::paintContents(WebCore::GraphicsContext*, WebCore::IntRect const&) + 445
    56  com.apple.WebKit                        0x955df1a4 -[WebFrame(WebInternal) _drawRect:contentsOnly:] + 260
    57  com.apple.WebKit                        0x955ded04 -[WebHTMLView drawSingleRect:] + 388
    58  com.apple.WebKit                        0x955de9e3 -[WebHTMLView drawRect:] + 595
    59  com.apple.AppKit                        0x9581dbf8 -[NSView _drawRect:clip:] + 3853
    60  com.apple.AppKit                        0x9581c6ef -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050
    61  com.apple.WebKit                        0x955de56a -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 266
    62  com.apple.AppKit                        0x9581ca86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    63  com.apple.AppKit                        0x9581ca86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    64  com.apple.AppKit                        0x9581ca86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    65  com.apple.AppKit                        0x9581b045 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 759
    66  com.apple.AppKit                        0x958174ab -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    67  com.apple.AppKit                        0x958ac47d -[NSView displayIfNeededInRectIgnoringOpacity:] + 628
    68  com.apple.WebCore                       0x96ff9d78 WebCore::Widget::paint(WebCore::GraphicsContext*, WebCore::IntRect const&) + 760
    69  com.apple.WebCore                       0x96ff95b7 WebCore::ScrollView::paint(WebCore::GraphicsContext*, WebCore::IntRect const&) + 55
    70  com.apple.WebCore                       0x96ff9502 WebCore::RenderWidget::paint(WebCore::PaintInfo&, int, int) + 1826
    71  com.apple.WebCore                       0x96f17ea1 WebCore::InlineBox::paint(WebCore::PaintInfo&, int, int, int, int) + 337
    72  com.apple.WebCore                       0x96e8ad1d WebCore::InlineFlowBox::paint(WebCore::PaintInfo&, int, int, int, int) + 381
    73  com.apple.WebCore                       0x96e8aad5 WebCore::RootInlineBox::paint(WebCore::PaintInfo&, int, int, int, int) + 85
    74  com.apple.WebCore                       0x96e8a160 WebCore::RenderLineBoxList::paint(WebCore::RenderBoxModelObject*, WebCore::PaintInfo&, int, int) const + 704
    75  com.apple.WebCore                       0x9795b471 WebCore::RenderBlock::paintContents(WebCore::PaintInfo&, int, int) + 81
    76  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    77  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    78  com.apple.WebCore                       0x96e855fa WebCore::RenderBlock::paintChildren(WebCore::PaintInfo&, int, int) + 538
    79  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    80  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    81  com.apple.WebCore                       0x96e855fa WebCore::RenderBlock::paintChildren(WebCore::PaintInfo&, int, int) + 538
    82  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    83  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    84  com.apple.WebCore                       0x96e855fa WebCore::RenderBlock::paintChildren(WebCore::PaintInfo&, int, int) + 538
    85  com.apple.WebCore                       0x96e84e6d WebCore::RenderBlock::paintObject(WebCore::PaintInfo&, int, int) + 637
    86  com.apple.WebCore                       0x96e86bce WebCore::RenderBlock::paint(WebCore::PaintInfo&, int, int) + 238
    87  com.apple.WebCore                       0x96e837dd WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 3549
    88  com.apple.WebCore                       0x96fcc3f6 WebCore::RenderLayer::paintList(***::Vector<WebCore::RenderLayer*, 0ul>*, WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 102
    89  com.apple.WebCore                       0x96e82d72 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 882
    90  com.apple.WebCore                       0x96fcc3f6 WebCore::RenderLayer::paintList(***::Vector<WebCore::RenderLayer*, 0ul>*, WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 102
    91  com.apple.WebCore                       0x96e82d72 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 882
    92  com.apple.WebCore                       0x96e82975 WebCore::RenderLayer::paint(WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*) + 101
    93  com.apple.WebCore                       0x96e824dd WebCore::FrameView::paintContents(WebCore::GraphicsContext*, WebCore::IntRect const&) + 445
    94  com.apple.WebKit                        0x955df1a4 -[WebFrame(WebInternal) _drawRect:contentsOnly:] + 260
    95  com.apple.WebKit                        0x955ded04 -[WebHTMLView drawSingleRect:] + 388
    96  com.apple.WebKit                        0x955de9e3 -[WebHTMLView drawRect:] + 595
    97  com.apple.AppKit                        0x9581dbf8 -[NSView _drawRect:clip:] + 3853
    98  com.apple.AppKit                        0x9581c6ef -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050
    99  com.apple.WebKit                        0x955de56a -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 266
    100 com.apple.AppKit                        0x9581ca86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    101 com.apple.AppKit                        0x9581b045 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 759
    102 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    103 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    104 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    105 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    106 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    107 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    108 com.apple.AppKit                        0x9581be9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    109 com.apple.AppKit                        0x9581a987 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 306
    110 com.apple.AppKit                        0x958174ab -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    111 com.apple.AppKit                        0x95757e7b -[NSView displayIfNeeded] + 933
    112 com.apple.AppKit                        0x95757a29 -[NSWindow displayIfNeeded] + 189
    113 com.apple.Safari                        0x000333b3 0x1000 + 205747
    114 com.apple.AppKit                        0x9575784c _handleWindowNeedsDisplay + 436
    115 com.apple.CoreFoundation                0x967af772 __CFRunLoopDoObservers + 466
    116 com.apple.CoreFoundation                0x967b0acc CFRunLoopRunSpecific + 844
    117 com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    118 com.apple.HIToolbox                     0x903fd2ac RunCurrentEventLoopInMode + 283
    119 com.apple.HIToolbox                     0x903fcffe ReceiveNextEventCommon + 175
    120 com.apple.HIToolbox                     0x903fcf39 BlockUntilNextEventMatchingListInMode + 106
    121 com.apple.AppKit                        0x957556d5 _DPSNextEvent + 657
    122 com.apple.AppKit                        0x95754f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    123 com.apple.Safari                        0x000166ad 0x1000 + 87725
    124 com.apple.AppKit                        0x9574df9f -[NSApplication run] + 795
    125 com.apple.AppKit                        0x9571b1d8 NSApplicationMain + 574
    126 com.apple.Safari                        0x0000acee 0x1000 + 40174
    Thread 1:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x93556d58 ***::TCMalloc_PageHeap::scavengerThread() + 824
    3   com.apple.JavaScriptCore                0x93556d8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.WebCore                       0x96db2587 WebCore::IconDatabase::syncThreadMainLoop() + 279
    3   com.apple.WebCore                       0x96dafe19 WebCore::IconDatabase::iconDatabaseSyncThread() + 761
    4   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x90e87166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90e8e95c mach_msg + 72
    2   com.apple.CoreFoundation                0x967b0e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork                     0x945eb18c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    6   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x90e87166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90e8e95c mach_msg + 72
    2   com.apple.CoreFoundation                0x967b0e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                        0x0002f33d 0x1000 + 189245
    5   com.apple.Safari                        0x0002f08a 0x1000 + 188554
    6   com.apple.Safari                        0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    8   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x933ab6b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x96dcb77c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x90e87166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90e8e95c mach_msg + 72
    2   com.apple.CoreFoundation                0x967b0e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x9224a520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation                    0x921e6dfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x921e69a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    8   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x90ed660a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    2   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   libcooliris.dylib                       0x13d32f48 0x13d00000 + 208712
    3   libcooliris.dylib                       0x13d96257 CoolirisIsPrivilegedURL + 383555
    4   libcooliris.dylib                       0x13e72744 CoolirisIsPrivilegedURL + 1285936
    5   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    6   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 9 Crashed:
    0   com.apple.CoreFoundation                0x967b0e1c CFRunLoopRunSpecific + 1692
    1   com.apple.CoreFoundation                0x967b1b04 CFRunLoopRun + 84
    2   libcooliris.dylib                       0x13f34064 CoolirisIsPrivilegedURL + 2078800
    3   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    4   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   libGLProgrammability.dylib              0x935dfb32 glvmDoWork + 162
    3   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    4   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.ColorSync                     0x93d303c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3   com.apple.ColorSync                     0x93d42d4e CMMConvTask(void*) + 54
    4   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x90e87166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90e8e95c mach_msg + 72
    2   com.apple.CoreFoundation                0x967b0e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                        0x0002f33d 0x1000 + 189245
    5   com.apple.Safari                        0x0002f08a 0x1000 + 188554
    6   com.apple.Safari                        0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    8   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x933ab6b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.Safari                        0x001ae478 0x1000 + 1758328
    4   com.apple.Safari                        0x00044cdd 0x1000 + 277725
    5   com.apple.Safari                        0x00044c2d 0x1000 + 277549
    6   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    7   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.QuartzCore                    0x93f53a09 fe_fragment_thread + 54
    3   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    4   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x90ebd1aa write + 10
    1   libSystem.B.dylib                       0x90f68913 _malloc_vprintf + 425
    2   libSystem.B.dylib                       0x90f6894b malloc_printf + 35
    3   libSystem.B.dylib                       0x90f63422 szone_error + 174
    4   libSystem.B.dylib                       0x90e90876 allocate_pages + 223
    5   libSystem.B.dylib                       0x90e906bc small_malloc_from_region_no_lock + 133
    6   libSystem.B.dylib                       0x90e8819a szone_malloc + 417
    7   libSystem.B.dylib                       0x90e87fb8 malloc_zone_malloc + 81
    8   com.apple.Foundation                    0x921e4fdc -[NSFileManager fileSystemRepresentationWithPath:] + 92
    9   com.apple.Foundation                    0x921e4eee -[NSString(NSPathUtilities) fileSystemRepresentation] + 62
    10  com.apple.WebKit                        0x95661dbf fileExists + 31
    11  com.apple.WebKit                        0x955f6957 -[NSFileManager(WebNSFileManagerExtras) _webkit_pathWithUniqueFilenameForPath:] + 231
    12  com.apple.Safari                        0x000d8a7f 0x1000 + 883327
    13  com.apple.Safari                        0x00088e3b 0x1000 + 556603
    14  com.apple.Safari                        0x000491f7 0x1000 + 295415
    15  com.apple.Safari                        0x00048f12 0x1000 + 294674
    16  com.apple.Safari                        0x00048a9b 0x1000 + 293531
    17  com.apple.Foundation                    0x921e6dfd -[NSThread main] + 45
    18  com.apple.Foundation                    0x921e69a4 __NSThread__main__ + 308
    19  libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    20  libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x90e8e34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x90eb8ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x933ab6b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x96dcb77c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    5   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x90e87166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90e8e95c mach_msg + 72
    2   com.apple.CoreFoundation                0x967b0e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x967b1aa8 CFRunLoopRunInMode + 88
    4   com.apple.audio.CoreAudio               0x94eb65f8 HALRunLoop::OwnThread(void*) + 160
    5   com.apple.audio.CoreAudio               0x94eb6480 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    7   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x90e871ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x90eb91c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x90efe449 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x2506279f unregister_ShockwaveFlash + 47503
    4   ...lashPlayer-10.4-10.5.plugin          0x24c3a63f 0x24c21000 + 103999
    5   ...lashPlayer-10.4-10.5.plugin          0x2506288c unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x250628d0 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x250629f6 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    9   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x90e871ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x90eb91c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x90efe449 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x2506279f unregister_ShockwaveFlash + 47503
    4   ...lashPlayer-10.4-10.5.plugin          0x24c3a63f 0x24c21000 + 103999
    5   ...lashPlayer-10.4-10.5.plugin          0x2506288c unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x250628d0 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x250629f6 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    9   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x90e871c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x90eb91af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x90ebaa33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x25062767 unregister_ShockwaveFlash + 47447
    4   ...lashPlayer-10.4-10.5.plugin          0x24e0248e 0x24c21000 + 1971342
    5   ...lashPlayer-10.4-10.5.plugin          0x2506288c unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x250628d0 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x250629f6 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    9   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x90e871c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x90eb91af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x90ebaa33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x25062767 unregister_ShockwaveFlash + 47447
    4   ...lashPlayer-10.4-10.5.plugin          0x24f48958 0x24c21000 + 3307864
    5   ...lashPlayer-10.4-10.5.plugin          0x2506288c unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x250628d0 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x250629f6 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x90eb8055 _pthread_start + 321
    9   libSystem.B.dylib                       0x90eb7f12 thread_start + 34
    Thread 9 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x967b0797  ecx: 0xb041f6fc  edx: 0x00872000
      edi: 0x00000000  esi: 0x00000554  ebp: 0xb041fee8  esp: 0xb041f930
       ss: 0x0000001f  efl: 0x00010246  eip: 0x967b0e1c   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000004
    Binary Images:
        0x1000 -   0x5d3ffc  com.apple.Safari 5.0.6 (5533.22.3) <79731a26a77704fb4831e3adc020a381> /Applications/Pacifist/Safari.app/Contents/MacOS/Safari
      0x644000 -   0x732fef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
      0x7b6000 -   0x7b8ffd  com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
      0x7bf000 -   0x7cafff  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x7d2000 -   0x7fcfe8  com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x80d000 -   0x81cffc  SyndicationUI ??? (???) <4cb2f7ffaf3185ff4e036082064e7121> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
      0x82b000 -   0x861fef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
      0x8dd000 -   0x8deffb +com.cooliris.safariplugin Cooliris Plugin (1.11) <439bb2f50ed42bb38af31bdff7d2a85f> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/Cooliris
      0xe25000 -   0xe41ff7  GLRendererFloat ??? (???) <927b7d5ce6a7c21fdc761f6f29cdf4ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
      0xe57000 -   0xe58ffc +com.yourcompany.ct_loader 1.7.0.2 (1702) <86134afac7ff3505d2f5a6305d56dea5> /Library/InputManagers/CTLoader/ct_loader.bundle/Contents/MacOS/ct_loader
      0xe5e000 -   0xe5effd +com.sourcebits.FBPlugin 0.7 (7.0) <19f5cafed5b0cc682c1ec89fc3e69f9e> /Library/InputManagers/FBPlugin/FBPlugin.bundle/Contents/MacOS/FBPlugin
      0xfba000 -   0xfd1ff7 +com.conduit.ct_alerts 1000 (1.0.0.0) <5917af5ccfa75ea19fc21293246ddd65> /Library/Application Support/Conduit/Plugins/cttoolbar.bundle/Contents/Resources/Services/ct_alerts. bundle/Contents/MacOS/ct_alerts
    0x121c6000 - 0x125fdfef  com.apple.RawCamera.bundle 3.6.0 (558) <ccf48b696b02b0a545df5c5327ad16f0> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x129e3000 - 0x129e3ffe +com.conduit.ct_scripting.osax 1.2.1.9 (1219) <92d4792a5a53176845888eda0e7e714e> /Library/ScriptingAdditions/ct_scripting.osax/Contents/MacOS/ct_scripting
    0x1389e000 - 0x13a23fe3  GLEngine ??? (???) <3bd4729832411ff31de5bb9d97e3718d> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x13d00000 - 0x14215ffb +libcooliris.dylib ??? (???) <b6b7672a83c435ee9963610a55777ea0> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/libcooliris.dyli b
    0x1671c000 - 0x16a85fe8  com.apple.GeForce8xxxGLDriver 1.5.48 (5.4.8) <880ed3155078052260ade6e705c9ca64> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x192d2000 - 0x192d3fff  com.apple.JavaPluginCocoa 12.9.0 (12.9.0) <5451adf6a77e3088b1a096fe1e16b189> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x19538000 - 0x1953cffd  JavaLaunching ??? (???) <41aa04fadb9589ab9c249284090b2ef7> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x1957a000 - 0x1966bfff +com.conduit.cttoolbar 1.7.0.2 (1702) <6dcd8bd26903e46f5113a9aaf2d0852c> /Library/Application Support/Conduit/Plugins/cttoolbar.bundle/Contents/MacOS/ct_plugins
    0x1cf0e000 - 0x1cf13ff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x1cfd3000 - 0x1cfdeff7 +com.evernote.EvernoteSafariClipperPlugin 1.0 (158341) <11a9999a93c0b1280f71908100d3e123> /Users/louisedel/Library/Internet Plug-Ins/EvernoteSafariClipperPlugin.webplugin/Contents/MacOS/EvernoteSafariCli pperPlugin
    0x1dad8000 - 0x1dadbff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x1dd6b000 - 0x1dd9afe2  com.apple.QuickTime Plugin.plugin 7.7 (1680.28) /Library/Internet Plug-Ins/QuickTime Plugin.plugin/Contents/MacOS/QuickTime Plugin
    0x1efb8000 - 0x1efb9ff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1f046000 - 0x1f09efff +com.DivXInc.DivXDecoder 6.8.4.3 (6.8.4) <26a406b3e4bcc6ff8f28a99ffeb5cf2d> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x2023f000 - 0x20242ff2 +com.macromedia.Flash Player.plugin 10.3.183.29 (10.3.183.29) <590415f9d1975e0549277b817bcdd879> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x20896000 - 0x20899fff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <51c811377017028f8904ad779e6a1344> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x20e73000 - 0x20e79fff  com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) <a0a4389b5ac52ab84397d2b25c9d3b9c> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x24c21000 - 0x2566ffe3 +com.macromedia.FlashPlayer-10.4-10.5.plugin 10.3.183.29 (10.3.183.29) <d429048099c924aa8b162158bbb5be64> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x2609d000 - 0x260abfeb  libSimplifiedChineseConverter.dylib ??? (???) <68f130a585c3f580d166ef7cbbf47e69> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x26171000 - 0x26183fff  libTraditionalChineseConverter.dylib ??? (???) <6108541a452ff07d2f67db4a488b9d22> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x9000affe  libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x9000b000 - 0x90014fff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90015000 - 0x9001cfff  com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9001d000 - 0x900aaff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x900ab000 - 0x900affff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x900b0000 - 0x901e9ff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x902e4000 - 0x903ccff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x903cd000 - 0x906d5fe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x906db000 - 0x906f9fff  libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x906fa000 - 0x9070fffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90710000 - 0x90894fef  com.apple.MediaToolbox 0.484.2 (484.2) <03c5c5966a91ad3ae9c825340fa21970> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x90895000 - 0x908b4ffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x908b5000 - 0x908d0ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x908d1000 - 0x9094bff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90964000 - 0x9099effe  com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x909cf000 - 0x90b21ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90b22000 - 0x90b2afff  com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90b2b000 - 0x90b3afff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x90b3b000 - 0x90bcefff  com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90bcf000 - 0x90bfcfeb  libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90bfd000 - 0x90bfdff8  com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90bfe000 - 0x90cb0ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x90d03000 - 0x90d20ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90d4b000 - 0x90e12ff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90e13000 - 0x90e85fff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90e86000 - 0x90fedff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x90fee000 - 0x9104aff7  com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9104b000 - 0x9104bffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9104c000 - 0x9104cff8  com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x911b1000 - 0x9148bff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9148c000 - 0x914a2fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x914a3000 - 0x9155efe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9155f000 - 0x915a1fef  com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x915a2000 - 0x915ebfef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x915ec000 - 0x9163bfff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x9163c000 - 0x919f8ff4  com.apple.VideoToolbox 0.484.2 (484.2) <f8e0dbf848f7441bc31428305a2f65bf> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x919f9000 - 0x91a00fe9  libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x91a01000 - 0x91a11fff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a12000 - 0x91a50fff  libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91a56000 - 0x91b9fff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91ba0000 - 0x91badfe7  com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91bae000 - 0x91c8efff  libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x91c8f000 - 0x91cabff3  com.apple.CoreVideo 1.6.1 (48.6) <e1eea31edd855f3e739202eb18ac8312> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91cac000 - 0x91d29fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91f93000 - 0x92164fef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92165000 - 0x921b3fe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x921d1000 - 0x921d2ffc  libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x921dc000 - 0x92458fe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92459000 - 0x93359fe6  com.apple.QuickTimeComponents.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9339f000 - 0x9339fffa  com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x933a0000 - 0x935b7ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x935b8000 - 0x93a89fbe  libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93a8a000 - 0x93bd4feb  com.apple.QTKit 7.7 (1680.28) <c03868cba11c22743a5d68e1b0184399> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93bd5000 - 0x93c15fef  com.apple.CoreMedia 0.484.2 (484.2) <a3f49c4ac23e1e4ff60061ef279e367c> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93c16000 - 0x93c50fe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93c51000 - 0x93c60ffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <182986b74247b459b2a67a47071bdc6b> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93cd5000 - 0x93cedfff  com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93cee000 - 0x93cf1fff  com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93cf2000 - 0x93cfcfeb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93cfd000 - 0x93dc8fef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93dc9000 - 0x93df2fff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x93df3000 - 0x93e32fef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93e33000 - 0x93e5efe7  libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x93e5f000 - 0x941fcfef  com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x941fd000 - 0x941fdffe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x941fe000 - 0x94200fff  com.apple.securityhi 3.0 (30817) <40562b85d99118354c974e76c32fa6fb> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94201000 - 0x9424cfe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9424d000 - 0x942b3ffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x942b4000 - 0x945dfff6  com.apple.QuickTime 7.7 (1680.28) <df75ea1435dadaf44ffde0924bc67ec4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x945e0000 - 0x945e0ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x945e1000 - 0x945e1ffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x945e2000 - 0x945e7fff  com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x945e8000 - 0x9468ffec 

    You installed the Conduit spyware. To remove it, back up all data, then follow the instructions on this page:
    Help Center | Community Toolbar
    If those instructions don't work, proceed as follows.
    Triple-click the line below to select it:
    ~/Library/Application Support/Conduit
    Copy the selected text to the Clipboard (command-C). From the Finder menu bar, select
    Go ▹ Go to Folder…
    Paste (command-V) into the box that opens, then press return. A Finder window should open with a folder named "Conduit" selected. If it does, delete the selected item.
    Repeat with this line:
    /Applications/Toolbars
    Now you're deleting a folder named "Toolbars". You may be prompted for your login password. Next, copy this line:
    /Library
    Select Go to Folder… again and paste. Don't delete the Library folder. Delete only the following items inside it, if they exist.
    Application Support/Conduit
    InputManagers/CTLoader
    LaunchAgents/com.conduit.loader.agent.plist
    ScriptingAdditions/ct_scripting.osax
    Close the Finder windows you opened. Log out and log back in.
    I've seen a report that Conduit may be bundled with a scam "utility" called "MacKeeper." If you installed MacKeeper, you should remove it according to the developer's instructions. It's worthless and causes many problems reported on this site.
    While you're at it, also remove DivX, CoolIris, and "FBPlugin" (whatever that is) according to the respective developers' instructions.

  • Submit a report program with same selection screen with some values exclude

    Dear All,
    I have to  submit a stndard report program from a copied zprogram with same slection screen values ,
    and in some slect-options some values will be excluded depending upon the zprogram.
    How to make it.
    I mean when i submit , same selction screen values should go along with , depending upon some condions i have to exclude some values .
    for ex: selection screen from a to b
    posting date should go same
    but may be along with it i have to pass movem,ent type <> 202 to the submit screen ,.
    how to do this?

    Hi Rajendra
    >What if i have to pass the movement type also 200 to 250 , with 202 and 203 exluded .
    Use BT ( between ) operator for 200 to 250 :
    lr_move_type-sign = 'I'.
    lr_move_type-option = 'BT'.
    lr_move_type-low = '200'.
    lr_move_type-high = '250'.
    COLLECT lr_move_type.
    And use NE ( not equal )  operator to exclude 202 and 203 :
    lr_move_type-sign = 'I'.
    lr_move_type-option = 'NE'.
    lr_move_type-low = '202'.
    COLLECT lr_move_type.
    lr_move_type-low = '203'.
    COLLECT lr_move_type.
    It works just this way.
    > Secondly,
    >
    > If i have the selction sreen same in both the screen , is it possible to pass the same values as it is with out writing one by one selct-option and parameter?
    No I don't think there is way to do it without writing one by one
    but you may not specify for empty select-options.
    Edited by: Bulent Balci on Aug 21, 2010 11:46 AM

  • PSE8 - Need help with bizarre selection problem with spot healing and clone tools

    In using clone stamp and spot healing brush--. When I Alt click for my sample I get entire image---acting as if I'm moving a layer---whether I'm working on a single or multi-layer image.  This is PSE8 3 gig ram windows ----Lenovo Core II duo  P8400  @ 2.26 GHZ  with ATI 256 meg graphics
    This sure is fun!!!
    I'm trying to get rid of an old numbering imprint on a film(not digital) image.

    Actually the overlay option is helpful. It shows the region that you are copying - and i dont think thats causing the issue.
    The issue is because you dont have the clip option checked along with Overlay.
    Just make sure you have both Overlay and Clipped options checked and you would not see this problem anymore.
    Regards,
    Pri
    (Attached an image of the settings)

  • Need help with using selected class with includes...

    Hi guys,
    I'm using PHP includes for my site and in the header include I have my main navigation - so it's drawn in to whatever page the user goes to from header.php.
    I want to have a 'selected' <li> class for the navigation so the relevant button is highlighted depending on which page/section the user is on...
    How would I go about implementing it into header.php - is there a way I can put a bit of PHP in each of the pages to make the appropiate <li> in header.php use the 'selected' class?
    Thank you and I hope to hear from you.
    SM

    I'm sure there will be an easier way than this for PHP but if you give each menu item a class, you can then give each <body> a different id (or class) to determine where the user is.
    Eg:
    CSS
    nav li.menu_home a{style here} /* class is 'menu_home' for home menu item */
    #home nav li.menu_home a{style here} /* the id of 'home' is added to the body tag on the home page, <body id="home"> */
    HTML
    <body id="home">
    <!-- navigation include -->
    <nav>
    <ul>
    <li class="menu_home"><a href="">Home</a></li>
    </ul>
    </nav>
    <!-- end navigation include -->
    </body>
    Or you could try searching for a javascript method.

  • Issue when Run Report with  Hier selection   in the Portal

    Hi  Portal  BI Experts,
    we are finding a strange issue  when Running the Report.
    the following  Variables are in the  Report  Selection screen :
    Company code [optiona]
    Prod.Variance Type [ mandatory]
    Hierarchy Node Variable [optional]
    TheQuery  which I am Running  thro Bex Analyzer  with  the Hier  selection as below , is working  fine. But
    When I  run   thro portal with Hier selection value   with    00/50/G310/702258(0CUST_SALES
    It automatically  display as +00/50/G310/702258(0CUST_SALES    with + symbol. and  thro the error:
    Input "\+00/50/G310/702258(0CUST_SALES);\+00/51/G410/703096(0CUST_SALES)" for Ship-To Party (Sales has invalid format
    If I remove the plus symbol  report runnig fine.
    Your  immediate help highly appreciated.
    Thanks
    Hema
    Edited by: hemav on Mar 21, 2011 2:29 PM

    Hi Jaya,
    This is the Error message  I am facing when I Execute ithe query  report n the Web[Portal]
    Input "\+00/50/G310/702258(0CUST_SALES);\+00/51/G410/703096(0CUST_SALES)" for Ship-To Party (Sales has invalid format
    ie. In the variable screen the selected hier value  automaticvally display with plus symbol
    Actual   Hier  value :   00/50/G310/702258(0CUST_SALES)
    Once close the Hier  selection list window , the Hier value  turned to  +00/50/G310/702258(0CUST_SALES)
    If I give ok with this Plus symbol  it throwing the above error.  By  removing the Plus symbol manually  it is working fine.
    I unable locate the  settings.
    that too when I run the same report  in Bex Analyzer  woking fine , no issues in the Hier  value.
    Thanks ,
    Hema

  • Query variable : selection option with no interval

    Hello,
    Is it possible to define a query variable as selection option, with no interval (like in abap).
    I am in 3.X version.
    Many Thanks in advance,
    Manuel

    Hi Manuel,
    This should be possible through multiple single value variables, but to ensure that the user has not in input the same charateristic value for exclusion and selection you may choose to write customer exit at the background.
    I think interval and select option would allow 'To values'.
    So I was wrong in what I said before. SORRY
    However multiple single value would not allow exclusion, I think.
    Your scenario would only be possible by excluding multiple single values in variable type select option and process the variable using customer exit, to trmove all to Values.
    But you are right, you cannot have your scenrio handled , I think.
    ( ie multiple exclusion in from values with no To Values )
    One more way is restrict your characteristic by two input ready variables, one select option for exclusion and have a customer exit to delte all inclusion that were input accidently and one multiple value ready for input variable.
    But, all in all, there would be no straight drive through this I think.
    Hope it helps,
    Regards,
    Sunmit.

  • Select list with bind variable does not work

    Hi,
    What can be wrong with a 'select list' with the a simple select
    select omschrijving o, id i
    from basiscodes b
    where domein = 'OPTIES'
    and b.id in
    (select eo.basiscode_id from evenementen_opties eo
    where eo.event_id = :P16_ID)
    The :P16_ID has a value and should give result
    But it does not work at all with 'select list'
    Using the POPUP LOV (display discription, return key value) works nice
    The select retuns less then 10 records

    Hi Flavio,
    As I explained, the P16_ID is an item of the master page (page 16)
    In Page 18 where I want to reuse that value, the item is not there, but I use it to assign
    P18_EVENT_ID with the value in P16_ID and that works fine.
    In an after submit process, I do this :
    declare
    function get_pk return varchar2
    is
    begin
    for c1 in (select EVENEMENT_INSCHRIJVING_SEQ.nextval next_val
    from dual)
    loop
    return c1.next_val;
    end loop;
    end;
    begin
    :P18_ID := get_pk;
    :P18_EVENT_ID := :P16_ID;
    :P18_CREATIE_DT := TO_CHAR(SYSDATE,'DD-MM-YYYY HH24:MI:SS');
    :P18_CREATIE_USER := APEX_APPLICATION.G_USER;
    end;
    The value P16_ID is there before I open page 18
    I made a display item that displays the value P16_ID
    If I change the LOV select in :
    select b.omschrijving o, b.id i
    from basiscodes b
    , evenementen_opties eo
    where b.domein = 'OPTIES'
    and b.id = eo.basiscode_id
    and eo.event_id = 16
    then it returns the value I want : 1 record
    You see, I'm a really new one in apex.
    Forms 6i was easier for me...
    Regards Jules
    null

Maybe you are looking for

  • Any stock broker/mutual fund traders using a Mac?? I need your help!

    Hi there. I am a recent switcher and love my Mac so much I want to get a friend to switch as well. He is stuck on Windows 98 (and all of the problems that come with it) since he is running an old stock trader client database called MarketMate. It too

  • IPhoto library won't open

    My iPhoto library on my new Macbook Pro suddenly won't open.  When I open up iPhoto, it now takes me to a screen that says "which photo library do you want iPhoto to use".  There are no options.  I then click on "other library", and I can see my iPho

  • ATG search result sorting logics

    I would like to get the list of all sorting options in atg search results and the priority and order of each logic applied in the search result. Any one please help me ? I am listing below the sort options known to me 1. The default sort order --> so

  • Session attributes won't work

    Hi all: I am passing an attribute value from one JSP to another JSP using session class, it seems that when doing this the target JSP losses the reference to the session and the attribute ("xxx") disappears too, so when I use the session.getAttribute

  • Display Null when the column has a particular date value

    Experts, I have write the below query in Date column, CASE WHEN Table.Column='Bad A' THEN CAST(Null as "Table"."Date") WHEN Table.Column='Bad b' THEN CAST(Null as "Table"."Date") ELSE "Table"."Date"END but I am getting *" Invalid Alias Format : Table