Bug in 10.2.0.3.0 - sum gives wrong result?

Hi,
I've found a strange behavior when using sum without group by. Firs I thought it's hash group by, but it's supposed to be fixed in 10.2.0.3, and setting GBYHASH_AGGREGATION_ENABLED=FALSE also didn't fix the error.
We have automated tests to verify our results of views and procedures. The test works on a small subset of data, so it uses the following (pseudo) select to calcuate the expected value:
select
sum(round(trw.a* rc.b,2))
into
tmp_result
from
trw
inner join rc on rc.cp_id= trw.cp_id and rc.r_id= trw.r_id and rc.pc_id=param_pc_id
where
trw.t_id= test_t_id;
Now, this select returns a value that's a little bit different than a value we get from the view we are testing.
The view is basically the same, it has a group by trw.t_id and some simple logic.
The interesting part is this:
if I dump "un-summarized" data from the view and the select statement into temporary tables, i get the same rows, and sum over those rows gives the right value.
Either I've missed something obvious or it truly is a bug. Any ideas?
Regards
Jernej

OMG, my bad, I'm sorry.
That's what happens when you test sysdate dependent results.
Sorry again

Similar Messages

  • Select for update gives wrong results. Is it a bug?

    Hi,
    Select for update gives wrong results. Is it a bug?
    CREATE TABLE TaxIds
    TaxId NUMBER(6) NOT NULL,
    LocationId NUMBER(3) NOT NULL,
    Status NUMBER(1)
    PARTITION BY LIST (LocationId)
    PARTITION P111 VALUES (111),
    PARTITION P222 VALUES (222),
    PARTITION P333 VALUES (333)
    ALTER TABLE TaxIds ADD ( CONSTRAINT PK_TaxIds PRIMARY KEY (TaxId));
    CREATE INDEX NI_TaxIdsStatus ON TaxIds ( NVL(Status,0) ) LOCAL;
    Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (100101, 111, NULL);
    Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (100102, 111, NULL);
    Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (100103, 111, NULL);
    Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (100104, 111, NULL);
    Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (200101, 222, NULL);
    Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (200102, 222, NULL);
    Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (200103, 222, NULL);
    --Session_1 return TAXID=100101
    select TAXID from TAXIDS where LOCATIONID=111 and NVL(STATUS,0)=0 AND rownum=1 for update
    --Session_2 waits commit
    select TAXID from TAXIDS where LOCATIONID=111 and NVL(STATUS,0)=0 AND rownum=1 for update
    --Session_1
    update TAXIDS set STATUS=1 Where TaxId=100101;
    commit;
    --Session_2 return 100101 opps!?
    --Session_1 return TAXID=100102
    select TAXID, STATUS from TAXIDS where LOCATIONID=111 and NVL(STATUS,0)=0 AND rownum=1 for update
    --Session_2 waits commit
    select TAXID, STATUS from TAXIDS where LOCATIONID=111 and NVL(STATUS,0)=0 AND rownum=1 for update
    --Session_1
    update TAXIDS set STATUS=1 Where TaxId=100102;
    commit;
    --Session_2 return 100103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    This is a bug. Got to be a bug.
    This should be nothing to do with indeterminate results from ROWNUM, and nothing to do with read consistency at the point of statement start time in session2., surely.
    Session 2 should never return 100101 once the lock from session 1 is released.
    The SELECT FOR UPDATE should restart and 100101 should not be selected as it does not meet the criteria of the select.
    A statement restart should ensure this.
    A number of demos highlight this.
    Firstly, recall the original observation in the original test case.
    Setup
    SQL> DROP TABLE taxids;
    Table dropped.
    SQL> 
    SQL> CREATE TABLE TaxIds
      2  (TaxId NUMBER(6) NOT NULL,
      3   LocationId NUMBER(3) NOT NULL,
      4   Status NUMBER(1))
      5  PARTITION BY LIST (LocationId)
      6  (PARTITION P111 VALUES (111),
      7   PARTITION P222 VALUES (222),
      8   PARTITION P333 VALUES (333));
    Table created.
    SQL>
    SQL> ALTER TABLE TaxIds ADD ( CONSTRAINT PK_TaxIds PRIMARY KEY (TaxId));
    Table altered.
    SQL>
    SQL> CREATE INDEX NI_TaxIdsStatus ON TaxIds ( NVL(Status,0) ) LOCAL;
    Index created.
    SQL>
    SQL>
    SQL> Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (100101, 111, NULL);
    1 row created.
    SQL> Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (100102, 111, NULL);
    1 row created.
    SQL> Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (100103, 111, NULL);
    1 row created.
    SQL> Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (100104, 111, NULL);
    1 row created.
    SQL> Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (200101, 222, NULL);
    1 row created.
    SQL> Insert into TAXIDS (TAXID, LOCATIONID, STATUS) Values (200102, 222, NULL);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> Original observation:
    Session1>SELECT taxid
      2  FROM   taxids
      3  WHERE  locationid    = 111
      4  AND    NVL(STATUS,0) = 0
      5  AND    ROWNUM        = 1
      6  FOR UPDATE;
         TAXID
        100101
    Session1>
    --> Session 2 with same statement hangs until
    Session1>BEGIN
      2   UPDATE taxids SET status=1 WHERE taxid=100101;
      3   COMMIT;
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    Session1>
    --> At which point, Session 2 returns
    Session2>SELECT taxid
      2  FROM   taxids
      3  WHERE  locationid    = 111
      4  AND    NVL(STATUS,0) = 0
      5  AND    ROWNUM        = 1
      6  FOR UPDATE;
         TAXID
        100101
    Session2>There's no way that session 2 should have returned 100101. That is the point of FOR UPDATE. It completely reintroduces the lost UPDATE scenario.
    Secondly, what happens if we drop the index.
    Let's reset the data and drop the index:
    Session1>UPDATE taxids SET status=0 where taxid=100101;
    1 row updated.
    Session1>commit;
    Commit complete.
    Session1>drop index NI_TaxIdsStatus;
    Index dropped.
    Session1>Then try again:
    Session1>SELECT taxid
      2  FROM   taxids
      3  WHERE  locationid    = 111
      4  AND    NVL(STATUS,0) = 0
      5  AND    ROWNUM        = 1
      6  FOR UPDATE;
         TAXID
        100101
    Session1>
    --> Session 2 hangs again until
    Session1>BEGIN
      2   UPDATE taxids SET status=1 WHERE taxid=100101;
      3   COMMIT;
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    Session1>
    --> At which point in session 2:
    Session2>SELECT taxid
      2  FROM   taxids
      3  WHERE  locationid    = 111
      4  AND    NVL(STATUS,0) = 0
      5  AND    ROWNUM        = 1
      6  FOR UPDATE;
         TAXID
        100102
    Session2>Proves nothing, Non-deterministic ROWNUM you say.
    Then let's reset, recreate the index and explicity ask then for row 100101.
    It should give the same result as the ROWNUM query without any doubts over the ROWNUM, etc.
    If the original behaviour was correct, session 2 should also be able to get 100101:
    Session1>SELECT taxid
      2  FROM   taxids
      3  WHERE  locationid    = 111
      4  AND    NVL(STATUS,0) = 0
      5  AND    taxid         = 100101
      6  FOR UPDATE;
         TAXID
        100101
    Session1>
    --> same statement hangs in session 2 until
    Session1>BEGIN
      2   UPDATE taxids SET status=1 WHERE taxid=100101;
      3   COMMIT;
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    Session1>
    --> so session 2 stops being blocked and:
    Session2>SELECT taxid
      2  FROM   taxids
      3  WHERE  locationid    = 111
      4  AND    NVL(STATUS,0) = 0
      5  AND    taxid         = 100101
      6  FOR UPDATE;
    no rows selected
    Session2>Of course, this is how it should happen, surely?
    Just to double check, let's reintroduce ROWNUM but force the order by to show it's not about read consistency at the start of the statement - restart should prevent it.
    (reset, then)
    Session1> select t.taxid
      2   from
      3    (select taxid, rowid rd
      4      from   taxids
      5      where  locationid = 111
      6      and    nvl(status,0) = 0
      7      order by taxid) x
      8   ,  taxids t
      9   where t.rowid = x.rd
    10   and   rownum = 1
    11   for update of t.status;
         TAXID
        100101
    Session1>
    --> Yes, session 2 hangs until...
    Session1>BEGIN
      2   UPDATE taxids SET status=1 WHERE taxid=100101;
      3   COMMIT;
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    Session1>
    --> and then
    Session2> select t.taxid
      2   from
      3    (select taxid, rowid rd
      4      from   taxids
      5      where  locationid = 111
      6      and    nvl(status,0) = 0
      7      order by taxid) x
      8   ,  taxids t
      9   where t.rowid = x.rd
    10   and   rownum = 1
    11   for update of t.status;
         TAXID
        100102
    Session2>Session 2 should never be allowed to get 100101 once the lock is released.
    This is a bug.
    The worrying thing is that I can reproduce in 9.2.0.8 and 11.2.0.2.

  • Bug: "=" does give wrong result!

    hi, this is the most frightening oracle bug I saw. 10gr2, data imported from an 9 export:
    select count(*) from T where F = 1;
    0select count(*) from T where F between 1 and ;
    1165select count(*) from T where nvl(F, 1) = 1;
    1165select count(*) from T where F <= 1;
    1165select count(*) from T where F < 1;
    0in one word: HELP !
    ps: no index on F, stats computed...

    it is a bug actually, because an execution plan should not affect the result of the query ! Report it to metalink if you do have a valid support contract
    SQL> select count(*) from t where f = 1
    Execution Plan
    Plan hash value: 600826401
    | Id  | Operation           | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT    |      |     1 |    13 |     0   (0)|          |
    |   1 |  SORT AGGREGATE     |      |     1 |    13 |            |          |
    |*  2 |   FILTER            |      |       |       |            |          |
    |*  3 |    TABLE ACCESS FULL| T    |     1 |    13 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter(NULL IS NOT NULL)
       3 - filter("F"=1)
    Note
       - dynamic sampling used for this statement
    SQL> select count(*) from t where f between 1 and 1;
    Execution Plan
    Plan hash value: 1842905362
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |     1 |    13 |     2   (0)| 00:00:01 |
    |   1 |  SORT AGGREGATE    |      |     1 |    13 |            |          |
    |*  2 |   TABLE ACCESS FULL| T    |     1 |    13 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter("F"=1)
    Note
       - dynamic sampling used for this statement

  • Bug or feature? - DHCP with static entries gives "wrong" DNS?

    Server 10.4.8 G4 Xserve
    Bonded interface (built-in and PCI, LACP)
    DHCP, DNS and "more" running.
    DHCP static IP entry (?) windows (and mac?) machines get their DNS IP from the server DNS setting from Network config, not from DHCP config ???
    Machines with no static entry get the DNS IP from the DHCP server setting.
    If you use 127.0.0.1 as the nameserver setting in Network config the static clients obviuosly can't lookup names. I had to use the "hostname IP" instead.

    Hi,
    I did not quiet understand what you mean. It looks completely visible for me.
    You did not set scene width and height so maybe that is reason why it was not visible.
    This code works for me:
    package playground;
    import javafx.application.Application;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.effect.Reflection;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.text.Font;
    import javafx.stage.Stage;
    public class LayoutLabel extends Application {
        @Override
        public void start(Stage stage) throws Exception {
            stage.setTitle("Test JFX");
            stage.setScene(createScene());
            stage.setVisible(true);
        private Scene createScene() {
            Label label = new Label("Hello world!");
            label.setFont(new Font(24));
            Reflection reflection = new Reflection();
            reflection.setFraction(1.0);
            reflection.setBottomOpacity(1.0);
            reflection.setTopOffset(0.0);
            label.setEffect(reflection);
    //        Group pane = new Group();
            BorderPane pane = new BorderPane();
            pane.setCenter(label);
    //        pane.setTop(label);
    //        pane.setBottom(label);
    //        Pane pane = new StackPane();
    //        Pane pane = new FlowPane();
    //        Pane pane = new HBox();
    //        pane.getChildren().add(label);
            Scene scene = new Scene(pane, 200,200); // changes to 200 200 maybe that is reason why it does not show
            return scene;
        public static void main(String[] args) {
            Application.launch(args);
    }

  • Bug 2679062 - Wrong results possible from multi-column INLIST - though stat

    Hi,
    The following test case is supplied in the metalink in bug no. 2871341, the base bug for this bug is 2679062.
    REPRODUCIBILITY:
    Reproduces constantly with simple test case below:
    TEST CASE:
    DROP TABLE A1
    CREATE TABLE A1 (X1 VARCHAR2(10), X2 VARCHAR2(10))
    REM *********** Create the second table: ***************
    DROP TABLE A2
    CREATE TABLE A2 (X1 VARCHAR2(10), X2 VARCHAR2(10))
    INSERT INTO A1 VALUES ('1','2');
    INSERT INTO A2 VALUES ('3','4');
    COMMIT;
    CREATE INDEX A1_X1 ON A1(X1 );
    CREATE INDEX A1_X2 ON A1(X2);
    CREATE INDEX A2_X1 ON A2(X1);
    CREATE INDEX A2_X2 ON A2(X2);
    CREATE OR REPLACE VIEW A_ALL AS SELECT * FROM A1 UNION ALL SELECT * FROM A2;
    ANALYZE TABLE A1 COMPUTE STATISTICS;
    ANALYZE TABLE A2 COMPUTE STATISTICS;
    SELECT * FROM A_ALL;
    SELECT * FROM A_ALL WHERE (X1='1' AND X2='2') ;
    SELECT * FROM A_ALL WHERE ((X1='1' AND X2='2') OR (X1='3' AND X2='4'));
    The 2nd query returns answer while the second is not !
    The following is published in the 9.2.0.4 fixed bug list:
    " 9204 - 2679062 - Wrong results possible from multi-column INLIST "
    I have installed 9.2.0.4 patch set on a win 2000 machine Oracle and saw that the above case is actually solved but our application which has a very similar case doesn't.
    After investigating I found the following test case that fails, it reproduces only when you have index on all columns (covering index):
    drop table t1_1;
    drop table t1_2;
    create table t1_1(c1 number, c2 number, c3 number);
    create table t1_2(c1 number, c2 number, c3 number);
    create index t1_1_ix on t1_1(c1, c2, c3);
    create index t1_2_ix on t1_2(c1, c2, c3);
    create or replace view t1 as select * from t1_1 union all select * from t1_2;
    insert into t1_1 values(1, 2, 100);
    insert into t1_2 values(1, 2, 200);
    commit;
    analyze table t1_1 compute statistics;
    analyze table t1_2 compute statistics;
    prompt
    prompt #######################################
    prompt try 1 - works fine
    prompt #######################################
    prompt
    select * from t1
    where
    (c1=1)
    and
    ( (c2=2) and (c3=100)
    prompt
    prompt #######################################
    prompt try 2 - works fine
    prompt #######################################
    prompt
    select * from t1
    where
    (c1=1)
    and
    (c2=2) and (c3=200)
    prompt
    prompt #######################################
    prompt try 3 - try 1 OR try 2 does not work !
    prompt #######################################
    prompt
    select * from t1
    where
    (c1=1)
    and
    ( ( (c2=2) and (c3=100) )
    or
    ( (c2=2) and (c3=200) )
    opened a TAR and wanted to share with you.
    Tal Olier ([email protected]).

    Hi,
    The following test case is supplied in the metalink in bug no. 2871341, the base bug for this bug is 2679062.
    REPRODUCIBILITY:
    Reproduces constantly with simple test case below:
    TEST CASE:
    DROP TABLE A1
    CREATE TABLE A1 (X1 VARCHAR2(10), X2 VARCHAR2(10))
    REM *********** Create the second table: ***************
    DROP TABLE A2
    CREATE TABLE A2 (X1 VARCHAR2(10), X2 VARCHAR2(10))
    INSERT INTO A1 VALUES ('1','2');
    INSERT INTO A2 VALUES ('3','4');
    COMMIT;
    CREATE INDEX A1_X1 ON A1(X1 );
    CREATE INDEX A1_X2 ON A1(X2);
    CREATE INDEX A2_X1 ON A2(X1);
    CREATE INDEX A2_X2 ON A2(X2);
    CREATE OR REPLACE VIEW A_ALL AS SELECT * FROM A1 UNION ALL SELECT * FROM A2;
    ANALYZE TABLE A1 COMPUTE STATISTICS;
    ANALYZE TABLE A2 COMPUTE STATISTICS;
    SELECT * FROM A_ALL;
    SELECT * FROM A_ALL WHERE (X1='1' AND X2='2') ;
    SELECT * FROM A_ALL WHERE ((X1='1' AND X2='2') OR (X1='3' AND X2='4'));
    The 2nd query returns answer while the second is not !
    The following is published in the 9.2.0.4 fixed bug list:
    " 9204 - 2679062 - Wrong results possible from multi-column INLIST "
    I have installed 9.2.0.4 patch set on a win 2000 machine Oracle and saw that the above case is actually solved but our application which has a very similar case doesn't.
    After investigating I found the following test case that fails, it reproduces only when you have index on all columns (covering index):
    drop table t1_1;
    drop table t1_2;
    create table t1_1(c1 number, c2 number, c3 number);
    create table t1_2(c1 number, c2 number, c3 number);
    create index t1_1_ix on t1_1(c1, c2, c3);
    create index t1_2_ix on t1_2(c1, c2, c3);
    create or replace view t1 as select * from t1_1 union all select * from t1_2;
    insert into t1_1 values(1, 2, 100);
    insert into t1_2 values(1, 2, 200);
    commit;
    analyze table t1_1 compute statistics;
    analyze table t1_2 compute statistics;
    prompt
    prompt #######################################
    prompt try 1 - works fine
    prompt #######################################
    prompt
    select * from t1
    where
    (c1=1)
    and
    ( (c2=2) and (c3=100)
    prompt
    prompt #######################################
    prompt try 2 - works fine
    prompt #######################################
    prompt
    select * from t1
    where
    (c1=1)
    and
    (c2=2) and (c3=200)
    prompt
    prompt #######################################
    prompt try 3 - try 1 OR try 2 does not work !
    prompt #######################################
    prompt
    select * from t1
    where
    (c1=1)
    and
    ( ( (c2=2) and (c3=100) )
    or
    ( (c2=2) and (c3=200) )
    opened a TAR and wanted to share with you.
    Tal Olier ([email protected]).

  • Sum of the Results

    hello...we have some problem in summing out the results for the /BA1/K62EAD here based on the  /BA1/C62UEXPOS. When we execute the program, the results always showing a few lines of the same  /BA1/C62UEXPOS as below:
      /BA1/C62UEXPOS /BA1/K62EAD
    a  20
    a  30
    a  40
    b  30
    and the expected results should be a = 90 which is a sum but we got the results as below which break down to several records. what can we do on these? we have the code as below:
    SELECT /BA1/C20BPART
           /BA1/C62UEXPOS
           /BA1/K62EAD
           /BIC/OBJ_CURR
           FROM /1BA/HM_8QZO_400 INTO wa_rdldata
            FOR ALL ENTRIES IN i_resmort
                WHERE /BA1/CR0GROUP = group_id AND
                      /BA1/C62UEXPOS NE i_resmort-t_mort_ftid_dum.
       COLLECT wa_rdldata INTO i_rdldata.
       SORT i_rdldata.
    ENDSELECT.

    Hi,
    try the code and revert back for any prob
    SELECT /BA1/C20BPART
           /BA1/C62UEXPOS
           /BA1/K62EAD
           /BIC/OBJ_CURR
           FROM /1BA/HM_8QZO_400
         INTO table i_rdldata
            FOR ALL ENTRIES IN i_resmort
                WHERE /BA1/CR0GROUP = group_id AND
                      /BA1/C62UEXPOS NE i_resmort-t_mort_ftid_dum.
    loop at i_rdldata INTO wa_rdldata.
    COLLECT wa_rdldata INTO i_rdldata.
    endloop.
    Regards,
    Anirban

  • Bug: Print to pdf from Firefox 5 and Chrome 12 results in crash. What to do?

    Bug: Print to pdf from Firefox 5 and Chrome 12 results in crash. What to do?
    After installing Lion, my usual repeated work task involves saving pdf copies of work documents via print/save to pdf. This now causes both Firefox 5 and Chrome to crash resulting in starting the process over from scratch! Have yet to experiment with Safari.
    Anyone having this problem? I had a few other general and unusual browser crashes, but do not remember the circumstances.

    Process:         Safari [4336]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1 (7534.48.3)
    Build Info:      WebBrowser-7534048003000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [181]
    Date/Time:       2011-08-03 04:33:26.254 -0700
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          445902 sec
    Crashes Since Last Report:           11
    Per-App Interval Since Last Report:  852863 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      19696FB2-9A65-41B7-9035-29145829CC7B
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000686838ef
    VM Regions Near 0x686838ef:
    -->
        __TEXT                 0000000108a7e000-0000000108a7f000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    objc[4336]: garbage collection is OFF
    Performing @selector(doSaveAsPDF:) from sender NSMenuItem 0x7fc065be37d0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.DesktopServices               0x00007fff9266a4c6 TNodePtr::operator=(TNodePtr const&) + 32
    1   com.apple.DesktopServices               0x00007fff9266d242 TNode::FindChild(TUString const&) const + 824
    2   com.apple.DesktopServices               0x00007fff9269aa07 TNode::GetNodeFromPathName(TPathName const&, TNodePtr&, unsigned int) + 209
    3   com.apple.DesktopServices               0x00007fff92679324 TNode::GetNodeFromURL(__CFURL const* const&, TNodePtr&, unsigned int) + 1738
    4   com.apple.DesktopServices               0x00007fff92678b58 NodeCopyFromURL + 72
    5   com.apple.FinderKit                     0x00007fff8a81c205 TFENode::TFENode(TString const&, long, unsigned int) + 109
    6   com.apple.FinderKit                     0x00007fff8a8296fd TFENodeFactory::TFENodeFactory() + 617
    7   com.apple.FinderKit                     0x00007fff8a82939c TFENodeFactory::Initialize() + 28
    8   com.apple.FinderKit                     0x00007fff8a961ed1 +[FIFinderViewGutsController initializeCounted] + 71
    9   com.apple.FinderKit                     0x00007fff8a96b070 -[FIFinderView _commonFinderViewInit] + 31
    10  com.apple.FinderKit                     0x00007fff8a96b1e7 -[FIFinderView initWithFrame:] + 111
    11  com.apple.AppKit                        0x00007fff93c2b787 -[NSNavFinderViewFileBrowser initWithFrame:] + 189
    12  com.apple.AppKit                        0x00007fff93c223d7 _NSNavFileBrowserWithFinderKit + 130
    13  com.apple.AppKit                        0x00007fff9391282c -[NSSavePanel(NSSavePanelLayout) _makeFileBrowserView] + 79
    14  com.apple.AppKit                        0x00007fff93910f03 -[NSSavePanel(NSSavePanelLayout) _setupFileBrowserView] + 155
    15  com.apple.AppKit                        0x00007fff93912dfe -[NSSavePanel(NSSavePanelLayout) _initContentView] + 1282
    16  com.apple.AppKit                        0x00007fff9390f7e5 -[NSSavePanel initWithContentRect:styleMask:backing:defer:] + 320
    17  com.apple.AppKit                        0x00007fff93909793 +[NSSavePanel _crunchyRawUnbonedPanel] + 207
    18  com.apple.AppKit                        0x00007fff939096c2 +[NSSavePanel savePanel] + 18
    19  com.apple.print.framework.Print.Private          0x000000010d1813c9 AskUserForFile + 152
    20  com.apple.print.framework.Print.Private          0x000000010d18ad27 0x10d171000 + 105767
    21  com.apple.print.framework.Print.Private          0x000000010d18f598 0x10d171000 + 124312
    22  com.apple.CoreFoundation                0x00007fff94aa411d -[NSObject performSelector:withObject:] + 61
    23  com.apple.AppKit                        0x00007fff934da852 -[NSApplication sendAction:to:from:] + 139
    24  com.apple.Safari.framework              0x00007fff8e1d84d7 -[BrowserApplication sendAction:to:from:] + 80
    25  com.apple.AppKit                        0x00007fff935c734f -[NSMenuItem _corePerformAction] + 399
    26  com.apple.AppKit                        0x00007fff935c7086 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    27  com.apple.AppKit                        0x00007fff93862e9c -[NSMenu _internalPerformActionForItemAtIndex:] + 38
    28  com.apple.AppKit                        0x00007fff936f53f1 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 138
    29  com.apple.AppKit                        0x00007fff935410bf NSSLMMenuEventHandler + 339
    30  com.apple.HIToolbox                     0x00007fff88dbb8ec _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1263
    31  com.apple.HIToolbox                     0x00007fff88dbaef8 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 446
    32  com.apple.HIToolbox                     0x00007fff88dd1d03 SendEventToEventTarget + 76
    33  com.apple.HIToolbox                     0x00007fff88e18249 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 398
    34  com.apple.HIToolbox                     0x00007fff88eff0f1 SendMenuCommandWithContextAndModifiers + 56
    35  com.apple.HIToolbox                     0x00007fff88f455e1 SendMenuItemSelectedEvent + 253
    36  com.apple.HIToolbox                     0x00007fff88e1132d _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 101
    37  com.apple.HIToolbox                     0x00007fff88f3dfed _ZL19PopUpMenuSelectCoreP8MenuData5PointdS1_tjPK4RecttjS4_S4_PK10__CFStringPP13 OpaqueMenuRefPt + 1660
    38  com.apple.HIToolbox                     0x00007fff88f3e2ac _HandlePopUpMenuSelection7 + 621
    39  com.apple.AppKit                        0x00007fff936f80bd _NSSLMPopUpCarbonMenu3 + 3860
    40  com.apple.AppKit                        0x00007fff93a9f02e _NSPopUpCarbonMenu3 + 39
    41  com.apple.AppKit                        0x00007fff936f6222 -[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:withFlags:withOpti ons:] + 322
    42  com.apple.AppKit                        0x00007fff938d3b41 -[NSPopUpButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 564
    43  com.apple.AppKit                        0x00007fff934d8786 -[NSControl mouseDown:] + 786
    44  com.apple.AppKit                        0x00007fff934a366e -[NSWindow sendEvent:] + 6280
    45  com.apple.AppKit                        0x00007fff9343bf19 -[NSApplication sendEvent:] + 5665
    46  com.apple.Safari.framework              0x00007fff8e1d847a -[BrowserApplication sendEvent:] + 822
    47  com.apple.AppKit                        0x00007fff933d242b -[NSApplication run] + 548
    48  com.apple.AppKit                        0x00007fff9365052a NSApplicationMain + 867
    49  com.apple.Safari.framework              0x00007fff8e38a725 SafariMain + 197
    50  com.apple.Safari                        0x0000000108a7ef24 0x108a7e000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8abcf7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff910d760e _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff910d619e _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: Query work queue
    0   libsystem_kernel.dylib                  0x00007fff8abcebca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6c1274 _pthread_cond_wait + 840
    2   com.apple.Metadata                      0x00007fff94c058c6 _pushNotification + 464
    3   com.apple.Metadata                      0x00007fff94c05c24 processUpdatesLocked + 111
    4   com.apple.Metadata                      0x00007fff94c0841b tryProcessUpdates + 250
    5   com.apple.Metadata                      0x00007fff94c0830d __deferProcessUpdates_block_invoke_2 + 54
    6   libdispatch.dylib                       0x00007fff910da2f1 _dispatch_source_invoke + 614
    7   libdispatch.dylib                       0x00007fff910d6fc7 _dispatch_queue_invoke + 71
    8   libdispatch.dylib                       0x00007fff910d7124 _dispatch_queue_drain + 210
    9   libdispatch.dylib                       0x00007fff910d6fb6 _dispatch_queue_invoke + 54
    10  libdispatch.dylib                       0x00007fff910d67b0 _dispatch_worker_thread2 + 198
    11  libsystem_c.dylib                       0x00007fff8e6bf3da _pthread_wqthread + 316
    12  libsystem_c.dylib                       0x00007fff8e6c0b85 start_wqthread + 13
    Thread 3:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00007fff8abcebca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6c1274 _pthread_cond_wait + 840
    2   com.apple.WebCore                       0x00007fff8c91bda5 WebCore::IconDatabase::syncThreadMainLoop() + 375
    3   com.apple.WebCore                       0x00007fff8c91971d WebCore::IconDatabase::iconDatabaseSyncThread() + 489
    4   com.apple.WebCore                       0x00007fff8c91952b WebCore::IconDatabase::iconDatabaseSyncThreadStart(void*) + 9
    5   libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 4:: CoreAnimation render server
    0   libsystem_kernel.dylib                  0x00007fff8abcd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8abccd71 mach_msg + 73
    2   com.apple.QuartzCore                    0x00007fff910e5ce9 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore                    0x00007fff910e5c29 thread_fun + 24
    4   libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 5:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libsystem_kernel.dylib                  0x00007fff8abceafa __open_nocancel + 10
    1   libsystem_c.dylib                       0x00007fff8e681f7a fopen + 80
    2   com.apple.DesktopServices               0x00007fff926d2cd3 TFSVolumeInfo::GetHiddenList() + 175
    3   com.apple.DesktopServices               0x00007fff926d2549 TFSVolumeInfo::Initialize(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, bool&) + 1459
    4   com.apple.DesktopServices               0x00007fff926d3c75 TFSVolumeInfo::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TCountedPtr<TFSVolumeInfo>&, bool&) + 129
    5   com.apple.DesktopServices               0x00007fff926a3078 TNode::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TNodePtr&) + 126
    6   com.apple.DesktopServices               0x00007fff926abf6c TNode::SynchronizeVolumes(bool, TCountedPtr<TVolumeSyncThread> const&) + 502
    7   com.apple.DesktopServices               0x00007fff926ac83e TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 894
    8   com.apple.DesktopServices               0x00007fff926d195a __PostNodeTaskRequest_block_invoke_08 + 82
    9   com.apple.DesktopServices               0x00007fff926e51b8 ExceptionSafeBlock(void ( block_pointer)()) + 15
    10  com.apple.DesktopServices               0x00007fff926d1902 __PostNodeTaskRequest_block_invoke_0 + 88
    11  libdispatch.dylib                       0x00007fff910d590a _dispatch_call_block_and_release + 18
    12  libdispatch.dylib                       0x00007fff910d715a _dispatch_queue_drain + 264
    13  libdispatch.dylib                       0x00007fff910d6fb6 _dispatch_queue_invoke + 54
    14  libdispatch.dylib                       0x00007fff910d67b0 _dispatch_worker_thread2 + 198
    15  libsystem_c.dylib                       0x00007fff8e6bf3da _pthread_wqthread + 316
    16  libsystem_c.dylib                       0x00007fff8e6c0b85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8abcf192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e6bf594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8e6c0b85 start_wqthread + 13
    Thread 7:: Safari: SafeBrowsingManager
    0   libsystem_kernel.dylib                  0x00007fff8abcd67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8abccd71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff94a4129c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff94a49a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff94a49216 CFRunLoopRunSpecific + 230
    5   com.apple.Safari.framework              0x00007fff8e345147 Safari::MessageRunLoop::threadBody() + 163
    6   com.apple.Safari.framework              0x00007fff8e34509f Safari::MessageRunLoop::threadCallback(void*) + 9
    7   libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 8:: Safari: SnapshotStore
    0   libsystem_kernel.dylib                  0x00007fff8abcebca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e6c1274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff8ae1cba0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari.framework              0x00007fff8e3bc03f Safari::MessageQueue<***::RefPtr<Safari::SnapshotStore::DiskAccessMessage> >::waitForMessage(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&) + 125
    4   com.apple.Safari.framework              0x00007fff8e3b97bb Safari::SnapshotStore::diskAccessThreadBody() + 305
    5   com.apple.Safari.framework              0x00007fff8e3b918b Safari::SnapshotStore::diskAccessThreadCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8abcf192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e6bf594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8e6c0b85 start_wqthread + 13
    Thread 10:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff8abcee42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8e673dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff8e673bb5 usleep + 53
    3   com.apple.AppKit                        0x00007fff9360c0b8 -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation                    0x00007fff8edd51ea -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff8edd5162 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8abcee06 __select_nocancel + 10
    1   libsystem_info.dylib                    0x00007fff927f2e59 res_send + 3704
    2   libsystem_info.dylib                    0x00007fff927f1544 res_query + 318
    3   com.xerox.opb.print.pde.cocoa.XeroxJobType          0x000000010ceb4a72 mDNS_res_query + 243
    4   com.xerox.opb.print.pde.cocoa.XeroxJobType          0x000000010ceb40be GetPrinterURL + 283
    5   com.xerox.opb.print.pde.cocoa.XeroxJobType          0x000000010ceb01bf -[PrintJobInfo checkPrinterReachability] + 61
    6   com.xerox.opb.print.pde.cocoa.XeroxJobType          0x000000010ceb0126 -[PrintJobInfo queryPrinterThread:] + 39
    7   com.xerox.opb.print.pde.cocoa.XeroxJobType          0x000000010ceb026d -[PrintJobInfo updatePrintJobInfo:] + 140
    8   com.apple.Foundation                    0x00007fff8edd51ea -[NSThread main] + 68
    9   com.apple.Foundation                    0x00007fff8edd5162 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x00007fff8e6bd8bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff8e6c0b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8abcf192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e6bf594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8e6c0b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff6867b7f0  rcx: 0x0000000000000800  rdx: 0x00007fc065407f78
      rdi: 0x00007fff6867b8a8  rsi: 0x00007fff6867b7f0  rbp: 0x00007fff6867b790  rsp: 0x00007fff6867b770
       r8: 0x00007fff6867b6fc   r9: 0x00007fff6867b6f8  r10: 0x0000000000000481  r11: 0x00000000fff7ffff
      r12: 0x00007fff79f4add8  r13: 0x0000000000000100  r14: 0x00000000686838ef  r15: 0x00007fff6867b8a8
      rip: 0x00007fff9266a4c6  rfl: 0x0000000000010202  cr2: 0x00000000686838ef
    Logical CPU: 0
    Binary Images:
           0x108a7e000 -        0x108a7efff  com.apple.Safari (5.1 - 7534.48.3) <C23CF439-A7C3-3A27-A80B-DE92FAF9ADE8> /Applications/Safari.app/Contents/MacOS/Safari
           0x10a283000 -        0x10a286ff7  libCoreFSCache.dylib (??? - ???) <783C2402-CA3F-3D9B-B909-0F251145CF1D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10c87b000 -        0x10c881fef  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0) <EAC03E33-595E-3829-8199-479FA5CD9987> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10c892000 -        0x10c892ffd +cl_kernels (??? - ???) <04DAF10B-FF2C-4FA2-BE6C-694B5F614D14> cl_kernels
           0x10c894000 -        0x10c927ff7  unorm8_bgra.dylib (1.50.61 - compatibility 1.0.0) <3ED8B0D5-4A55-3E39-8490-B7BC1780F67B> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x10c9cc000 -        0x10c9cdff3 +cl_kernels (??? - ???) <152A7299-4135-47F7-81DC-F33DE670168D> cl_kernels
           0x10c9dc000 -        0x10c9ddff3 +cl_kernels (??? - ???) <BF04B153-D3BC-4CCD-BBB5-0E0C3BC83A6E> cl_kernels
           0x10ca38000 -        0x10ca3ffff +com.xerox.opb.print.pde.cocoa.XeroxPaperOptions (2.0.2 - 1.0) <49C7C961-9C73-DEBD-B835-343CB2F08DAA> /Library/Printers/Xerox/PDEs/XeroxPaperOptions.plugin/Contents/MacOS/XeroxPaper Options
           0x10ca49000 -        0x10ca53fff +com.xerox.opb.print.pde.cocoa.XeroxFinishing (2.0.2 - 1.0) <76A94DAE-6CB7-571A-6C11-D53FC6D3A9AF> /Library/Printers/Xerox/PDEs/XeroxFinishing.plugin/Contents/MacOS/XeroxFinishin g
           0x10ca61000 -        0x10ca61ff5 +cl_kernels (??? - ???) <4374DC18-615A-49AD-9604-B17CE339B1BA> cl_kernels
           0x10ca68000 -        0x10ca69ffc +cl_kernels (??? - ???) <C6983950-DA59-45C2-936D-E9E7AE86F8AE> cl_kernels
           0x10cba9000 -        0x10cba9fff +com.symantec.webkitutils.scradditionSL (1.1 - 22) <036410B7-D57D-648F-8527-B177206FECBE> /Library/ScriptingAdditions/SymWebKitUtilsSL.osax/Contents/MacOS/SymWebKitUtils SL
           0x10cbad000 -        0x10cbb6ff5 +com.symantec.webkitutils (1.1.3 - 30) <B3632311-7B6F-7911-6D4C-C310A7985CEF> /Library/PrivateFrameworks/SymWebKitUtils.framework/SymWebKitUtils
           0x10cbc3000 -        0x10cca6fff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
           0x10ccfc000 -        0x10cd08fef +com.symantec.webfraud.webkit2 (1.4.4 - 3) <5DF285E9-7C95-1EBB-7F51-589551CF1D6C> /Library/Application Support/Symantec/*/WebFraud.plugin/Contents/MacOS/WebFraud
           0x10cd15000 -        0x10cd43fef +com.symantec.symbase (2.3 - 15) <D426F45C-18B7-EFF4-A392-D64CB90A65C2> /Library/PrivateFrameworks/SymBase.framework/Versions/B/SymBase
           0x10cd63000 -        0x10cd79fea +com.symantec.framework.confidential (1.4 - 4) /Library/PrivateFrameworks/SymConfidential.framework/Versions/A/SymConfidential
           0x10cd86000 -        0x10cda7ffb +com.symantec.sharedsettings.framework (1.3 - 6) /Library/PrivateFrameworks/SymSharedSettings.framework/Versions/A/SymSharedSett ings
           0x10cdba000 -        0x10cdd3ff7 +com.symantec.internetSecurity.framework (1.3.2 - 5) <8F2D8646-E51E-6301-8731-EF0EB6F2A17F> /Library/PrivateFrameworks/SymInternetSecurity.framework/Versions/A/SymInternet Security
           0x10cde4000 -        0x10cdfbfff +com.symantec.SymAppKitAdditions (2.3 - 15) <19FC3229-A1B6-816D-B22E-F43D1EE7185A> /Library/PrivateFrameworks/SymAppKitAdditions.framework/Versions/B/SymAppKitAdd itions
           0x10ceae000 -        0x10cecbfff +com.xerox.opb.print.pde.cocoa.XeroxJobType (2.0.2 - 1.0) <20CCC8AB-9B5C-F97A-D90E-5F4C12E57D5B> /Library/Printers/Xerox/PDEs/XeroxJobType.plugin/Contents/MacOS/XeroxJobType
           0x10d11a000 -        0x10d14eff7  com.apple.printingprivate.framework.PrintingPrivate (7.0 - 68) <7AA400A0-15A9-3991-B9C3-4BBCE2579798> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
           0x10d171000 -        0x10d1a8fff  com.apple.print.framework.Print.Private (7.0 - 378) <9EECB9C5-32C3-3CBE-8D9A-82E929A7D69A> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
           0x10d1c5000 -        0x10d1daff7 +com.xerox.opb.print.pde.cocoa.XeroxImaging (2.0.2 - 1.0) <C2D8C612-D10B-DE08-D264-99D091B4E202> /Library/Printers/Xerox/PDEs/XeroxImaging.plugin/Contents/MacOS/XeroxImaging
           0x10d365000 -        0x10d3a8ff7  com.apple.print.PrintingCocoaPDEs (7.0 - 378) <1F74062E-9981-3A7C-B018-6053AF0C4F42> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/ PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
        0x7fff6867e000 -     0x7fff686b2ac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
        0x7fff889b0000 -     0x7fff88a94def  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
        0x7fff88ad4000 -     0x7fff88ad8ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff88b05000 -     0x7fff88c3efef  com.apple.vImage (5.0 - 5.0) <C45D2CBE-FA15-3D13-9E9D-A3BF57B84BBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff88c3f000 -     0x7fff88d34fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff88d8a000 -     0x7fff88daeff7  com.apple.Kerberos (1.0 - 1) <2FF2569B-F59A-371E-AF33-66297F512CB3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff88daf000 -     0x7fff88db2fff  libCoreVMClient.dylib (??? - ???) <9E9F7B24-567C-3102-909C-219CF2B191FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff88db3000 -     0x7fff890d6fff  com.apple.HIToolbox (1.7 - ???) <10FA3432-6638-39D9-8681-9E95298D239E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff890d7000 -     0x7fff89131fff  com.apple.HIServices (1.9 - ???) <8791E8AA-C034-330D-B2BA-5141154C21CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff89132000 -     0x7fff89237ff7  libFontParser.dylib (??? - ???) <22AADE96-E54D-3918-9DFA-1967F8B21E54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff89238000 -     0x7fff89246ff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
        0x7fff89247000 -     0x7fff89286ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <DE681910-3F7F-3502-9937-AB8008CD281A> /usr/lib/libcups.2.dylib
        0x7fff89287000 -     0x7fff89293fff  com.apple.DirectoryService.Framework (10.7 - 144) <067ACB41-E9B7-3177-9EDE-C188D9B352DC> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff89294000 -     0x7fff89299fff  libGIF.dylib (??? - ???) <21851808-BFD2-3141-8354-A419479726BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8929a000 -     0x7fff892d9ff7  libGLImage.dylib (??? - ???) <29F82AD9-45F0-3AC5-A4A4-B767EC555D82> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff89a1e000 -     0x7fff89a4bff7  com.apple.opencl (1.50.62 - 1.50.62) <616ADE61-11D1-3816-A255-3F0F80F2EAC8> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff89a9e000 -     0x7fff89b13ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff89b14000 -     0x7fff89cbcfff  com.apple.WebKit2 (7534 - 7534.48.3) <9F8CD6D9-3123-3F53-BAC3-D770B0812C25> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff89d26000 -     0x7fff89dcafef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff89dcb000 -     0x7fff89dd6fff  com.apple.CommonAuth (2.1 - 2.0) <49949286-61FB-3A7F-BF49-0EBA45E2664E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89ddd000 -     0x7fff89e08ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
        0x7fff89e09000 -     0x7fff89e14ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff89e15000 -     0x7fff8a3f9faf  libBLAS.dylib (??? - ???) <D62D6A48-5C7A-3ED6-875D-AA3C2C5BF791> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8a3fa000 -     0x7fff8a411fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8a412000 -     0x7fff8a42fff7  libxpc.dylib (77.16.0 - compatibility 1.0.0) <0A4B4775-29A9-30D6-956B-3BE1DBF98090> /usr/lib/system/libxpc.dylib
        0x7fff8a430000 -     0x7fff8a492ff7  com.apple.coreui (0.3 - 162) <A752F9D0-1CAE-340F-B2D2-95EEF242B301> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8a4bb000 -     0x7fff8a4bbfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <4CC14F7C-BCA7-3CAC-BEC9-B06576E5A15B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8a4bc000 -     0x7fff8a4d9ff7  com.apple.openscripting (1.3.3 - ???) <A64205E6-D3C5-3E12-B1A0-72243151AF7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8a4da000 -     0x7fff8a4dbfff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8a4ec000 -     0x7fff8a534fff  com.apple.framework.CoreWLAN (2.0 - 200.46) <04AFD988-DDFB-330D-B042-C1EB2826A0CC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8a535000 -     0x7fff8a637ff7  com.apple.PubSub (1.0.5 - 65.28) <D971543B-C9BE-3C58-8453-B3C69E2D2A6F> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8a638000 -     0x7fff8a71ffff  com.apple.backup.framework (1.3 - 1.3) <C7F0B3B6-EAC1-3445-A705-E9F18A45D01D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8a720000 -     0x7fff8a72aff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
        0x7fff8a72b000 -     0x7fff8a734fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <BD08553D-8088-38A8-8007-CF5C0B8F0404> /usr/lib/system/libnotify.dylib
        0x7fff8a735000 -     0x7fff8a73bfff  com.apple.DiskArbitration (2.4 - 2.4) <5185FEA6-92CA-3CAA-8442-BD71DBC64AFD> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8a73c000 -     0x7fff8a73dfff  libsystem_sandbox.dylib (??? - ???) <8D14139B-B671-35F4-9E5A-023B4C523C38> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8a73e000 -     0x7fff8a73efff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8a73f000 -     0x7fff8a742fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8a775000 -     0x7fff8a77afff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8a77b000 -     0x7fff8a7c6fff  com.apple.SystemConfiguration (1.11 - 1.11) <0B02FEC4-C36E-32CB-8004-2214B6793AE8> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8a7c7000 -     0x7fff8ab14ff7  com.apple.FinderKit (1.0 - 1) <906BCBF7-CBE6-36D2-A183-4980E73CA5EF> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
        0x7fff8ab15000 -     0x7fff8ab19fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <5EEAD17D-006C-3855-8093-C7A4A97EE0D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8ab1a000 -     0x7fff8ab2ffff  com.apple.FileSync.framework (6.0 - 432) <7DF40003-7A8A-3C42-AC26-FCA0A0DFEE17> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
        0x7fff8ab30000 -     0x7fff8ab38fff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8ab39000 -     0x7fff8ab78fff  com.apple.AE (527.6 - 527.6) <6F8DF9EF-3250-3B7F-8841-FCAD8E323954> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8ab79000 -     0x7fff8ab7bfff  libCVMSPluginSupport.dylib (??? - ???) <2D21E6BE-CB20-3F76-8DCC-1CB0660A8A5B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8ab7c000 -     0x7fff8abb7fff  com.apple.LDAPFramework (3.0 - 120.1) <0C23534F-A8E7-3144-B2B2-50F9875101E2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8abb8000 -     0x7fff8abd8fff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8abd9000 -     0x7fff8ac1afff  com.apple.QD (3.12 - ???) <4F3C5629-97C7-3E55-AF3C-ACC524929DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8ac1b000 -     0x7fff8ad74ff7  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <296F10D0-A871-39C1-B8B2-9200AB12B5AF> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8ad75000 -     0x7fff8ada2fe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <7B4D685D-939C-3ABE-8780-77A1889E0DE9> /usr/lib/libSystem.B.dylib
        0x7fff8add2000 -     0x7fff8ade0fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8ae12000 -     0x7fff8b01ffff  com.apple.JavaScriptCore (7534 - 7534.48) <99B60407-592A-3DDC-A3D0-86578B92B3F8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8b02c000 -     0x7fff8b039fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <931F40EB-CA75-3A90-AC97-4DB8E210BC76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8b040000 -     0x7fff8b092ff7  libGLU.dylib (??? - ???) <C3CE8BA0-470F-3BCE-B17C-A31E70E035F2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8b093000 -     0x7fff8b097fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8b098000 -     0x7fff8b09aff7  com.apple.print.framework.Print (7.0 - 247) <579D7E49-A7F4-3C41-9434-3114B8A9B96C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8b0e8000 -     0x7fff8b0f4fff  com.apple.CrashReporterSupport (10.7 - 343) <89EFF4A7-D064-3CAE-9BFC-285EE9033197> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8b0f5000 -     0x7fff8b0f6ff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <C6C49FB7-1892-32E4-86B5-25AD165131AA> /usr/lib/system/libremovefile.dylib
        0x7fff8b0f7000 -     0x7fff8b14bff7  com.apple.ImageCaptureCore (3.0 - 3.0) <C829E6A3-3EB6-3E1C-B9B8-759F56E34D3A> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8b14c000 -     0x7fff8b19aff7  libauto.dylib (??? - ???) <F0004B88-CA01-37D0-A77F-6651C4EC7D8E> /usr/lib/libauto.dylib
        0x7fff8b19b000 -     0x7fff8b19cfff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <0F55CD76-DB24-309B-BD12-62B00C1AAB9F> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff8b19d000 -     0x7fff8b1d7fff  com.apple.DebugSymbols (2.1 - 85) <AEF473A5-25BF-3FB7-9A07-320D9CB85959> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8b1f1000 -     0x7fff8b275ff7  com.apple.ApplicationServices.ATS (5.0 - ???) <F10B1918-A06E-3ECF-85EF-05F0CF27187E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8b276000 -     0x7fff8b2affe7  libssl.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <D634E4B6-672F-3F68-8B6F-C5028151A5B4> /usr/lib/libssl.0.9.8.dylib
        0x7fff8b2b0000 -     0x7fff8b326fff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8b327000 -     0x7fff8b33cfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8b33d000 -     0x7fff8b348fff  com.apple.DisplayServicesFW (2.5.0 - 302.1.2) <36377733-C737-3F36-A601-85D6188A2AAA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8b349000 -     0x7fff8b350fff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <40374018-2832-3144-8114-CED417321C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8b35a000 -     0x7fff8b35afff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8b35f000 -     0x7fff8b806ff7  FaceCoreLight (1.4.2 - compatibility 1.0.0) <6F89E9A9-DEB6-32B5-8B50-3B97F5DB597D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8b807000 -     0x7fff8b81dff7  com.apple.ImageCapture (7.0 - 7.0) <69E6E2E1-777E-332E-8BCF-4F0611517DD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8b81e000 -     0x7fff8b9dffe7  com.apple.CoreData (103 - 358.4) <8D8ABA2E-0161-334D-A7C9-79E5297E188B> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8b9e0000 -     0x7fff8ba34ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8ba35000 -     0x7fff8bad7ff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8bb1e000 -     0x7fff8bf39fff  com.apple.SceneKit (2.0 - 124) <9E331DDE-BDF4-34C5-A8F9-E7F12ADBB785> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8bfc8000 -     0x7fff8c3e3ff7  com.apple.RawCamera.bundle (3.7.2 - 573) <FF8D349E-E8DF-3D12-91E9-BA00C13D5359> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8c3e4000 -     0x7fff8c424fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff8c425000 -     0x7fff8c48ffff  com.apple.framework.IOKit (2.0 - ???) <F79E7690-EF97-3D04-BA22-177E256803AF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8c49e000 -     0x7fff8c4a4fff  libGFXShared.dylib (??? - ???) <DE6987C5-81AC-3AE6-84F0-138C9636D412> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8c4a5000 -     0x7fff8c5b1fef  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <3AD29F8D-E3BC-3F49-A438-2C8AAB71DC99> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8c5fb000 -     0x7fff8c914ff7  com.apple.AddressBook.framework (6.0 - 1043) <A6302279-FD1B-3BB7-8419-362425FC5568> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8c915000 -     0x7fff8d60efef  com.apple.WebCore (7534 - 7534.48.3) <7C5A681C-3749-382C-9551-C197EF878C22> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8d60f000 -     0x7fff8d612ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8d628000 -     0x7fff8d706ff7  com.apple.ImageIO.framework (3.1.0 - 3.1.0) <70228E69-063C-32FF-BBE7-FCCD9C5C0864> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8d707000 -     0x7fff8d9defff  com.apple.security (7.0 - 55010) <2418B583-D3BD-3BC5-8B07-8289C8A5B43B> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8d9df000 -     0x7fff8da71fff  com.apple.PDFKit (2.6 - 2.6) <F838E95F-DEE9-354A-A34A-F5335D0AF1E1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8da72000 -     0x7fff8da72fff  com.apple.CoreServices (53 - 53) <5946A0A6-393D-3087-86A0-4FFF6A305CC0> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8da7f000 -     0x7fff8db7bff7  com.apple.avfoundation (2.0 - 180.23) <C4383696-561D-33F3-AD7C-51E672F580B2> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8db7c000 -     0x7fff8db7dfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff8db7e000 -     0x7fff8dbecfff  com.apple.CoreSymbolication (2.1 - 66) <E1582596-4157-3535-BF1F-3BAE92A0B09F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8dbed000 -     0x7fff8dc51fff  com.apple.Symbolication (1.2 - 83.1) <0C6F8907-6829-3409-99AC-ACC62923DE98> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8de29000 -     0x7fff8de5efff  com.apple.securityinterface (5.0 - 55004) <790DDF7E-6BA9-36DD-B818-2322A712E1F5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8de5f000 -     0x7fff8de65fff  IOSurface (??? - ???) <06FA3FDD-E6D5-391F-B60D-E98B169DAB1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8deb0000 -     0x7fff8debdff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff8debe000 -     0x7fff8ded8fff  com.apple.CoreMediaAuthoring (2.0 - 889) <99D8E4C6-DDD3-3B0C-BBFB-A513877F10F6> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8ded9000 -     0x7fff8deddfff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff8dede000 -     0x7fff8df06ff7  com.apple.CoreVideo (1.7 - 70.0) <59D5B407-CCB6-3406-8C55-C1B0168D7DC2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8df07000 -     0x7fff8df5efff  libTIFF.dylib (??? - ???) <9E32B490-4C5B-3D96-AF27-9C085C606403> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8dfbc000 -     0x7fff8e083ff7  com.apple.ColorSync (4.7.0 - 4.7.0) <A29897D7-4B63-3BBB-B66C-710BE9CC01D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8e12c000 -     0x7fff8e12efff  com.apple.TrustEvaluationAgent (2.0 - 1) <80AFB5D8-5CC4-3A38-83B9-A7DF5820031A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8e12f000 -     0x7fff8e140ff7  SyndicationUI (??? - ???) <2611F56F-81A9-3457-8C87-2700BFD9D4CB> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff8e141000 -     0x7fff8e17ffff  com.apple.bom (11.0 - 183) <841FA160-A37A-368D-B14E-27AA9DD1AEDA> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8e180000 -     0x7fff8e60afff  com.apple.Safari.framework (7534 - 7534.48.3) <287305A0-D3A2-3D28-8B46-41548687741B> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff8e60b000 -     0x7fff8e62afff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
        0x7fff8e62b000 -     0x7fff8e62bfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <3E4582EB-CFEF-34EA-9DA8-8421F1C3C77D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8e62c000 -     0x7fff8e633fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8e634000 -     0x7fff8e639ff7  libsystem_network.dylib (??? - ???) <4ABCEEF3-A3F9-3E06-9682-CE00F17138B7> /usr/lib/system/libsystem_network.dylib
        0x7fff8e63a000 -     0x7fff8e667fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8e668000 -     0x7fff8e66afff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
        0x7fff8e66f000 -     0x7fff8e74cfef  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
        0x7fff8e74d000 -     0x7fff8e760ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8ea18000 -     0x7fff8ea18fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8ea9b000 -     0x7fff8eaa9ff7  com.apple.AppleFSCompression (37 - 1.0) <88C436E8-38AE-3D96-A8C8-2D1805CC47B7> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8eae0000 -     0x7fff8eae0fff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <D75971EE-0D74-365A-8E52-46558EA49E87> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8eae1000 -     0x7fff8eb28ff7  com.apple.CoreMedia (1.0 - 705.35) <6BEC7E0A-BC2E-30DA-8E18-7AF6E8A7821F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8eb29000 -     0x7fff8eb52ff7  com.apple.framework.Apple80211 (7.0 - 700.57) <0D7D7E08-377B-32F0-AD91-673F992B5CFF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8eb53000 -     0x7fff8eb56fff  libRadiance.dylib (??? - ???) <DCDA308D-4856-3631-B6D7-7A8B94169BC0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8ebe8000 -     0x7fff8ebedfff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff8ebee000 -     0x7fff8ec21fff  com.apple.GSS (2.1 - 2.0) <A150154E-40D3-345B-A92D-3A023A55AC52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8ec22000 -     0x7fff8ec52fff  com.apple.shortcut (2.0 - 2.0) <6E6C9F01-5DAC-35F4-876D-082D915EE782> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff8ec53000 -     0x7fff8ec6afff  com.apple.MultitouchSupport.framework (220.62 - 220.62) <7EF58A7E-CB97-335F-A025-4A0F00AEF896> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8ec6b000 -     0x7fff8ecfdfff  com.apple.CorePDF (3.0 - 3.0) <6056B710-155A-3543-9373-B9F3E5FC99CE> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8ed7b000 -     0x7fff8f08dfff  com.apple.Foundation (6.7 - 833.1) <618D7923-3519-3C53-9CBD-CF3C7130CB32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8f0f0000 -     0x7fff8f160fff  com.apple.datadetectorscore (3.0 - 179.3) <AFFBD606-91DE-3F91-8E38-C037D9FBFA8B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8f1a5000 -     0x7fff8f2b2fff  libJP2.dylib (??? - ???) <D8257CEE-A1C3-394A-8193-6DB7C29A15A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8f2d2000 -     0x7fff8f2f5ff7  com.apple.RemoteViewServices (1.0 - 1) <EB549657-8EDC-312A-B8BE-DEC3E160AC3D> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8f2f6000 -     0x7fff8f60ffff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <398ABDD7-BB95-3C05-96D2-B54243FC4745> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8f610000 -     0x7fff8fda4fff  com.apple.CoreAUC (6.11.03 - 6.11.03) <5A56B2DC-A0A6-357B-ADF2-5714AFEBD926> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8fda5000 -     0x7fff8fde7ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8fe45000 -     0x7fff8fec0ff7  com.apple.print.framework.PrintCore (7.0 - 366) <E663DF78-6729-332D-B763-ABB63A6BBB55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8fec1000 -     0x7fff90132fff  com.apple.CoreImage (7.77 - 1.0.1) <AB6ECCF3-4B04-3363-9158-08F305BF15FA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff90133000 -     0x7fff90139ff7  com.apple.phonenumbers (1.0 - 47) <8CE13253-C65B-392F-B87F-D85A15D500D3> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff9013a000 -     0x7fff90148fff  com.apple.HelpData (2.1.0 - 68) <A2C4DDC9-2ECB-37C0-A2E3-D01168EE31F7> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff901fb000 -     0x7fff90280ff7  com.apple.Heimdal (2.1 - 2.0) <E4CD970F-8DE8-31E4-9FC0-BDC97EB924D5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff90281000 -     0x7fff90295ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff90296000 -     0x7fff902b3fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <CC86755A-6CF1-3DDF-A1B0-6F7F5BD7BB39> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff902b4000 -     0x7fff902dffff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff902e0000 -     0x7fff902fcfff  com.apple.ScriptingBridge (1.2.1 - ???) <7DCC43F7-9F5A-388D-A00D-70E2618731BA> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff902fd000 -     0x7fff902fdfff  com.apple.vecLib (3.7 - vecLib 3.7) <29927F20-262F-379C-9108-68A6C69A03D0> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff902fe000 -     0x7fff90365ff7  com.apple.audio.CoreAudio (4.0.0 - 4.0.0) <0B715012-C8E8-386D-9C6C-90F72AE62A2F> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff90366000 -     0x7fff90a349df  com.apple.CoreGraphics (1.600.0 - ???) <B3C42497-53F5-31BB-987E-D1E76746B0E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff90a3b000 -     0x7fff90a3cfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff90bef000 -     0x7fff90beffff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff90bf0000 -     0x7fff90c0dfff  libPng.dylib (??? - ???) <75DA9F95-C2A1-3534-9F8B-14CFFDE2A290> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff90c0e000 -     0x7fff90c20ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff90c21000 -     0x7fff90c50fff  com.apple.DictionaryServices (1.2 - 158) <2CE51CD1-EE3D-3618-9507-E39A09C9BB8D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff90c51000 -     0x7fff90cf0fff  com.apple.LaunchServices (480.19 - 480.19) <41ED4C8B-C74B-34EA-A9BF-34DBA5F52307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff90cf1000 -     0x7fff90cfcff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff90d71000 -     0x7fff90e74fff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <ED5E84C6-646D-3B70-81D6-7AF957BEB217> /usr/lib/libsqlite3.dylib
        0x7fff90e75000 -     0x7fff90f73ff7  com.apple.QuickLookUIFramework (3.0 - 489.1) <A8A82434-D43D-3F12-9321-B2E8EC9B4B8E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff90f74000 -     0x7fff90f79fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff90f9a000 -     0x7fff9109cff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
        0x7fff9109d000 -     0x7fff910a4fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff910a5000 -     0x7fff910abfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff910d4000 -     0x7fff910e2fff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
        0x7fff910e3000 -     0x7fff91282fff  com.apple.QuartzCore (1.7 - 269.0) <E0AFC745-4AC5-36E3-9827-E5344721071D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff91283000 -     0x7fff914fdff7  com.apple.imageKit (2.1 - 1.0) <03200568-184B-36E8-AFE9-04D1FACDC926> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff914fe000 -     0x7fff915b0fff  com.apple.CoreText (4.0.0 - ???) <D7BD85FD-277A-3A97-B1AD-5EE14215237E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff915b1000 -     0x7fff915c7fff  libGL.dylib (??? - ???) <22064411-0A62-373C-828B-0AA2BA2A8D34> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff915c8000 -     0x7fff919f5fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff919f6000 -     0x7fff919f7fff  libffi.dylib (??? - ???) <DB96CC4B-0D38-3102-80AA-91DDE9AF3886> /usr/lib/libffi.dylib
        0x7fff92047000 -     0x7fff9204eff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff9204f000 -     0x7fff92050ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff9222f000 -     0x7fff92234fff  com.apple.OpenDirectory (10.7 - 144) <E8AACF47-C423-3DCE-98F6-A811612B1B46> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff92235000 -     0x7fff92667fe7  com.apple.VideoToolbox (1.0 - 705.35) <B1B9F159-EEE2-38BB-A55E-CDB335A7A226> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff92668000 -     0x7fff9277dfff  com.apple.DesktopServices (1.6.0 - 1.6.0) <208D40FC-8BBE-330F-B999-18771BEA6895> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff927c5000 -     0x7fff927ecfff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff927ed000 -     0x7fff92829fff  libsystem_info.dylib (??? - ???) <BC49C624-1DA

  • Wrong results using the SUM in XPATH- Edit data

    I have a problem when try to do a sum operation using the XPATH function on a set of decimal values:
    To explain it simple, a Service script(also have tried in BPA) which has a edit data step as below
    move '2108.39' to "parm/+listofpay/amt";
    move '1330.8' to "parm/+listofpay/amt";
    move '189.83' to "parm/+listofpay/amt";
    move '4561.12' to "parm/+listofpay/amt";
    move '480.55' to "parm/+listofpay/amt";
    move "sum(parm/listofpay/amt)" to "parm/totamt";
    and the schema is
    <schema>
    <totamt dataType="number"/>
    <listofpay type="list">
    <amt dataType="number"/>
    </listofpay>
    </schema>
    When tried to display(calling through a BPA) the parm/totamt i get a result 8670.68999999999 instead of 8670.69
    Oracle support says it a problem with rounding, how can we have a rounding problem in addition ?
    any suggestions please ?

    Hi Manfred!
    Our setup is very straight forward. We are using a generic M-Series board to generate the stimulus signal as follows:
    Output frequency for x-number of cycles - measure gain/phase response.
    To sample the response, we are using an S-Series board. All of it is done using DAQmx drivers, which again, I don't think makes any difference, since we are experiencing the same problems with a 'pure' software simulation.
    Our unit under test is comprised of a resistor and a capacitor, which represents a simple low pass filter with predictable gain/phase response.
    It appears to us that the erratic phase response at higher frequencies is a result of 1pi versus 2pi phase wrap or flip, which may not be handled correctly by the lock-in tool kit.
    We were thinking of "unwrapping" the phase, but I wanted to find an explanation for this behaviour first, to ensure that we are not dealing with a software bug.
    Also, where can we find the unwrap phase.vi?
    Thanks,
    Markus
    www.movimed.com - Custom Imaging Solutions
    www.movitherm.com - Advanced Thermography Solutions

  • Bug report, how do I find out what is wrong?

    my computer keeps getting bug reports stuck all over the desktop. When I print them it is 3 pages long and I dont know how to use the information from it. It only occurs when my son is using Runescape an online game. My son says he has reported all the errors when the computer prompts him to. I did find an Bug Report that seems to be associated with this problem. Our computer did shut down occasionally also, but since I switched the location of the new memory I added it has not continued. The reason I am checking with this website is because this is where the reports are going. The first part of the error report from my computer is this:
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x809D50E
    Function=JVM_FindSignal+0x10882
    Library=C:\PROGRA~1\Java\J2RE14~1.2\bin\client\jvm.dll
    Current Java thread:
         at r.a(Unknown Source)
         at r.a(Unknown Source)
         at client.t(Unknown Source)
         at client.B(Unknown Source)
         at client.a(Unknown Source)
         at a.run(Unknown Source)
         at client.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    And the last part of the report reads this:
    Local Time = Fri Mar 04 21:38:29 2005
    Elapsed Time = 58
    # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2-b28 mixed mode)
    What do I need to do to fix this problem? Could it be Runescapes issue? Is there other information that is more important to this? I really appreciate any help I can get with this problem. And I am sorry for being so long. I have included the Bug Report I found that is an almost exact duplicate of our issue.
    Thank you again, Linda Peterson.
    COPIED FROM BUG REPORT SEARCH AREA
    Bug ID: 5092499
    Votes 1
    Synopsis IA64 - EXCEPTION_ACCESS_VIOLATION on IA664 W2003
    Category java:runtime
    Reported Against 1.4.2_05
    Release Fixed
    State In progress, bug
    Related Bugs
    Submit Date 26-AUG-2004
    Description OS: Windows2003 [5.2.3790]
    Chip: Itanium 2
    JVM: Sun 1.4.2_05-b04 64-bit server VM
    Error message:
    EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x84D5F10
    Function=[Unknown]
    Library=C:\j2sdk1.4.2_05\jre\bin\server\jvm.dll
    Error ID: 4F530E43505002EF
    xxxxx@xxxxx 10/5/04 20:02 GMT
    Work Around N/A
    Evaluation Post tiger
    xxxxx@xxxxx 2004-09-02
    Comments
    Include a link with my name & email
    Submitted On 05-FEB-2005
    JavaJava13 Hey just wondering. Java is used for runescape on my computer, and it seems to be constantly crashing lately. Not only the game is crshing, it seems to even take down the whole computer with it. Sometimes the computer restarts and I get an error message.
    "Your system has recovered from a serious error"
    Java continues to add error reports to my desktop with this code: 4F530E43505002EF
    Anyone help?

    try checking with runescapes FAQ/tech support. I play
    WC3: RoC and i only got that same memory location
    error(0xc0000005). I got that memory error when I
    used a no-cd third party program when they upgraded
    the server. So, my advice is check on the FAQ for
    errors and ask your son if he is using
    ANY third party programs.The 0xc0000005 error is a standard error on Windows that can occur for any number of reasons.
    It means something in the application tried to access memory to which windows knows the application should not be accessing.

  • Bug: Repeating Google Calendar Events Show Up On The Wrong Days

    I've created a Google Calendar event that repeats "Daily," every two days, from 6:00pm to 6:30pm. It shows up fine in my Google Calendar, but the Pre's Calendar puts them on the wrong days. For example, the repeating event that should be scheduled for today shows up tomorrow (offset by +1 day). 
    I tried turning off network timezones, but the bug remains.
    Any help would be greatly appreciated. If this is a bug, how can I submit it to Palm?
    Thanks! 
    Post relates to: Pre p100eww (Sprint)
    Some new data:
    If I create the repeating event on my Pre, rather than via Google, it shows up on the Pre correctly. However, it only shows up for one day via Google (today); the event is not repeated. When I edit the event in Google, it's setup correctly. I tried saving the event from there, but it doesn't cause Google to recognize it should repeat.
    Very frustrating.
    Even more new data:
    Created yet another event via my Pre instead of via Google. This time Google picked up the correct repeat pattern, and my Pre now shows it on the correct days.
    Calendar sync needs serious work, based on my experience. I have issues with Facebook events showing up an hour later than they should, too. Dunno if this has been fixed yet.
    New Data (01/28/2010)
    Not sure why, but the above success reverted back to being off by one day; temporary success only.
    Message Edited by tlpbsd on 01-28-2010 11:52 AM
    This question was solved.
    View Solution.

    Hi, another quick question: you say you turned off network timezones.... did you make sure that the (now manually set) timezone is correct?
    Sounds similar to other issues related to the timezone being off, but usually the appointments were off by hours... not day(s).  However if your timezone is set to something really odd and the event you're creating is around midnight (again depends on a few things here), then MAYBE this is it.
    If it isn't, one of the support guys will have to chat with you privately about possibly collecting logs, getting more granular details, etc.

  • Is this a bug in ipod software or am i doing something wrong?

    I got my ipod video a few weeks ago and was excited to be able to carry all 7000+ songs around in one place.. but then i ran into this problem and i'm not sure if it's a bug or if i'm doing something wrong.
    let's say i have exactly one album by an artist.. and i also happen to have some singles from the artist, with no album set... (i prefer not to have albums set for songs i don't have the entire album for, to keep from having to sort through a truckload of albums i don't completely have).
    when i browse by artist, and i select the artist, only the songs in the album shows up, all the non-album labeled songs are not visible! the same thing happens when i choose by genre..
    in fact the only way to find those songs not bound to an album is to select them from the song list.. and having to scroll through 7000+ songs to find one really bites..
    curiously enough, if there is two or more albums, then i can find the songs without albums.. definately sounds like a bug to me.. the software for the ipod video is only at v1.0, maybe they'll fix this (hopefully other ipods don't have this problem, i have no way of knowing though).
    one work around i have tried is to set an empty album for the artist's song that has none, but i mean i don't want to do that for all my non-albumed songs because i'm interested in preserving the timestamp of songs (to know when i got them) and i can't reasonably search for songs that have exactly one album to just set those..

    when i go to Music > Artist > All, as you suggested, i see all the albums i have listed. doesn't really relate to my problem with artists with songs in one album, as well as song w/o album set, and the latter not showing up.
    but that reminds me, why is it when i go to the All section from a particular artist and they do have more than one album (or even no albums), the order of the songs is in the order they are in the albums.. if i wanted the order it is on albums, i would have selected that album for example.. it would be nice if the songs were in alphabetical order when you're NOT browsing by album, making a particular song easier to find (what if you have thirteen albums for example and u aren't sure which album a song is on, now you have to scroll through a seemingly random ordered list to find one song, alphabetical would be SOOOO helpful!)

  • Wrong result in SUIM ( bug ? )

    Dear experts,
    I find something strange in SUIM report.
    I created a role, assigned values, when i searched using SUIM to check the result, the result is not expected.
    Below is the steps:
    1) Create a role, named 'ztest', assign t-code va01 in menu tab, and then choose 'change authorization data' in authorization tab.
    2) Configure the authorization field value in authorization object 'v_vbak_vko' as below:
             V_VBAK_VKO:
                   ACTVT  01
                   SPART  *
                   VKORG  1000
                   VTWEG  *
    3) Save and generate profile.
    4) Using SUIM to check the result, Roles  ->  Roles by Complex Selection Criteria,
        Enter the role name in 'Standard selection -> role',
        Enter the authorization object 'v_vbak_vko' in 'Selection according to authorization values -> Object 1',
        Click 'Entry values', enter '1000' in Sales Organization' & '02' in Activity, 'Distribution Channel' & 'Division' left blank.
    5) I have tested this senario in R/3 enterprise, the role 'ztest' will not shown, but now this senario in ECC6, the role 'ztest' is shown.
    I can not believe it. is it changed in ECC6, or it is a bug in our system?
    My system 'SAP_BASIS' release is 700, the support package level is 0009.
    Look forward your kindly help, thank you in advanced.
    Best Regards!
    Brian Li
    SAP GRC Consultant

    Hi ,
    From your question posted , I understand the steps clearly but I think you have not entered the values of
    SPART
    VKORG
    VTWEG
    from the organizational  level tab, can you enter the values  at the  "organization level" area and try it out one more time.
    Also your entry is "01"
    but you are  searching "02" activity
    Edited by: Franklin Jayasim on Jul 16, 2010 7:06 PM

  • Bug in shuffle? or am I doing something wrong?

    Hi,
    I have a number of 1-minute clips that each have a 3 second text name on them in track v2. I've decided I want to re-order some of the clips, and I'm having more trouble with it than expected.
    First I tried to attach the name to the audio and video clips using
    Modify->Link, but that does not seem to work for linking two video clips in the timeline together. (I also tried attaching the text to one of the audio tracks, but all that did was unlink the "real" video that went with the audio.)
    I decided it's not that hard to just select both video tracks for each move, I'll just shuffle them together. I can't get shuffle to work properly! It worked (sortof) once. I selected both video and audio tracks, dragged them to the new location, hit "Option", watched the pointer change, and released the mouse. The selection moved, but instead of rippling the change down, it left a gap. It did not overwrite the other item in the track as though I had not hit option.
    I can work around that I'll just be left with a gap as I move segments forward to where the correct sequence is.
    Now comes the problem: I can't even repeat that! It seems no matter what I do, I can't shuffle segments in the timeline, they will overwrite. I've tried moving just the V1 segment, with the intent of moving the text later, no luck; it overwrites! I make sure that the arrow changes when I press the option key, and it does, although sometimes it changes to the right arrow instead of the little bendy one. Either way it overwrites instead of inserting. I've tried cmd-x cmd-v to cut and paste, but again it overwrites.
    Is this a bug I've triggered? or am I doing something wrong? I've read through page 200-201, volume 2 of the manual fairly carefully and I think I'm doing it right.
    I am using FCP 5.0.4.
    Thanks,
    --Beth
    PS. Even if it did work correctly, I think I'd prefer to shuffle automatically, and overwrite by pressing the option key. Is there any way to set that in a preference?

    It always works for me. You cannot shuffle multiple clips. Well, if you do, it will leave a gap. Why? dunno.
    I believe if your video and audio are not linked (cmd-L and you can only link audio and video, not multiple video clips) they will be considered multiple clips.
    The "bendy" arrow is the one you want and it varies based on where in the track your pointer is. Lower - insert, upper (I think) leaves a gap. Also, I always press the option key after I've started moving, but before it settles, but I don't think that should affect your operation as long as you push option after you've started moving, but before you let go.
    As to changing the option behavior, I don't think there's a way...
    Patrick

  • SQL SUM and Group By Function Wrong Result

    Hi All,
    I have a SQL view with all the payment transaction for a property per month and trying to sum all the transactions per month per property. For some months the total is not correct. For example for property 3856, in Jan 2014, the total should come to
    728 but the query lists 2184.
    Trans Date
              Amount
    Prop Code
    31/1/2014
    728          
    3856   
    31/1/2014
    -2184         
    3856   
    31/1/2014
    2184         
    3856   
    Output Required
    Year      Month   Amount     Prop Code
    2014        1          728              3856
    My Query
    Select [Prop Code], year(ttp.[Trans Date]) AS [Year], Month(ttp.[Trans Date]) AS [Month], SUM(ttp.[Payment Amount]) as Total
    FROM vw_tenant_payments as ttp
    GROUP BY [Prop Code], year(ttp.[Trans Date]), Month(ttp.[Trans Date])

    Hi All,
    I got it, it skipped my mind to restrict the payment type to RENT as even the deposit is in the transaction view
    Select
    [Prop Code],year(ttp.[Trans
    Date])AS[Year],Month(ttp.[Trans
    Date])AS[Month],SUM(ttp.[Payment
    Amount])asTotal
    FROM
    vw_tenant_payments
    asttp
    Where
    [Account Code]
    ='RENT'and[Prop
    Code] ='3856'
    GROUP
    BY[Prop
    Code],year(ttp.[Trans
    Date]),Month(ttp.[Trans
    Date])
    Order
    by[Prop
    Code],[Month]

  • "Why Apple do not fix light sensor bug in ios 6 ipod touch 4g plz give me update for this"

    Light Sensor increase but not Decreas light

    As you have been directed in the other posts you've made on the issue, this is most likely a hardware problem with your particular iPod, and you won't get different answers by posting more threads on the topic. If this was a bug in iOS 6, I'm sure we'd have seen many more posts on the problem, so this is more likely to be a problem with your iPod, not with iOS 6 itself.
    Regards.

Maybe you are looking for

  • Can't rent/buy a movie in iTunes

    I've been interested in renting or buying a couple of movies recently.  I searched for them in iTunes on my iMac.  They showed up in the search results, but they buy and rent buttons were greyed out.  I've seen this before where the buy buttons were

  • Looking for the correct Adobe product

    Not sure if I'm in the right forum, but here's what I'm needing. I want to be able to create some user forms that will contain basic client information entered into text boxes, and will also contain check boxes and drop down boxes for selection of ty

  • How to bind mapping input parameter in process flow using OMB Plus

    Hi I have created a process flow with a mapping. This mapping has a input parameter, that I want to bind to a variable using OMBPlus OMBALTER PROCESS_FLOW '$process' MODIFY PARAMETER 'P_EOD_DATE_IN' SET PROPERTIES (BINDING) VALUES ('V_EOD_DATE') does

  • Forgot administrative password, how to regain administrative rights

    Administrate rights have been set up on computer and password was lost, need to get password changed so i can get into computer

  • Product bug: unknown unicast traffic storms from thunderbolt displays

    Hi All - Periodically, a random Thunderbolt display will launch a wire rate unknown unicast traffic storm into our LAN and only stop when unplugged from the network. This typically leads to unicast flooding or at least massive trunk congestion (we no