CPU rrun queue and DB time

Hi,
i have a major doubt that has been there for a long time.Would be really helpful if you guys could clear it.
I have a two tier environment with app and DB in different servers.
I am facing a situation where a job is running with parallel option.Consider the following scenarion
1)Session A gets a request from app it processes the request and retirns it to the client.Now the session goes idle and it waits for another request from client.(it is idle with sql*net message from client and it is off the CPU run queue as well).At the same time other parallel sessions are doing their work.
2)Now app gives some data to session A to process but when the data is there ,the session A is not able to get on the CPU run queue since other parallel procesess are occupying the CPU.(THis might just be 10 microsecond or something).Does this time calculate as idle time i.e. sql*net message from client even though the data is there to be processed.
Am really onfused about this...Thanks
Sekar

What I meant was if the process is not in CPU queue and it is waiting for the data from client and the client then responds to the call and sends data to the database ,but the server process doesnt get CPU cycle and it gets CPU cycle only 10 microseconds after it receives the databa from the client.During thos 10 microseconds what will be the wait event ?If you are saying it will be CPU time how will the server process know that it has received data from client before it gets on the CPU cycle..

Similar Messages

  • UP-link, cpu use reports and Polling times

    Hello,
    1.-Do you have the polling and collecting times for each view in LMS3.1?
    RME=?
    CM=?
    DFM=?
    Because when I get a report with some modification like interface administratively DOWN or changing different MAC address in a port switch, this report doesn't show the change inmediately.
    I think that this is not usefull to troubleshooting,please, What is your recomendation?
    Because I needed seek a MAC address that jumps in differents ports into a switch in real time.
    2.-Could you please helpme How to get an UP-link report. I need statistics like behavior of UP-links.
    3.-I don't find how to obtain a CPU used report of my routers and switches, Can you help me?
    DATA:
    LMS3.1
    Windows2003
    Thanks in advance!!!

    The operationally down events in DFM are discovered via periodic polling.  By default, DFM polls every four minutes.  This would explain the time discrepancy you are seeing.  If you need to track MAC address changes in real-time, consider enabling dynamic User Tracking in Campus Manager. See http://SERVER/help/CMcore/CmHelp/ut_UstndingDynamicUpdate.html#wp1434393 (the context sensitive online help) for more details on what dynamic UT is, and how to enable it on your switches.
    As for getting a report on CPU usage, you will need to install the Health and Utilization Monitor add-on to LMS.  It ships with LMS 3.1, but you need to purchase a separate license for it.  Out of the box, it comes with a 90-day evaluation license so you can see if it will meet your needs.

  • Diffrence between cpu and elapse time in tkprof

    Hi All
    i found huge diffrence between cpu and elapsed time in tkprof. can you please advice me on this issue.
    >call count cpu elapsed disk query current rows
    ==================================================
    Parse 1 0.12 1.36 2 11 0 0
    Execute 1 14.30 720.20 46548 190520 205 100
    Fetch 0 0.00 0.00 0 0 0 0
    ======================================================
    total 2 14.42 721.56 46550 190531 205 100
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 173 (recursive depth: 1)
    Elapsed times include waiting on following events:
    Event waited on Times waited Max. Wait Total Waited
    ===========================================
    db file sequential read 46544 0.49 632.12
    db file scattered read 1 0.00 0.00
    my select statement
    SELECT cst.customer_id> ,DECODE(COUNT(cr.deposit_date), 0, 0, ROUND(SUM(cr.deposit_date - ps.trx_date) / COUNT(cr.deposit_date))) avgdays
    > ,DECODE(COUNT(cr.deposit_date), 0, 0, ROUND(SUM(cr.deposit_date - ps.due_date) / COUNT(cr.deposit_date))) avgdayslate
    > ,NVL(SUM(DECODE(SIGN(cr.deposit_date - ps.due_date),1, 1, 0)), 0) newlate
    > ,NVL(SUM( DECODE(SIGN(cr.deposit_date - ps.due_date),1, 0, 1)), 0) newontime
    >
    > FROM ar_receivable_applications_all ra
    > ,ar_cash_receipts_all cr
    > ,ar_payment_schedules_all ps
    > ,zz_ar_customer_summary_all cst
    > WHERE ra.cash_receipt_id = cr.cash_receipt_id
    > AND ra.apply_date BETWEEN ADD_MONTHS(SYSDATE, -12) AND SYSDATE
    > AND ra.status = 'APP'
    > AND ra.display = 'Y'
    > AND ra.applied_payment_schedule_id = ps.payment_schedule_id
    > AND ps.customer_id = cst.customer_id
    > AND NVL(ps.receipt_confirmed_flag,'Y') = 'Y'
    > group by cst.customer_id ;
    Thanks,
    Anu

    user653066 wrote:
    Hi All
    i found huge diffrence between cpu and elapsed time in tkprof. can you please advice me on this issue.
    call     count       cpu    elapsed       disk      query    current        rows
    ================================================================================
    Parse        1      0.12       1.36          2         11          0           0
    Execute      1     14.30     720.20      46548     190520        205         100
    Fetch        0      0.00       0.00          0          0          0           0
    ================================================================================
    total        2     14.42     721.56      46550     190531        205         100
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 173     (recursive depth: 1)
    Elapsed times include waiting on following events:
    Event waited on                      Times waited   Max. Wait  Total Waited
    ===========================================================================
    db file sequential read                     46544        0.49        632.12
    db file scattered read                          1        0.00          0.00
    SELECT  cst.customer_id
             ,DECODE(COUNT(cr.deposit_date), 0, 0, ROUND(SUM(cr.deposit_date - ps.trx_date) / COUNT(cr.deposit_date))) avgdays
             ,DECODE(COUNT(cr.deposit_date), 0, 0, ROUND(SUM(cr.deposit_date - ps.due_date) / COUNT(cr.deposit_date))) avgdayslate
             ,NVL(SUM(DECODE(SIGN(cr.deposit_date - ps.due_date),1, 1, 0)), 0)  newlate
             ,NVL(SUM( DECODE(SIGN(cr.deposit_date - ps.due_date),1, 0, 1)), 0) newontime
              FROM ar_receivable_applications_all ra
                  ,ar_cash_receipts_all           cr
                  ,ar_payment_schedules_all       ps
                  ,zz_ar_customer_summary_all cst
              WHERE ra.cash_receipt_id                 = cr.cash_receipt_id
              AND   ra.apply_date                BETWEEN ADD_MONTHS(SYSDATE, -12) AND SYSDATE
              AND   ra.status                          = 'APP'
              AND   ra.display                         = 'Y'
              AND   ra.applied_payment_schedule_id     = ps.payment_schedule_id
              AND   ps.customer_id                     = cst.customer_id          
              AND   NVL(ps.receipt_confirmed_flag,'Y') = 'Y'
              group by cst.customer_id    ;           Toon Koppelaars seems to have pinpointed the problem. Where are the 74 seconds unaccounted for seconds (I might have calculated it incorrectly, but I arrived at 88.08 seconds of unaccounted for time: 721.56 total - 1.36 parse - 632.12 db file sequential reads)?
    It is interesting that the maximum wait for a single block read reported by TKPROF is 0.49 seconds - this might be an indication of excessive competition for the server's CPU - processes are waiting in the CPU run queue, and therefore not on the CPU. As Toon indicated, 632.12 of the 721.56 seconds were spent waiting for single block reads to complete with 46,544 blocks read. Note also that the query executed at dep=1, and TKPROF may be providing misleading information about what actually happened during those executions. An example of misleading information:
    CREATE TABLE T11 (
      C1 NUMBER,
      C2 VARCHAR2(30));
    CREATE TABLE T12 (
      C1 NUMBER,
      C2 VARCHAR2(30));
    CREATE TABLE T13 (
      C1 NUMBER,
      C2 VARCHAR2(30));
    CREATE TABLE T14 (
      C1 NUMBER,
      C2 VARCHAR2(30));
    CREATE OR REPLACE TRIGGER HPM_T11 AFTER
    INSERT OR DELETE OR UPDATE OF C1 ON T11
    REFERENCING OLD AS OLDDATA NEW AS NEWDATA FOR EACH ROW
    BEGIN
      IF INSERTING THEN
        INSERT INTO T12
        SELECT
          ROWNUM,
          DBMS_RANDOM.STRING('A',25)
        FROM
          DUAL
        CONNECT BY
          LEVEL <= 100;
      END IF;
    END;
    CREATE OR REPLACE TRIGGER HPM_T12 AFTER
    INSERT OR DELETE OR UPDATE OF C1 ON T12
    REFERENCING OLD AS OLDDATA NEW AS NEWDATA FOR EACH ROW
    BEGIN
      IF INSERTING THEN
        INSERT INTO T13
        SELECT
          ROWNUM,
          DBMS_RANDOM.STRING('A',25)
        FROM
          DUAL
        CONNECT BY
          LEVEL <= 100;
      END IF;
    END;
    CREATE OR REPLACE TRIGGER HPM_T13 AFTER
    INSERT OR DELETE OR UPDATE OF C1 ON T13
    REFERENCING OLD AS OLDDATA NEW AS NEWDATA FOR EACH ROW
    BEGIN
      IF INSERTING THEN
        INSERT INTO T14
        SELECT
          ROWNUM,
          DBMS_RANDOM.STRING('A',25)
        FROM
          DUAL
        CONNECT BY
          LEVEL <= 100;
      END IF;
    END;
    ALTER SESSION SET TRACEFILE_IDENTIFIER = 'MY_TEST_FIND_ME2';
    ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT FOREVER, LEVEL 8';
    SET TIMING ON
    INSERT INTO T11 VALUES (1,'MY LITTLE TEST CASE');
    ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT OFF';The partial TKPROF output:
    INSERT INTO T11
    VALUES
    (1,'MY LITTLE TEST CASE')
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          8          0           0
    Execute      1      0.00       0.00          0       9788         29           1
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.00       0.00          0       9796         29           1
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 56 
    Rows     Row Source Operation
          0  LOAD TABLE CONVENTIONAL  (cr=9788 pr=7 pw=0 time=0 us)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                       1        0.00          0.00
      SQL*Net message from client                     1        0.00          0.00
    SQL ID : 6asaf110fgaqg
    INSERT INTO T12 SELECT ROWNUM, DBMS_RANDOM.STRING('A',25) FROM DUAL CONNECT
      BY LEVEL <= 100
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.04       0.09          0          2        130         100
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.04       0.09          0          2        130         100
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 56     (recursive depth: 1)
    Rows     Row Source Operation
          0  LOAD TABLE CONVENTIONAL  (cr=9754 pr=7 pw=0 time=0 us)
        100   COUNT  (cr=0 pr=0 pw=0 time=0 us)
        100    CONNECT BY WITHOUT FILTERING (cr=0 pr=0 pw=0 time=0 us)
          1     FAST DUAL  (cr=0 pr=0 pw=0 time=0 us cost=2 size=0 card=1)
    SQL ID : db46bkvy509w4
    INSERT INTO T13 SELECT ROWNUM, DBMS_RANDOM.STRING('A',25) FROM DUAL CONNECT
      BY LEVEL <= 100
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute    100      1.31       1.27          0         93      10634       10000
    Fetch        0      0.00       0.00          0          0          0           0
    total      101      1.31       1.27          0         93      10634       10000
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 56     (recursive depth: 2)
    Rows     Row Source Operation
          0  LOAD TABLE CONVENTIONAL  (cr=164 pr=0 pw=0 time=0 us)
        100   COUNT  (cr=0 pr=0 pw=0 time=0 us)
        100    CONNECT BY WITHOUT FILTERING (cr=0 pr=0 pw=0 time=0 us)
          1     FAST DUAL  (cr=0 pr=0 pw=0 time=0 us cost=2 size=0 card=1)
    SQL ID : 6542yyk084rpu
    INSERT INTO T14 SELECT ROWNUM, DBMS_RANDOM.STRING('A',25) FROM DUAL CONNECT
      BY LEVEL <= 100
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        2      0.00       0.00          0          0          0           0
    Execute  10001     41.60      41.84          0       8961      52859     1000000
    Fetch        0      0.00       0.00          0          0          0           0
    total    10003     41.60      41.84          0       8961      52859     1000000
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 56     (recursive depth: 3)
    Rows     Row Source Operation
          0  LOAD TABLE CONVENTIONAL  (cr=2 pr=0 pw=0 time=0 us)
        100   COUNT  (cr=0 pr=0 pw=0 time=0 us)
        100    CONNECT BY WITHOUT FILTERING (cr=0 pr=0 pw=0 time=0 us)
          1     FAST DUAL  (cr=0 pr=0 pw=0 time=0 us cost=2 size=0 card=1)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      log file switch completion                      2        0.07          0.07
    ********************************************************************************In the above note that the "INSERT INTO T11" is reported as completing in 0 seconds, but it actually required roughly 42 seconds - and that would be visible by manually reviewing the resulting trace file. Also note that the log file switch completion wait was not reported for the "INSERT INTO T11" even though it impacted the execution time.
    Back to the possibility of CPU starvation causing lost time. Another test with an otherwise idle server, followed by a second test with the same server having 240 other processes fighting for CPU resources (a simulated load).
    ALTER SYSTEM FLUSH BUFFER_CACHE;
    ALTER SESSION SET TRACEFILE_IDENTIFIER = 'MY_TEST_QUERY_NO_LOAD';
    ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT FOREVER, LEVEL 8';
    SET TIMING ON
    SELECT
      COUNT(*)
    FROM
      T14;
    SELECT
      SYSDATE
    FROM
      DUAL;
    SQL> SELECT
      2    COUNT(*)
      3  FROM
      4    T14;
      COUNT(*)
       1000000
    Elapsed: 00:00:01.37With no load the COUNT(*) completed in 1.37 seconds. The TKPROF output looks like this:
    SQL ID : gy8nw9xzyg3bj
    SELECT /* OPT_DYN_SAMP */ /*+ ALL_ROWS IGNORE_WHERE_CLAUSE
      NO_PARALLEL(SAMPLESUB) opt_param('parallel_execution_enabled', 'false')
      NO_PARALLEL_INDEX(SAMPLESUB) NO_SQL_TUNE */ NVL(SUM(C1),:"SYS_B_0"),
      NVL(SUM(C2),:"SYS_B_1")
    FROM
    (SELECT /*+ NO_PARALLEL("T14") FULL("T14") NO_PARALLEL_INDEX("T14") */
      :"SYS_B_2" AS C1, :"SYS_B_3" AS C2 FROM "T14" SAMPLE BLOCK (:"SYS_B_4" ,
      :"SYS_B_5") SEED (:"SYS_B_6") "T14") SAMPLESUB
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        1      0.01       0.84        523        172          1           1
    total        3      0.01       0.84        523        172          1           1
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 56     (recursive depth: 1)
    Rows     Row Source Operation
          1  SORT AGGREGATE (cr=172 pr=523 pw=0 time=0 us)
       8733   TABLE ACCESS SAMPLE T14 (cr=172 pr=523 pw=0 time=0 us cost=2 size=12 card=1)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      db file sequential read                         3        0.02          0.04
      db file parallel read                           1        0.31          0.31
      db file scattered read                         52        0.03          0.47
    SQL ID : 96g93hntrzjtr
    select /*+ rule */ bucket_cnt, row_cnt, cache_cnt, null_cnt, timestamp#,
      sample_size, minimum, maximum, distcnt, lowval, hival, density, col#,
      spare1, spare2, avgcln
    from
    hist_head$ where obj#=:1 and intcol#=:2
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        1      0.00       0.06          2          2          0           0
    total        3      0.00       0.06          2          2          0           0
    Misses in library cache during parse: 0
    Optimizer mode: RULE
    Parsing user id: SYS   (recursive depth: 2)
    Rows     Row Source Operation
          0  TABLE ACCESS BY INDEX ROWID HIST_HEAD$ (cr=2 pr=2 pw=0 time=0 us)
          0   INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=2 pr=2 pw=0 time=0 us)(object id 413)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      db file sequential read                         2        0.02          0.04
    SELECT
      COUNT(*)
    FROM
      T14
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          1          1          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        2      0.03       0.43       6558       6983          0           1
    total        4      0.03       0.44       6559       6984          0           1
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 56 
    Rows     Row Source Operation
          1  SORT AGGREGATE (cr=6983 pr=6558 pw=0 time=0 us)
    1000000   TABLE ACCESS FULL T14 (cr=6983 pr=6558 pw=0 time=0 us cost=1916 size=0 card=976987)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      db file sequential read                         1        0.02          0.02
      SQL*Net message to client                       2        0.00          0.00
      db file scattered read                        111        0.02          0.38
      SQL*Net message from client                     2        0.00          0.00Note that TKPROF reported that it only required 0.44 seconds for the query to execute while the SQL*Plus timing indicate that it required 1.37 seconds for the SQL statement to execute. The SQL optimization (parse) with dynamic sampling query accounted for the remaining time, yet TKPROF provided no indication that this was the case.
    Now the query with 240 other processes competing for CPU time:
    ALTER SYSTEM FLUSH BUFFER_CACHE;
    ALTER SESSION SET TRACEFILE_IDENTIFIER = 'MY_TEST_QUERY_WITH_LOAD';
    SELECT COUNT(*) FROM T14;
    SELECT
      SYSDATE
    FROM
      DUAL;
    SQL> SELECT COUNT(*) FROM T14;
      COUNT(*)
       1000000
    Elapsed: 00:00:59.03The query this time required just over 59 seconds. The TKPROF output:
    SQL ID : gy8nw9xzyg3bj
    SELECT /* OPT_DYN_SAMP */ /*+ ALL_ROWS IGNORE_WHERE_CLAUSE
      NO_PARALLEL(SAMPLESUB) opt_param('parallel_execution_enabled', 'false')
      NO_PARALLEL_INDEX(SAMPLESUB) NO_SQL_TUNE */ NVL(SUM(C1),:"SYS_B_0"),
      NVL(SUM(C2),:"SYS_B_1")
    FROM
    (SELECT /*+ NO_PARALLEL("T14") FULL("T14") NO_PARALLEL_INDEX("T14") */
      :"SYS_B_2" AS C1, :"SYS_B_3" AS C2 FROM "T14" SAMPLE BLOCK (:"SYS_B_4" ,
      :"SYS_B_5") SEED (:"SYS_B_6") "T14") SAMPLESUB
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        1      0.00       0.28        423         69          0           1
    total        3      0.00       0.28        423         69          0           1
    Misses in library cache during parse: 0
    Optimizer mode: ALL_ROWS
    Parsing user id: 56     (recursive depth: 1)
    Rows     Row Source Operation
          1  SORT AGGREGATE (cr=69 pr=423 pw=0 time=0 us)
       8733   TABLE ACCESS SAMPLE T14 (cr=69 pr=423 pw=0 time=0 us cost=2 size=12 card=1)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      db file scattered read                         54        0.01          0.27
      db file sequential read                         2        0.00          0.00
    SQL ID : 7h04kxpa13w1x
    SELECT COUNT(*)
    FROM
    T14
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.03          1          1          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        2      0.06      58.71       6551       6983          0           1
    total        4      0.06      58.74       6552       6984          0           1
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 56 
    Rows     Row Source Operation
          1  SORT AGGREGATE (cr=6983 pr=6551 pw=0 time=0 us)
    1000000   TABLE ACCESS FULL T14 (cr=6983 pr=6551 pw=0 time=0 us cost=1916 size=0 card=976987)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      db file sequential read                         1        0.02          0.02
      SQL*Net message to client                       2        0.00          0.00
      db file scattered read                        110        1.54         58.59
      SQL*Net message from client                     1        0.00          0.00Note in the above that the max wait for the db file scattered read is 1.54 seconds due to the extra CPU competition - about 3 times longer than your max wait for a single block read. On your database platform with single block reads, it might be possible that the time in the CPU run queue is not always counted in the db file sequential read wait time or the CPU wait time - what if your operating system is slow at returning timing information to the database instance due to CPU saturation - this might explain the 74 (or 88) lost seconds.
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.
    Edited by: Charles Hooper on Aug 28, 2009 10:26 AM
    Fixing formatting problems

  • I have iTunes 10.4 and every time I open it my CPU usage hits 100%.  How do I stop this?

    I have iTunes 10.4 and every time I open it my CPU usage hits 100%.  This makes my computer really slow and almost unusable.  How do I stop this?  Another effect is that I cannot log onto the iTunes Store.  I click on it and it says it is loading the iTunes store but the window remains blank.

    So do I!

  • Is it possible to wait on a queue and on a notifier at the same time?

    Hi!
    I am trying to implement an event-driven producer/consumer pattern with queues. The problem is that I have some value change events (e.g. coming from a slider) that I do not want to queue up; I want only the latest value change event to be processed by the consumer loop. This is because the consumer may spend longer time in executing (sometimes multiple seconds) and I want to prevent all intermediate slider events to be queued up in the meantime because I will finally write them to hardware. Therefore, a notifier would be better to use here than a queue. My question is if it is possible to make the same consumer loop wait on the queue as well as on the notifier at the same time? I will be wiring the VISA session and some other data through the consumer, so it want to avoid an extra loop that would wait on the notifier only. Or is there any other possible workaround?
    Thanks in advance.
    Regards,
    Anguel
    Solved!
    Go to Solution.

    AStankov wrote:
    crossrulz, many thanks for the code example and this is probably exactly what Mark suggested. Unfortunately, I do not really understand the logic behind it, i.e. why wait on the queue and then on the notifier?
    It isn't really waiting on the notifier.  The wait is set to 0.  So if there is no new data in the notifier, instant timeout and skip the DAQ stuff.
    The idea here is to send the set value (from the slider) through the notifier and send the command through the queue.  When the consumer loop gets the command, it will read the notifier for the latest data point and go to work.  Now if the user changes a bunch of stuff while a "long" acquisistion is happening, the notifier will keep being overwritten; it will only keep the last commanded value.  The queue will get multiple commands, but only the last value will be worked on due to the notifier.  The remaining commands will check the notifier, see that there's no new data, and skip to the next command.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Difference between DB CPU and DB Time

    Hi,
    What is the difference between DB CPU and DB TIME in AWR report?
    Br,
    Raj

    Hi,
    Thanks for your valuable reply.
    1,DB CPU is time spent on CPU. It means only ACTIVELY working on CPU. WAIT TIME is not includeed.
    In 10 Minute interval with four CPU, Is the Maximum DB CPU 40 Minutes?
    2,I read the below document about DB time. http://www.perfvision.com/docs/JB_AAS.pdf
    I unable to understand at page 6.
    It says that DB Time = Includes CPU Time + IO Time +  Wait Time
    I understand about Wait time.
    CPU also involved  to do I/O Time? Is it RIGHT?.Hence, Why did seperate CPU Time and I/O time in the document?What is the purpose of it?
    Is it possbile to further divided the CPU TIME ? Like parse etc.....Which view provide it?
    3,If you had four sessions actively working or actively waiting 100% of the time in that 10 minute period, then your DB time would be 40 minutes.
    In a given interval,Where can i find NON Idle wait time in AWR?
    Plese help me out it
    Br,
    Raj

  • BACD and hold times for Call Queue

    Hi Everyone,
    Is it possible to include hold times/wait times for BACD call queues?  Also, anyone run into issues when configuring BACD and the time it takes for it to ring in?  We had an issue previously that where the call would enter the queue, wait 30 seconds or so, and then ring out.  Unless this is normal.
    Thanks as always,
    HelpDesk

    Hi Help Desk,
    Its been a while since I configured this and I am not sure if the current versions of CCA allow for this change to take place.
    I know on the command line that this is possible, but ultimately it would be better to use CCA to make the changes as I am not sure if it would recognize the change if you did it via CLI.
    In the past as an alternative to hold times I did some work around's by pushing the BACD to an AA and putting in there some rudimentary options that would allow a user to go back into the line, but they would loose their position in doing so, but this shouldn't be a big problem.
    Also in terms of entering the BACD, I havent see the 30 second delay before so I am not sure what is going on there and I cannot say for that that it is normal operations for it.
    Cheers,
    David Trad.
    davidtradconsultinggmail.com

  • Audio Queue Services Elapsed and Total Time

    Does anyone know how to get the elapsed and total time of a file being played using Audio Queue Services? I am using a .caf file and it plays without a problem but I can't seem to figure out how to display the elapsed and total time of the audio file.
    On a side note, I'd like to hook up a scrubber (like the one in the voicemail section of the Phone app). Does anyone have any idea how to set the playback position of an audio file?

    Hi, Shindigg,
    Does your code works after performing fast forward/rewind?
    I got an awful result.
    After I performing ffw or rwd, the mSampleTime is not the exact time which had been played, it always returns the total played time.
    For example, I clicked the ffw button when playing at 10secs, and mean to jump to 20secs, the AudioQueue did jumped to the 20secs, but the mSampleTime still remains to 11, 12, 13secs....
    Did you got a similar problem? If so, how did you resolve it?
    Thanks
    -Tonny

  • Mavericks 10.9.5 Build 13F34 on a MacBookPro 11,3 | iTunes 11.4 (18) crashes each and every time i try to update my iOS 8.02 Apps

    This is more than annoying, the attempt to update my iOS Apps via iTunes 11.4 (18) ends each and every time with a crash of itunes, no way to update. The iPhone refuses to update via WLAN, the only way to update is to get updates via mobile data connection.
    This Problem is not solved, and it startet to exist with either the installation of 10.9.5 Build 13F34 or the installation of iTunes 11.4 (18).
    Thank you Apple, your updates made my digital living much more easy and comfortable.
    Process:         iTunes [16469]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         11.4 (11.4)
    Build Info:      iTunes-1140011004000018~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [163]
    Responsible:     iTunes [16469]
    User ID:         503
    Date/Time:       2014-10-06 18:28:02.650 +0200
    OS Version:      Mac OS X 10.9.5 (13F34)
    Report Version:  11
    Anonymous UUID:  6EA267B4-A400-D708-C045-ACF83F252807
    Sleep/Wake UUID: DCC3A40E-5F7B-48AA-AFC1-CA67FD587590
    Crashed Thread:  35
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000028
    VM Regions Near 0x28:
    -->
        __TEXT                 0000000105da7000-000000010751d000 [ 23.5M] r-x/rwx SM=COW  /Applications/iTunes.app/Contents/MacOS/iTunes
    Thread 0:: iTunes main  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation       0x00007fff87bb4e26 CFUniCharGetBitmapPtrForPlane + 86
    1   com.apple.CoreFoundation       0x00007fff87bb6b25 CFStringCompareWithOptionsAndLocale + 101
    2   com.apple.iTunes               0x0000000105dc7d83 0x105da7000 + 134531
    3   com.apple.iTunes               0x0000000106768b2a 0x105da7000 + 10230570
    4   com.apple.iTunes               0x00000001067687b7 0x105da7000 + 10229687
    5   com.apple.iTunes               0x0000000106aaa30e 0x105da7000 + 13644558
    6   com.apple.iTunes               0x00000001060ebf4b 0x105da7000 + 3428171
    7   com.apple.iTunes               0x00000001060ebe9f 0x105da7000 + 3427999
    8   com.apple.iTunes               0x0000000105db9992 0x105da7000 + 76178
    9   com.apple.iTunes               0x0000000105dbd581 0x105da7000 + 91521
    10  com.apple.iTunes               0x0000000105dbd4fd 0x105da7000 + 91389
    11  com.apple.iTunes               0x0000000105dbd42a 0x105da7000 + 91178
    12  com.apple.iTunes               0x0000000105dbd3ac 0x105da7000 + 91052
    13  com.apple.iTunes               0x0000000105dbd266 0x105da7000 + 90726
    14  com.apple.iTunes               0x0000000105dbd1da 0x105da7000 + 90586
    15  com.apple.CoreFoundation       0x00007fff87c145b1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    16  com.apple.CoreFoundation       0x00007fff87c05c62 __CFRunLoopDoSources0 + 242
    17  com.apple.CoreFoundation       0x00007fff87c053ef __CFRunLoopRun + 831
    18  com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    19  com.apple.HIToolbox           0x00007fff85c7ea0d RunCurrentEventLoopInMode + 226
    20  com.apple.HIToolbox           0x00007fff85c7e7b7 ReceiveNextEventCommon + 479
    21  com.apple.HIToolbox           0x00007fff85c7e5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    22  com.apple.AppKit               0x00007fff8486424e _DPSNextEvent + 1434
    23  com.apple.AppKit               0x00007fff8486389b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    24  com.apple.AppKit               0x00007fff8485799c -[NSApplication run] + 553
    25  com.apple.iTunes               0x00000001066e8320 0x105da7000 + 9704224
    26  com.apple.iTunes               0x00000001061218fc 0x105da7000 + 3647740
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8dea0662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8a9fa421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff8a9fa136 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff87cba811 CFRunLoopRun + 97
    6   com.apple.mobiledevice         0x000000010923cfae __thr_AMRegisterForCallbacks + 418
    7   libdispatch.dylib             0x00007fff8a9f828d _dispatch_client_callout + 8
    8   libdispatch.dylib             0x00007fff8a9fa082 _dispatch_root_queue_drain + 326
    9   libdispatch.dylib             0x00007fff8a9fb177 _dispatch_worker_thread2 + 40
    10  libsystem_pthread.dylib       0x00007fff84062ef8 _pthread_wqthread + 314
    11  libsystem_pthread.dylib       0x00007fff84065fb9 start_wqthread + 13
    Thread 3:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff87cba811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000105dc22cf 0x105da7000 + 111311
    7   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    8   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.iTunes               0x0000000105dab40b 0x105da7000 + 17419
    3   com.apple.iTunes               0x0000000106218027 0x105da7000 + 4657191
    4   com.apple.iTunes               0x0000000106218756 0x105da7000 + 4659030
    5   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    6   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff8de9f9aa __select + 10
    1   com.apple.CoreFoundation       0x00007fff87c51a03 __CFSocketManager + 867
    2   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 6:: CoreAudioNotificationThread
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff87cba811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x00000001062d737f 0x105da7000 + 5440383
    7   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    8   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 7:: TrackProcessor::ManagerThread
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.iTunes               0x0000000105dab40b 0x105da7000 + 17419
    3   com.apple.iTunes               0x0000000105dab365 0x105da7000 + 17253
    4   com.apple.iTunes               0x000000010600a114 0x105da7000 + 2502932
    5   com.apple.iTunes               0x000000010600a0eb 0x105da7000 + 2502891
    6   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    7   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 8:: TrackProcessor::CooperativeProcessingFiber
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.iTunes               0x0000000105dbdbd4 0x105da7000 + 93140
    3   com.apple.iTunes               0x0000000105dbd934 0x105da7000 + 92468
    4   com.apple.iTunes               0x0000000105dbf0a6 0x105da7000 + 98470
    5   com.apple.iTunes               0x0000000105f015ce 0x105da7000 + 1418702
    6   com.apple.iTunes               0x0000000106ba7113 0x105da7000 + 14680339
    7   com.apple.iTunes               0x0000000105dab4fb 0x105da7000 + 17659
    8   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff8de9ee02 __accept + 10
    1   com.apple.iTunes               0x0000000106a6c34d 0x105da7000 + 13390669
    2   com.apple.iTunes               0x0000000106a51c61 0x105da7000 + 13282401
    3   com.apple.iTunes               0x0000000106a51ba4 0x105da7000 + 13282212
    4   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    5   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff8de9ee02 __accept + 10
    1   com.apple.iTunes               0x0000000106a6c34d 0x105da7000 + 13390669
    2   com.apple.iTunes               0x0000000106a51c61 0x105da7000 + 13282401
    3   com.apple.iTunes               0x0000000106a51ba4 0x105da7000 + 13282212
    4   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    5   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff87cba811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000105dc22cf 0x105da7000 + 111311
    7   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    8   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 12:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff87cba811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000105dc22cf 0x105da7000 + 111311
    7   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    8   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 13:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff83238ff7 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff83238dfb __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 14:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff87cba811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000105dc22cf 0x105da7000 + 111311
    7   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    8   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 15:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff87cba811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000105dc22cf 0x105da7000 + 111311
    7   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    8   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 16:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff87cba811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000105dc22cf 0x105da7000 + 111311
    7   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    8   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 17:: TrackProcessor::Data Extraction Thread
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.iTunes               0x0000000105dab40b 0x105da7000 + 17419
    3   com.apple.iTunes               0x0000000105e23f33 0x105da7000 + 511795
    4   com.apple.iTunes               0x0000000105e23ed1 0x105da7000 + 511697
    5   com.apple.iTunes               0x0000000105e23d3e 0x105da7000 + 511294
    6   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    7   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 18:: TrackProcessor::Data Extraction Thread
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.iTunes               0x0000000105dab40b 0x105da7000 + 17419
    3   com.apple.iTunes               0x0000000105e23f33 0x105da7000 + 511795
    4   com.apple.iTunes               0x0000000105e23ed1 0x105da7000 + 511697
    5   com.apple.iTunes               0x0000000105e23d3e 0x105da7000 + 511294
    6   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    7   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 19:: TrackProcessor::Data Extraction Thread
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.iTunes               0x0000000105dab40b 0x105da7000 + 17419
    3   com.apple.iTunes               0x0000000105e23f33 0x105da7000 + 511795
    4   com.apple.iTunes               0x0000000105e23ed1 0x105da7000 + 511697
    5   com.apple.iTunes               0x0000000105e23d3e 0x105da7000 + 511294
    6   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    7   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00007fff84a0405e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff8de9fe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff84062f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff84065fb9 start_wqthread + 13
    Thread 22:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff81ba7cb5 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore       0x00007fff81b9cf4f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 23:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff81ba8727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff81ba85b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff81b9cf4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 24:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff81ba8727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff81ba85b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff81b9cf4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 25:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff81ba8727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff81ba85b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff81b9cf4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 26:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff81ba8727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff81ba85b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff81b9cf4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 27:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff81ba8727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff81ba85b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff81b9cf4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 28:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff81ba8727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff81ba85b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff81b9cf4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib         0x00007fff8de9fe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff84062f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff84065fb9 start_wqthread + 13
    Thread 30:
    0   libsystem_kernel.dylib         0x00007fff8de9fe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff84062f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff84065fb9 start_wqthread + 13
    Thread 31:: WebCore: LocalStorage
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff81ba80cd ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore             0x00007fff82cdb498 ***::PassOwnPtr<***::Function<void ()> > ***::MessageQueue<***::Function<void ()> >::waitForMessageFilteredWithTimeout<bool (***::Function<void ()>*)>(***::MessageQueueWaitResult&, bool (&)(***::Function<void ()>*), double) + 168
    4   com.apple.WebCore             0x00007fff82cdab63 WebCore::StorageThread::threadEntryPoint() + 179
    5   com.apple.JavaScriptCore       0x00007fff81b9cf4f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 32:: WebCore: LocalStorage
    0   libsystem_kernel.dylib         0x00007fff8de9f716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff84063c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff81ba80cd ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore             0x00007fff82cdb498 ***::PassOwnPtr<***::Function<void ()> > ***::MessageQueue<***::Function<void ()> >::waitForMessageFilteredWithTimeout<bool (***::Function<void ()>*)>(***::MessageQueueWaitResult&, bool (&)(***::Function<void ()>*), double) + 168
    4   com.apple.WebCore             0x00007fff82cdab63 WebCore::StorageThread::threadEntryPoint() + 179
    5   com.apple.JavaScriptCore       0x00007fff81b9cf4f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib         0x00007fff8de9fe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff84062f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff84065fb9 start_wqthread + 13
    Thread 34:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff87cba811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000105dc22cf 0x105da7000 + 111311
    7   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    8   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 35 Crashed:
    0   com.apple.iTunes               0x00000001060ebe40 0x105da7000 + 3427904
    1   com.apple.iTunes               0x00000001060eba45 0x105da7000 + 3426885
    2   com.apple.iTunes               0x00000001060c3d9e 0x105da7000 + 3263902
    3   com.apple.iTunes               0x00000001060bfe2c 0x105da7000 + 3247660
    4   com.apple.iTunes               0x0000000105e23dc2 0x105da7000 + 511426
    5   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    6   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 36:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8de9ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8de9ad18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff87c05f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff87c05539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff87c04e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff87cba811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000105dc22cf 0x105da7000 + 111311
    7   com.apple.iTunes               0x0000000105dac0f0 0x105da7000 + 20720
    8   libsystem_pthread.dylib       0x00007fff84061899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8406172a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff84065fc9 thread_start + 13
    Thread 35 crashed with X86 Thread State (64-bit):
      rax: 0xbff0000000000000  rbx: 0x0000000000000100  rcx: 0x0000000000000000  rdx: 0x0000000000000100
      rdi: 0x0000000000000000  rsi: 0x00007ff5ffa6a7a0  rbp: 0x0000000109719280  rsp: 0x0000000109719280
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x00007ff4f0ec8478
      r12: 0x00000000ffffffce  r13: 0x0000000000000000  r14: 0x00007ff5fa5e3040  r15: 0x00007ff5ffa6a400
      rip: 0x00000001060ebe40  rfl: 0x0000000000010246  cr2: 0x0000000000000028
    Logical CPU:     2
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x105da7000 -        0x10751cff7  com.apple.iTunes (11.4 - 11.4) <E8A02DE2-6982-3D03-93E6-B14FF98690F9> /Applications/iTunes.app/Contents/MacOS/iTunes
           0x10790d000 -        0x10798dff7  com.apple.iTunes.iPodUpdater (10.7 - 10.7) <346D1F7E-A1E7-3A53-9DEF-3D22885079C8> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
           0x107a14000 -        0x107a3fff7  com.apple.avfoundationcf (2.0 - 138.2) <51DDFF2A-EEE3-327F-996B-A53954E7E23E> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
           0x107a78000 -        0x107db5fef  com.apple.iad.iAdCore (1.0 - 1) <DEC4133E-928D-38FF-8207-F9BC3D79A372> /Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/iAdCo re
           0x107e91000 -        0x107e95fff  com.apple.agl (3.2.3 - AGL-3.2.3) <9851E4CC-DA6B-3AF4-9B06-61BAC289572D> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x107e9c000 -        0x107e9ffff  com.apple.iPod (1.7 - 20) <B245E3CD-4674-3DA4-8094-A5708CE3FB34> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x107eaa000 -        0x1081d6ff7 +libgnsdk_dsp.1.9.5.dylib (1.9.5) <14636B08-4D26-54CA-3EE8-247B2B708AF0> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
           0x108209000 -        0x108240ff7 +libgnsdk_musicid.1.9.5.dylib (1.9.5) <C034C2ED-6A46-315F-89C8-8D54A937B255> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
           0x10825b000 -        0x108331fe7 +libgnsdk_sdkmanager.1.9.5.dylib (1.9.5) <D144E870-FABC-E19E-452E-A33D19595B19> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
           0x108356000 -        0x108399ff7 +libgnsdk_submit.1.9.5.dylib (1.9.5) <6689251D-098B-0F8D-08CC-785271E98540> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
           0x10856e000 -        0x108570ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x108575000 -        0x108579ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.3 - 2.6.3f4) <2EB88B27-FA19-3C0C-AA06-7FB8BC56694E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x108668000 -        0x10866bff7  com.apple.QuartzComposer.iTunesPlugIn (1.4 - 18) <C245EAAD-C6FD-32EA-810B-56B48533374D> /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
           0x108fac000 -        0x1090e5fff  com.apple.CoreADI (2.9.3 - 2.9.3) <B4B971BC-3C34-3417-8DEF-16F8B6167263> /System/Library/PrivateFrameworks/CoreADI.framework/CoreADI
           0x1090ec000 -        0x10910fff7 +com.prosofteng.hear.plugin (1.1.6 - 869) <896A23D0-A4E8-35F3-8A77-421492B46BD5> /Library/Audio/Plug-Ins/HAL/Hear.plugin/Contents/MacOS/Hear
           0x1091a4000 -        0x1092bcff7  com.apple.mobiledevice (757.1.5.0.1 - 757.1.5.0.1) <37FF77DC-92E2-34B7-A0F9-481767002E21> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x10a035000 -        0x10ada3ff7  com.apple.CoreFP (2.6.16 - 2.6.16) <AFE7E504-44B0-3862-980C-27852EC4CB71> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x10d825000 -        0x10d9f6fff  com.apple.audio.units.Components (1.10 - 1.10) <F74A9407-DDB5-3C4F-A051-47643871ED93> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x10df3d000 -        0x10e133fff  com.apple.audio.codecs.Components (4.0 - 4.0) <604485EE-4446-308F-9460-0A6CE9C2D98C> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x10e551000 -        0x10e553fff  AppleIntelHSWVA (8.28.32) <70ADD884-AE65-382A-86A5-1AA1DB5CFDA9> /System/Library/Extensions/AppleIntelHSWVA.bundle/Contents/MacOS/AppleIntelHSWV A
           0x10e6d4000 -        0x10e781ff7  com.apple.AppleGVAFramework (7.1.18 - 7.1.18) <46F2368C-5955-3423-BEF4-1D6B06A849F2> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
           0x10e794000 -        0x10e998fff  com.apple.AppleIntelHD5000GraphicsVADriver (8.28.32 - 8.2.8) <5898FCC8-699D-3B72-A172-19127DDC52FC> /System/Library/Extensions/AppleIntelHD5000GraphicsVADriver.bundle/Contents/Mac OS/AppleIntelHD5000GraphicsVADriver
           0x10e9a8000 -        0x10ea4aff7  com.apple.GeForceVADriver (8.26.28 - 8.2.6) <CAC2C38E-A5DA-32F7-9CC9-1945DBF34D74> /System/Library/Extensions/GeForceVADriver.bundle/Contents/MacOS/GeForceVADrive r
           0x10edd8000 -        0x10eddeff7  com.apple.BookKit (1.0.1 - 158) <34C7F87F-63B6-3E53-A7B1-8A6656405F41> /System/Library/PrivateFrameworks/BookKit.framework/BookKit
           0x10fc3c000 -        0x10feb9fff  com.apple.CoreKE (1.7.0 - 1.7.0) <596CAF69-A1EA-33D6-9D2E-805DA761D3D8> /System/Library/PrivateFrameworks/CoreKE.framework/CoreKE
           0x115921000 -        0x115921ff5 +cl_kernels (???) <0127B080-F1E4-4E75-876A-32305FA38F2C> cl_kernels
           0x1178a7000 -        0x1178a7ffd +cl_kernels (???) <614EC90F-4559-4795-8B4D-5FAD8AF44E2C> cl_kernels
           0x118f9b000 -        0x1191b5ff7  half_rgba.dylib (2.3.58) <0803DFE7-EC44-342B-ABA2-9F8289C0A602> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/h alf_rgba.dylib
           0x11920c000 -        0x1192f2fef  unorm8_bgra.dylib (2.3.58) <280D6FDD-8CA5-36EC-9EA1-D7DC09598E20> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x11943a000 -        0x1195bffef  com.apple.AirTrafficHost (448 - 448) <B5C5C75C-C1EA-3A60-BC94-BF2CC5DA2587> /System/Library/PrivateFrameworks/AirTrafficHost.framework/AirTrafficHost
        0x123400000000 -     0x123400435ff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (8.28.32 - 8.2.8) <2450F625-33C8-3471-BA0D-10705FDE366C> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD5000GraphicsGLDriver
        0x123440000000 -     0x123440882ff7  com.apple.GeForceGLDriver (8.26.28 - 8.2.6) <7748942D-BB8D-3ECF-BE8E-ED5AB2F2893B> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff61632000 -     0x7fff61665817  dyld (239.4) <7AD43B9B-5CEA-3C7E-9836-A06909F9CA56> /usr/lib/dyld
        0x7fff81b94000 -     0x7fff81f0bff6  com.apple.JavaScriptCore (9537 - 9537.78.1) <8623A109-9E9D-3E3B-A8E1-6EE447C0110C> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff81f0c000 -     0x7fff81f0eff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
        0x7fff81f0f000 -     0x7fff81f3eff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <E8190181-8F08-3DC3-9290-3AADBCEBB1F3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff81fda000 -     0x7fff82028ff7  com.apple.opencl (2.3.59 - 2.3.59) <9F43F471-C3C3-352D-889D-EC418DC1F5B2> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8205c000 -     0x7fff8209eff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8209f000 -     0x7fff820ecfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <608D91BD-9D88-3FAB-9A06-24C1DAEA092D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff820ed000 -     0x7fff820faff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff82116000 -     0x7fff82f6aff7  com.apple.WebCore (9537 - 9537.78.1) <56C3D4BF-2495-3FD2-8212-91AF7DF693B8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff82fbf000 -     0x7fff83125fff  libGLProgrammability.dylib (9.6.1) <07700B99-8542-32D7-BB96-29472EFE75EF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff83126000 -     0x7fff83174fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff83175000 -     0x7fff83181ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <F08601E8-F7E8-3222-AD05-6A26003779CF> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff831d2000 -     0x7fff834d2ff7  com.apple.Foundation (6.9 - 1056.16) <24349208-3603-3F5D-95CC-B379616FBEF8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff834e0000 -     0x7fff834e1ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff834f1000 -     0x7fff8357afff  com.apple.ColorSync (4.9.0 - 4.9.0) <E7E0D542-D77A-3E32-B146-4D0FEAF282D3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8357b000 -     0x7fff83584ff7  libcldcpuengine.dylib (2.3.58) <E3A84FEC-4060-39C2-A469-159A443D2B6D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff83585000 -     0x7fff835bdff7  com.apple.RemoteViewServices (2.0 - 94) <B17FAA76-61DB-33D0-90B7-4117A72A2B28> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff835be000 -     0x7fff835c8ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <5A4F0BFC-6233-3909-BEC0-C604BA0D247C> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff835c9000 -     0x7fff83610ff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
        0x7fff83611000 -     0x7fff83615ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
        0x7fff83616000 -     0x7fff83669fff  com.apple.ScalableUserInterface (1.0 - 1) <19D73C6D-CA0A-3230-9644-7F01364137ED> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8366a000 -     0x7fff83674ff7  libcsfde.dylib (380.70.2) <3ACB87D7-A81C-3C45-B648-AD27F1B9D841> /usr/lib/libcsfde.dylib
        0x7fff83675000 -     0x7fff83677fff  com.apple.loginsupport (1.0 - 1) <4FBB283B-5BBD-3918-AC89-3A7286CFA145> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff83678000 -     0x7fff838dcffd  com.apple.security (7.0 - 55471.14.18) <83A9E8C8-06A1-3F6D-8514-C35CD0DBD370> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff838dd000 -     0x7fff83a0dff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff83a0e000 -     0x7fff83a24fff  com.apple.CoreMediaAuthoring (2.2 - 947) <F1886A05-1C29-3F88-88C0-4A1013530AD1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff83a32000 -     0x7fff83aa1ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff83aa2000 -     0x7fff83aaeff7  com.apple.HelpData (2.1.4 - 90) <546D6B21-CDCE-35C0-86F2-C38A4789F4EE> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff83ac5000 -     0x7fff83ac7ff7  libquarantine.dylib (71) <973BE51D-6465-392F-9099-D4AB21BF0D25> /usr/lib/system/libquarantine.dylib
        0x7fff83acf000 -     0x7fff83ad2fff  com.apple.TCC (1.0 - 1) <F25B5875-081A-3877-B70E-374D54B54C5F> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff83ad3000 -     0x7fff83adefff  libGPUSupportMercury.dylib (9.6.1) <A34D5C51-28E0-398A-881D-552B47D2DD3C> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
        0x7fff83adf000 -     0x7fff83b0bfff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff83b0c000 -     0x7fff83b3bff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff83b91000 -     0x7fff83baaff7  com.apple.Kerberos (3.0 - 1) <59427E11-37D6-34C9-95BB-D4438BFACA5B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff83bab000 -     0x7fff83bb3ffc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff83bb4000 -     0x7fff83bbaff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff83bbb000 -     0x7fff83c32fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff83c33000 -     0x7fff83c61ff7  com.apple.securityinterface (9.0 - 55047) <E64A6994-0176-39A1-866A-AB27F6A0034B> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff83cea000 -     0x7fff83d03ff7  com.apple.Ubiquity (1.3 - 289) <664F5B33-708D-33E9-81E1-C45CBE9AAB6E> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff83d16000 -     0x7fff83d1bff7  com.apple.MediaAccessibility (1.0 - 43) <DDB8A42D-89D8-34F1-AA35-75D7659616C9> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff83d1f000 -     0x7fff83d25ff7  libCGXCoreImage.A.dylib (599.35.4) <0A9F43CB-C01F-3A98-AAB3-1E08C65BCFB4> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
        0x7fff83d26000 -     0x7fff83d3dffa  libAVFAudio.dylib (32.2) <C77A6482-46FA-3A17-B357-BBEA380B4E6C> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff83d3e000 -     0x7fff83d85fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff83d86000 -     0x7fff8401aff7  com.apple.RawCamera.bundle (5.07 - 760) <EA94F148-975D-32D7-8A20-B06017E5793B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff84060000 -     0x7fff84067ff7  libsystem_pthread.dylib (53.1.4) <9DA50FD0-D9AC-3051-AD4B-BA0D745BC49C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff84068000 -     0x7fff84139fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8413a000 -     0x7fff84187ff2  com.apple.print.framework.PrintCore (9.0 - 428) <A2F7B9D2-7907-31D8-8462-E2E2E7C3AF2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff84188000 -     0x7fff84199ff7  libsystem_asl.dylib (217.1.4) <B983CA60-F418-317B-B142-48A6376564FC> /usr/lib/system/libsystem_asl.dylib
        0x7fff8419d000 -     0x7fff841adffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff841ae000 -     0x7fff841c9ff7  libPng.dylib (1044) <151BA92C-6E7C-3B69-8024-FDD1E2C89DD3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff841ca000 -     0x7fff841cbfff  libunc.dylib (28) <C3737C9A-C06F-310C-B78C-7D8D882A35DE> /usr/lib/system/libunc.dylib
        0x7fff841cc000 -     0x7fff84211ff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff84212000 -     0x7fff84277ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff84278000 -     0x7fff8428afff  com.apple.login (3.0 - 3.0) <8342C3B7-8363-36BE-B5B6-CD81166AEC24> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff842e9000 -     0x7fff84304ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff84305000 -     0x7fff844bdffb  libicucore.A.dylib (511.35) <6F097DA7-147C-32A1-93D2-728A64CF0DC2> /usr/lib/libicucore.A.dylib
        0x7fff844be000 -     0x7fff844c3fff  libmacho.dylib (845) <B2BE3C25-CF1F-309B-AB99-1F0B54621445> /usr/lib/system/libmacho.dylib
        0x7fff84509000 -     0x7fff8463fff5  com.apple.WebKit (9537 - 9537.78.2) <EB8D3D78-92E7-3B67-8AAF-B51A181461E0> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff84640000 -     0x7fff84781fff  com.apple.QTKit (7.7.3 - 2826.24) <08E58C71-D16C-3357-989C-780A08994B27> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff84782000 -     0x7fff8480dff7  com.apple.SoftwareUpdate.framework (6 - 574.6) <A83587ED-67AE-3FB0-9494-6EAEFEF4B17D> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff8480e000 -     0x7fff84825fff  com.apple.PackageKit.PackageUIKit (3.0 - 332) <419D2A01-3A7A-3EB4-B4E5-55DEEB786572> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
        0x7fff84826000 -     0x7fff8482dffb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
        0x7fff8482e000 -     0x7fff8482fff7  libodfde.dylib (20) <71C1001F-044F-3C0F-BA95-EAC080176A16> /usr/lib/libodfde.dylib
        0x7fff84830000 -     0x7fff84839fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <ABEE3950-3024-3741-AD4F-CC405EBEE89E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff84840000 -     0x7fff853b6ff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff853b7000 -     0x7fff85557ff7  GLEngine (9.6.1) <28300FBD-E3B2-35D2-BB54-77DCE62FC371> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff85558000 -     0x7fff855e1ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff855e2000 -     0x7fff85609ff7  com.apple.shortcut (2.6 - 2.6) <73FEBA7B-F371-3D1C-8E42-08580DE241A7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff85614000 -     0x7fff85625ff7  libz.1.dylib (53) <4C5FA1A5-4471-398E-9543-2E54D46E63E9> /usr/lib/libz.1.dylib
        0x7fff85626000 -     0x7fff858f7ff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff858f8000 -     0x7fff859e7fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff859e8000 -     0x7fff85aacff7  com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff85acc000 -     0x7fff85ad7ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <22A0C230-CF1E-38F5-A947-5ACDAEEE0DB6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff85b1e000 -     0x7fff85b4efff  com.apple.IconServices (25 - 25.17) <36811973-8777-3211-863A-76B2C20B0ED0> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff85c4c000 -     0x7fff85c4fff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff85c50000 -     0x7fff85efaff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff85efb000 -     0x7fff85f18ff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff85f1c000 -     0x7fff86003ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff86004000 -     0x7fff862eefff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8630e000 -     0x7fff86311fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff86312000 -     0x7fff863f6ff7  com.apple.coreui (2.2 - 231.1) <187DF89C-8A64-366D-8782-F90315FA3CD7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff863f7000 -     0x7fff8643cfff  libcurl.4.dylib

    Someone please help. :[ I need help as soon as possible. It's urgent.

  • Queues and event structure

    Hi,
    I'm having some troubles with a program that I'm doing.
    I think the big problem are in the queues and the structure event. I don't know why, but the elements in the queue only increase. And I think, because of that, some things that should happen, don't happen. For example, when I press the button "Impact" an square wave should appear, and it didn't appear.
    Thanks for all your help,
    Sílvia
    Attachments:
    Sonic.zip ‏115 KB

    sreis wrote:
    Hi,
    Of course I read your post, but like I said, I don't understand why, when I press the "Impulse" button, I have the start in the queue. I shouldn't have the previous used enum, because of the shift register?
    You are right, the things are slow down because of the re-enqueues and the many Acquire state I have in the queue. But how can I fix that?
    Thanks,
    Sílvia
    Yes the previous enum will be there because of the shift register.  But look at what is happening in your Acquire loop.  You are enqueueing on every loop iteration.  So your action is like this:
    Press Start - enqueue Initialize and Acquire
    Initilaize state runs
    Acquire state runs - Acquire is queued up again.  Because you have no wait state,  this loop runs super fast and you keep dequeueing acquire and queueing acquire again.  The wait state is imperative to allow the CPU time to process some other loops.  This is not done automatically, you have to allow it by adding waits to loops.
    Now you happen to press impact and somehow the CPU finds time to process the event.  What state gets queued?  Acquire again.  Now you have two acquires queued because the last Acquire state also queued an acquire.  Every button you press will enque something on top of what is already there and your dequeue will never be able to keep up.
    The solution is to not enqueue anything in the bottom loop.  Never do this.  If you want to acquire when no event is happeing, queue up the acquire in the Timeout event.
    - tbob
    Inventor of the WORM Global

  • HP PRO 3400 Series desktop won't boot CPU fan starts and stops , no video, no beeps

    I have the above computer with an i3-2125 CPU, Windows 7 Home Premium 64 bit, and a 300GB Seagate Hard drive.  I've had it for about 2 years and been working fine. It started acting up about 2 months ago.  It would lose the date and time.  I checked the battery, and it was OK, so I kept using the computer.  Then on 9/15/2014 it hung on "Starting Windows", I did the following:
    1.  Ran the built in HP diagnostic on hard drive and memory and they both passed.
    2.  Tried to go to last known good configuration and nothing happened.
    3.  Noticed the date and time were off, replaced the battery, nothing changed.
    4.  Tried another hard drive from another HP PRO 3400 Series and it would boot up but could not set date in bios.
    5.  Tried all kinds of things but could not set date in bios.
          a.  Bios date read 48/00/0048 after removing and replacing battery.
          b,  Tried to reset date to 9/16/2914 and it gets 56/00/0051
    6.  Then it wouldn't boot at all.   So now when you turn on the power, the CPU fan starts and runs for about 1 second, then shuts off for 4 seconds, then starts and runs for another 1 sec and it does this continuously.  There is  no video and no beeps and no difference when all memory is removed.
    7.  I removed the power supply, and checked voltages.  It appears to be OK.
    8.  I removed the motherboard, and inspected it- saw nothing obvious.
    9.  I connected the power supply to the motherboard with nothing else connected to the motherboard, and I get the same thing.  CPU fan starts then stops continuously, no video no beeps.
    10.  I am thinking it is the Motherboard, but I sure could use some suggestions as to what to do next.
    Thanks
    Maxgle from CA

    Maxgle, welcome to the forum.
    I believe that you would get more responses to your problem if you start a thread here.  They are the members who know your computer best.
    Please click the "Thumbs up + button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Time machine on external drive will not back up itunes media file on a separate external drive. Have already reformated itunes media drive,dragged itunes media backup file from time machine (old copy) and removed time machine plist and restarted.

    Two external drives, one for time machine backups and a second (daisy chained firewire) for itunes media folder . Time machine fails to backup the media file saying could not be completed, with no error specified. Steps taken already include reformating drive with media, dragging older media backup file from time machine disc to media disc, and deleting time machine plist and starting time macine preferences upon startup. Media folder is approx 200 gb, mostly ripped dvd movies.
    Any help for this??
    Thanks

    Tks for the help. Tried to eliminate duplicates. Copy below.
    6/11/14 3:07:33.458 PM com.apple.backupd[532]: Found 2332 files (193.66 GB) needing backup
    6/11/14 3:07:33.488 PM com.apple.backupd[532]: 219.71 GB required (including padding), 539.32 GB available
    6/11/14 3:09:42.200 PM com.apple.backupd[532]: Copied 1201 items (51.5 MB) from volume Macintosh HD. Linked 2894.
    6/11/14 3:10:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:30.072 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/2013 Trip To Kate and Jason - Large 1.m4v to (null)
    6/11/14 3:10:44.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:57.327 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/2013 Trip To Kate and Jason - Large.m4v to (null)
    6/11/14 3:11:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:11:22.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:11:22.394 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/IMG_0378.m4v to (null)
    6/11/14 3:11:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:12:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:12:09.872 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/IMG_0398.m4v to (null)
    6/11/14 3:12:44.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:12:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:05.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:05.959 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/AAA 2.4.1.ipa to (null)
    6/11/14 3:13:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:51.325 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Air Sharing 3.4.3.ipa to (null)
    6/11/14 3:14:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:21.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:51.289 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Angie's List 3.0.2.ipa to (null)
    6/11/14 3:15:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:15:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:15:34.517 PM secd[422]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:34.517 PM secd[267]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:34.517 PM secd[267]:  securityd_xpc_dictionary_handler EscrowSecurityAl[581] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:34.517 PM secd[422]:  securityd_xpc_dictionary_handler EscrowSecurityAl[580] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:15:51.643 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/AP Mobile 6.2.1.ipa to (null)
    6/11/14 3:15:54.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:19.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:19.908 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Apple Store 120269.ipa to (null)
    6/11/14 3:16:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:50.710 PM com.apple.backupd-helper[533]: Not starting scheduled Time Machine backup: Backup already running
    6/11/14 3:16:53.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:00.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:00.552 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Archetype 1.6.2.ipa to (null)
    6/11/14 3:17:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:49.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:28.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:40.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:06.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:43.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:56.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:11.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:36.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:28.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:53.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:06.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:19.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:31.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:22.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:50.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:15.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:47.887 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Bloomberg 3.0.ipa to (null)
    6/11/14 3:26:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:13.942 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Calculator 3.4.ipa to (null)
    6/11/14 3:26:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:26.509 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Camera Zoom 3.1.ipa to (null)
    6/11/14 3:26:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:52.108 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Cards 2.0.1.ipa to (null)
    6/11/14 3:27:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:27:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:27:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:27:29.606 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Casino 2.5.ipa to (null)
    6/11/14 3:27:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:00.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:00.327 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Clear Day 2.6.ipa to (null)
    6/11/14 3:28:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:56.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:21.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:34.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:59.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:12.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:24.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:37.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:49.085 PM xpcproxy[629]: assertion failed: 13D65: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    6/11/14 3:30:49.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:50.194 PM syncdefaultsd[628]: Fixing push token
    6/11/14 3:30:52.507 PM xpcproxy[632]: assertion failed: 13D65: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    6/11/14 3:31:02.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:27.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:05.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:42.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:58.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:21.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:49.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:02.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:30.676 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Collection HD 1.7.ipa to (null)
    6/11/14 3:36:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:36:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:36:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:36:29.651 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/eCardExpress 2.1.ipa to (null)
    6/11/14 3:36:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:45.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:08.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:04.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:54.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:19.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:54.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:34.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:12.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:25.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:50.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:25.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:28.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:40.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:20.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:45.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:58.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:00.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:49:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:49:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:49:21.393 PM WindowServer[128]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280300 device: 0x7f8ef9d04e00  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/11/14 3:49:21.731 PM launchservicesd[52]: Application App:"System Preferences" asn:0x0-44044 pid:509 refs=7 @ 0x7fb5b9443730 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x45045 pid=513 "com.apple.prefs.backup.remoteservice"")), so denying. : LASSession.cp #1481 SetFrontApplication() q=LSSession 100019/0x186b3 queue
    6/11/14 3:49:21.731 PM WindowServer[128]: [cps/setfront] Failed setting the front application to System Preferences, psn 0x0-0x44044, securitySessionID=0x186b3, err=-13066
    6/11/14 3:49:21.733 PM WindowServer[128]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x7f8ef9e94e00(2001)
    6/11/14 3:49:21.795 PM WindowServer[128]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x7f8ef9e94e00(2001)
    6/11/14 3:49:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:50:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:50:48.546 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/GarageBand 1.1.ipa to (null)
    6/11/14 3:51:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:07.747 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Glympse 2.22.444.ipa to (null)
    6/11/14 3:53:20.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:32.869 PM com.apple.backupd[532]: Stopping backup.
    6/11/14 3:53:32.869 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Golf Channel 3.7.2.ipa to (null)
    6/11/14 3:53:33.357 PM com.apple.backupd[532]: Copied 127 items (2.24 GB) from volume Media. Linked 0.
    6/11/14 3:53:33.376 PM com.apple.backupd[532]: Copy stage failed with error:11
    6/11/14 3:53:34.607 PM com.apple.backupd[532]: Backup failed with error 11: 11
    6/11/14 3:55:53.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:56:05.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:56:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:56:33.000 PM kernel[0]: disk1s2: I/O error.

  • I have a new Macbook pro, about 2 months old, and at times running video, the fans starts and does not stop. how do you get it to stop.

    I have a new Macbookbook, about 2 months old, and at times running video, the fans starts and does not stop. how do you get it to stop. Also i am thinking once the video is done  the fan should be slowing down and getting quiet on its own.

    Your fan(s) will run at high speed (i.e., loudly) while video is playing, and you can't get around that.
    If your fans are not slowing down within 2-4 minutes after CPU- and/or GPU-intensive usage ends, and the application that was showing the video is still running, Quit that application. (In fact, if you're accustomed to Windows, you may not realize that simply closing a Mac application's window does not quit the application. You still need to use the Quit command in the application-name menu. There will always be a bright dot beside or below the application icon in your Dock for each application that is open.) Quit the ones you aren't using, and see whether that allows the fans to slow down without restarting the machine. If that doesn't do the trick, reset the SMC:
    http://support.apple.com/kb/HT3964?viewlocale=en_US&locale=en_US

  • Apps crashing in 10.6.6?  (So far, Evernote and Date & Time prefs)

    I'm having trouble with certain apps crashing. So far, I've noticed Evernote (when trying to open the prefs) and Date & Time. The D&T is showing up in my menu bar as "2 10:04" right now. Was checking to see why the 2 is there.
    I've run disk permissions, am currently scanning with Sophos, and have attempted searching. No luck with anything so far. Any assistance would be GREATLY appreciated.
    I'm running a Macbook Pro (2.8 GHz Intel Core 2 Duo w/ 4GB RAM)
    OS X Ver. 10.6.6
    Currently only seeing problems with Evernote and D&T. I have Firefox, Entourage, and iTunes running fine as I type this.

    Crash report below:
    Process: System Preferences [2018]
    Path: /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier: com.apple.systempreferences
    Version: 7.0 (7.0)
    Build Info: SystemPrefsApp-1750100~6
    Code Type: X86-64 (Native)
    Parent Process: launchd [189]
    Date/Time: 2011-01-31 10:09:16.512 -0600
    OS Version: Mac OS X 10.6.6 (10J567)
    Report Version: 6
    Interval Since Last Report: 80282 sec
    Crashes Since Last Report: 12
    Per-App Interval Since Last Report: 440 sec
    Per-App Crashes Since Last Report: 6
    Anonymous UUID: E7D827EE-EF21-42E6-94FD-767B9F7E2339
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    NSCFString
    objc[2018]: garbage collection is ON
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.CoreFoundation 0x00007fff813a7730 CFStringGetCString + 144
    1 com.apple.CoreFoundation 0x00007fff814399b8 CFLocaleGetLanguageCharacterDirection + 56
    2 com.apple.AppKit 0x00007fff885a4cdc -[NSDatePickerCell(NSTextFieldWithStepperDatePickerInternal) _createSubfields] + 240
    3 com.apple.AppKit 0x00007fff885a4af0 -[NSDatePickerCell initWithCoder:] + 1763
    4 com.apple.Foundation 0x00007fff82845d17 _decodeObjectBinary + 2548
    5 com.apple.Foundation 0x00007fff82845191 _decodeObject + 208
    6 com.apple.AppKit 0x00007fff883c3e6a -[NSControl initWithCoder:] + 738
    7 com.apple.Foundation 0x00007fff82845d17 _decodeObjectBinary + 2548
    8 com.apple.Foundation 0x00007fff82846a1d -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1229
    9 com.apple.Foundation 0x00007fff82846f5d -[NSArray(NSArray) initWithCoder:] + 462
    10 com.apple.Foundation 0x00007fff82845d17 _decodeObjectBinary + 2548
    11 com.apple.Foundation 0x00007fff82845191 _decodeObject + 208
    12 com.apple.AppKit 0x00007fff883c401e -[NSView initWithCoder:] + 362
    13 com.apple.Foundation 0x00007fff82845d17 _decodeObjectBinary + 2548
    14 com.apple.Foundation 0x00007fff82845191 _decodeObject + 208
    15 com.apple.AppKit 0x00007fff883c4d0e -[NSResponder initWithCoder:] + 98
    16 com.apple.AppKit 0x00007fff883c3f01 -[NSView initWithCoder:] + 77
    17 com.apple.AppKit 0x00007fff883c3bb9 -[NSControl initWithCoder:] + 49
    18 com.apple.AppKit 0x00007fff883c3b77 -[NSButton initWithCoder:] + 39
    19 com.apple.Foundation 0x00007fff82845d17 _decodeObjectBinary + 2548
    20 com.apple.Foundation 0x00007fff82845191 _decodeObject + 208
    21 com.apple.AppKit 0x00007fff88355007 -[NSNibConnector initWithCoder:] + 445
    22 com.apple.AppKit 0x00007fff88354e32 -[NSNibOutletConnector initWithCoder:] + 343
    23 com.apple.Foundation 0x00007fff82845d17 _decodeObjectBinary + 2548
    24 com.apple.Foundation 0x00007fff82846a1d -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1229
    25 com.apple.Foundation 0x00007fff82846f5d -[NSArray(NSArray) initWithCoder:] + 462
    26 com.apple.Foundation 0x00007fff82845d17 _decodeObjectBinary + 2548
    27 com.apple.Foundation 0x00007fff82845191 _decodeObject + 208
    28 com.apple.AppKit 0x00007fff8835414d -[NSIBObjectData initWithCoder:] + 2046
    29 com.apple.Foundation 0x00007fff82845d17 _decodeObjectBinary + 2548
    30 com.apple.Foundation 0x00007fff82845191 _decodeObject + 208
    31 com.apple.AppKit 0x00007fff8835383d loadNib + 146
    32 com.apple.AppKit 0x00007fff88352f9d +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 763
    33 ....frameworks.preferencepanes 0x00007fff86a3c122 -[NSPreferencePane loadMainView] + 158
    34 ....frameworks.preferencepanes 0x00007fff86a3d837 -[NSPrefPaneBundle instantiatePrefPaneObject] + 435
    35 ....frameworks.preferencepanes 0x00007fff86a41a82 -[NSPrefTabsController layoutForTabViewItem:] + 98
    36 ....frameworks.preferencepanes 0x00007fff86a41e7d -[NSPrefTabsController setPrefs:lastSelected:] + 754
    37 com.apple.preference.datetime 0x00000001177de3f7 DTLog + 948
    38 ....frameworks.preferencepanes 0x00007fff86a3c144 -[NSPreferencePane loadMainView] + 192
    39 ....frameworks.preferencepanes 0x00007fff86a3d837 -[NSPrefPaneBundle instantiatePrefPaneObject] + 435
    40 com.apple.systempreferences 0x000000010000807a 0x100000000 + 32890
    41 com.apple.systempreferences 0x0000000100011bec 0x100000000 + 72684
    42 com.apple.AppKit 0x00007fff8856f6fc -[NSApplication _doOpenFile:ok:tryTemp:] + 330
    43 com.apple.AppKit 0x00007fff885c0adb -[NSApplication(NSAppleEventHandling) _handleAEOpenDocumentsForURLs:] + 766
    44 com.apple.AppKit 0x00007fff8848d00d -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 217
    45 com.apple.Foundation 0x00007fff82877f62 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 360
    46 com.apple.Foundation 0x00007fff82877d92 _NSAppleEventManagerGenericHandler + 114
    47 com.apple.AE 0x00007fff86ef5323 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 162
    48 com.apple.AE 0x00007fff86ef521c dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 32
    49 com.apple.AE 0x00007fff86ef5123 aeProcessAppleEvent + 210
    50 com.apple.HIToolbox 0x00007fff84775765 AEProcessAppleEvent + 48
    51 com.apple.AppKit 0x00007fff8839204b _DPSNextEvent + 1205
    52 com.apple.AppKit 0x00007fff883917a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    53 com.apple.AppKit 0x00007fff8835748b -[NSApplication run] + 395
    54 com.apple.AppKit 0x00007fff883501a8 NSApplicationMain + 364
    55 com.apple.systempreferences 0x0000000100001cf4 0x100000000 + 7412
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff84aae16a kevent + 10
    1 libSystem.B.dylib 0x00007fff84ab003d dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff84aafd14 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff84aaf83e dispatch_workerthread2 + 252
    4 libSystem.B.dylib 0x00007fff84aaf168 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff84aaf005 start_wqthread + 13
    Thread 2: Dispatch queue: com.apple.preferences.writecache
    0 libSystem.B.dylib 0x00007fff84a9f99e open + 10
    1 com.apple.CoreFoundation 0x00007fff81439b30 __CFSTTokRuleData + 256
    2 com.apple.CoreFoundation 0x00007fff8142459a CFStringTokenizerCreate + 378
    3 com.apple.SearchKit 0x00007fff85c0915e IADefaultTextAnalysisCreateTokenizerNew + 2930
    4 com.apple.SearchKit 0x00007fff85c3563f TermIndex::DefaultInvertDocumentToUpdateSet(OpaqueIATextAnalysisRef*, IADoc*, OpaqueIATextStreamRef*, unsigned int*) + 271
    5 com.apple.SearchKit 0x00007fff85c0815a TermIndex::AddDocInternal(IADoc*, unsigned int, OpaqueIATextStreamRef*) + 276
    6 com.apple.SearchKit 0x00007fff85c05c99 TIAIndex::Add(OpaqueIADocKeyRef*, OpaqueIATextStreamRef*, unsigned char) + 307
    7 com.apple.SearchKit 0x00007fff85c05aab IAIndexAddDocWithTextStream + 144
    8 com.apple.SearchKit 0x00007fff85c05919 SKIndexAddDocumentWithText + 215
    9 ....frameworks.preferencepanes 0x00007fff86a45a71 -[NSPrefPaneSearchCenter createSearchIndexForPrefPaneBundles:] + 1647
    10 ....frameworks.preferencepanes 0x00007fff86a3eaa2 __-[NSPrefPanesCenter writeCache:synchronously:]_block_invoke1 + 970
    11 libSystem.B.dylib 0x00007fff84ad12c4 dispatch_call_block_andrelease + 15
    12 libSystem.B.dylib 0x00007fff84aafe32 dispatch_queuedrain + 251
    13 libSystem.B.dylib 0x00007fff84aafc94 dispatch_queueinvoke + 57
    14 libSystem.B.dylib 0x00007fff84aaf83e dispatch_workerthread2 + 252
    15 libSystem.B.dylib 0x00007fff84aaf168 pthreadwqthread + 353
    16 libSystem.B.dylib 0x00007fff84aaf005 start_wqthread + 13
    Thread 3: Dispatch queue: Garbage Collection Work Queue
    0 libobjc.A.dylib 0x00007fff868966f5 classgetSuperclass + 0
    1 libobjc.A.dylib 0x00007fff86897797 object_cxxDestructFromClass + 115
    2 libobjc.A.dylib 0x00007fff8689bf6f finalizeOneObject + 56
    3 libauto.dylib 0x00007fff8685c3e5 Auto::foreachblock_do(auto_zonecursor*, void ()(void, void*), void*) + 85
    4 libobjc.A.dylib 0x00007fff8689bb5c batchFinalize + 64
    5 libobjc.A.dylib 0x00007fff8689bc40 batchFinalizeOnTwoThreads + 98
    6 libauto.dylib 0x00007fff86856147 Auto::Zone::invalidate_garbage(unsigned long, unsigned long const*) + 71
    7 libauto.dylib 0x00007fff86846b31 autocollectinternal(Auto::Zone*, unsigned int) + 481
    8 libauto.dylib 0x00007fff868470cd autocollectionwork(Auto::Zone*) + 157
    9 libSystem.B.dylib 0x00007fff84ad12c4 dispatch_call_block_andrelease + 15
    10 libSystem.B.dylib 0x00007fff84aafe32 dispatch_queuedrain + 251
    11 libSystem.B.dylib 0x00007fff84aafc94 dispatch_queueinvoke + 57
    12 libSystem.B.dylib 0x00007fff84aaf83e dispatch_workerthread2 + 252
    13 libSystem.B.dylib 0x00007fff84aaf168 pthreadwqthread + 353
    14 libSystem.B.dylib 0x00007fff84aaf005 start_wqthread + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff84aaef8a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff84aaf39c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff84aaf005 start_wqthread + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff84aaef8a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff84aaf39c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff84aaf005 start_wqthread + 13
    Thread 6:
    0 libSystem.B.dylib 0x00007fff84aaef8a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff84aaf39c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff84aaf005 start_wqthread + 13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff84aaef8a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff84aaf39c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff84aaf005 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000400 rbx: 0x0000000000000600 rcx: 0x0000000000000600 rdx: 0x0000000000000007
    rdi: 0x0000000000000000 rsi: 0x00007fff5fbfbdd0 rbp: 0x00007fff5fbfbdb0 rsp: 0x00007fff5fbfbd40
    r8: 0x0000000200000000 r9: 0x0000000000000005 r10: 0x0000000200027e01 r11: 0x00007fff81439970
    r12: 0x0000000000000000 r13: 0x00000000000000e0 r14: 0x000000000000009c r15: 0x0000000200555d60
    rip: 0x00007fff813a7730 rfl: 0x0000000000010283 cr2: 0x0000000000000000
    Binary Images:
    0x100000000 - 0x10001eff7 com.apple.systempreferences 7.0 (7.0) <2B1225AD-AED9-9ACE-8678-624C5BB17FFB> /Applications/System Preferences.app/Contents/MacOS/System Preferences
    0x111fb0000 - 0x111fd6fff GLRendererFloat ??? (???) <8256EA93-A236-8B55-F214-65896DDB7A0E> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x11586b000 - 0x1159fcfef GLEngine ??? (???) <AE898A2A-1C12-9FDB-455F-32601F030904> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x115a2d000 - 0x1161b4fef com.apple.GeForceGLDriver 1.6.26 (6.2.6) <BAAEDD99-82FA-2C7F-CD66-E0977C670CC5> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x1165ae000 - 0x1169d1fef libclh.dylib 3.1.1 C (3.1.1) <66455CD1-8C09-4A8F-EDA1-D4F2F30663F1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x1177dd000 - 0x1177deff7 com.apple.preference.datetime 4.0 (4.0) <987DC913-72E0-18AF-704D-C32B4375FE8C> /System/Library/PreferencePanes/DateAndTime.prefPane/Contents/MacOS/DateAndTime
    0x1177ea000 - 0x1177edfff com.apple.preference.datetime.datetime 4.0 (4.0) <A1B14D24-0A41-3BA4-8702-D8708D70E7C8> /System/Library/PreferencePanes/DateAndTime.prefPane/Contents/Resources/DateTim e.prefPane/Contents/MacOS/DateTime
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
    0x7fff80003000 - 0x7fff80055ff7 com.apple.HIServices 1.8.2 (???) <7C91D07D-FA20-0882-632F-0CAE4FAC2B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff80056000 - 0x7fff80059ff7 com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff8005a000 - 0x7fff8009bff7 com.apple.MediaKit 10.3 (485) <0B1646B6-BBEC-774A-A2B5-A89EE5412AD0> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff8009c000 - 0x7fff800cdfff libGLImage.dylib ??? (???) <1A8E58CF-FA2F-14F7-A097-D34EEA8A7D03> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff800ce000 - 0x7fff800ddfff com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff800de000 - 0x7fff800e2ff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8014a000 - 0x7fff8084706f com.apple.CoreGraphics 1.545.0 (???) <356D59D6-1DD1-8BFF-F9B3-1CE51D2F1EC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff80848000 - 0x7fff80892ff7 com.apple.Metadata 10.6.3 (507.15) <5170FCE0-ED6C-2E3E-AB28-1DDE3F628FC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8095c000 - 0x7fff80d9ffef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff80da0000 - 0x7fff80e85fef com.apple.DesktopServices 1.5.9 (1.5.9) <27890B2C-0CD2-7C27-9D0C-D5952C5E8438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff80e86000 - 0x7fff80f86fef com.apple.DiskImagesFramework 10.6.5 (289) <ABC5E39D-B7F4-0966-55A9-B517F4D4B7AC> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff80f87000 - 0x7fff81061ff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff81062000 - 0x7fff81068ff7 com.apple.CommerceCore 1.0 (6) <E8A1144C-5666-9840-4729-256FE69CDBDB> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8108a000 - 0x7fff8108aff7 com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff810c1000 - 0x7fff810c1ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff810c2000 - 0x7fff8112cfe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff8112d000 - 0x7fff8114dff7 com.apple.DirectoryService.Framework 3.6 (621.9) <FF6567B5-56BD-F3EC-E59D-1EC583C3CF73> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff8114e000 - 0x7fff8126ffe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff81270000 - 0x7fff812b5fff com.apple.CoreMediaIOServices 134.0 (1160) <033C41A6-EB9B-6B3B-781A-AF001A945C7A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff812b6000 - 0x7fff812c7ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
    0x7fff812c8000 - 0x7fff8137dfe7 com.apple.ColorSync 4.6.3 (4.6.3) <AA93AD96-6974-9104-BF55-AF7A813C8A1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8137e000 - 0x7fff814f5fe7 com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff814f6000 - 0x7fff81545fef libTIFF.dylib ??? (???) <AE9DC484-1382-F7AD-FE25-C28082FCB5D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff81546000 - 0x7fff8155cfff com.apple.ImageCapture 6.0.1 (6.0.1) <09ABF2E9-D110-71A9-4A6F-8A61B683E936> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff815b8000 - 0x7fff815beff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff815bf000 - 0x7fff815c3ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <63F77AC8-84CB-0C2F-8D2B-190EE5CCDB45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff81645000 - 0x7fff8168eff7 com.apple.securityinterface 4.0.1 (40418) <E2DC796D-84EC-48F5-34A9-DF614573BE74> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8168f000 - 0x7fff8173efff edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8173f000 - 0x7fff81780fef com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff81781000 - 0x7fff8179cff7 com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8179d000 - 0x7fff8185aff7 com.apple.CoreServices.OSServices 357 (357) <718F0719-DC9F-E392-7C64-9D7DFE3D02E2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8185b000 - 0x7fff8185efff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff819c9000 - 0x7fff81a63fff com.apple.ApplicationServices.ATS 4.4 (???) <395849EE-244A-7323-6CBA-E71E3B722984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff81aa8000 - 0x7fff81abcfff libGL.dylib ??? (???) <1EB1BD0F-C17F-55DF-B8B4-8E9CF99359D4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff81b5c000 - 0x7fff81bdbfe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1DD64A62-0DE4-223F-F781-B272FECF80F0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff81c4f000 - 0x7fff81c68fff com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff81ccb000 - 0x7fff81d49fff com.apple.CoreText 3.5.0 (???) <4D5C7932-293B-17FF-7309-B580BB1953EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff81d4a000 - 0x7fff81e22fe7 com.apple.DiscRecording 5.0.8 (5080.4.1) <8D1F6E81-76EA-BA82-D4E2-10A87CCD5908> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff81e68000 - 0x7fff81eb7ff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff82176000 - 0x7fff821bdff7 com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff82401000 - 0x7fff82426ff7 com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff827ac000 - 0x7fff82838fef SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff82839000 - 0x7fff82abcff7 com.apple.Foundation 6.6.4 (751.42) <9A99D378-E97A-8C0F-3857-D0FAA30FCDD5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff82abd000 - 0x7fff82b06fef libGLU.dylib ??? (???) <CCE779A9-2467-A5AA-A558-691E43A1105F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff82be8000 - 0x7fff82f85fe7 com.apple.QuartzCore 1.6.3 (227.34) <215222AF-B30A-7CE5-C46C-1A766C1D1D2E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff82fcb000 - 0x7fff82feefff com.apple.opencl 12.3 (12.3) <D30A45FC-4520-45AF-3CA5-092313DB5D54> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff83161000 - 0x7fff8396bfe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff8396c000 - 0x7fff83973fff com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff839a4000 - 0x7fff839aafff libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <4EE16374-A094-D542-5BC5-7E846D0CE56E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff839ab000 - 0x7fff839abff7 com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff839c5000 - 0x7fff839e2ff7 libPng.dylib ??? (???) <14043CBC-329F-4009-299E-DEE411E16134> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff83a2e000 - 0x7fff83b54fff com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <B51023BB-A5C9-3C65-268B-6B86B901BB2C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff83b55000 - 0x7fff83b7dfff com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff83b7e000 - 0x7fff83b93ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff83b94000 - 0x7fff83b94ff7 com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff83bc0000 - 0x7fff83c92fe7 com.apple.CFNetwork 454.11.5 (454.11.5) <B3E2BE12-D7AA-5940-632A-1E5E7BF8E6E3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff83c93000 - 0x7fff83cd4fff com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff83cd5000 - 0x7fff83d16ff7 com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff83eae000 - 0x7fff84288fff com.apple.RawCamera.bundle 3.4.1 (546) <F7865FD2-4869-AB19-10AA-EFF1B3BC4178> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff84289000 - 0x7fff843a0fef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
    0x7fff845b5000 - 0x7fff84626ff7 com.apple.AppleVAFramework 4.10.12 (4.10.12) <1B68BE43-4C54-87F5-0723-0B0A14CD21E8> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff84627000 - 0x7fff84740fef libGLProgrammability.dylib ??? (???) <4F2DC233-7DD2-1204-CAA5-3E6524F0AB75> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff84741000 - 0x7fff84a3ffe7 com.apple.HIToolbox 1.6.4 (???) <263AD497-F4CC-9610-E7D3-B95CF6F02030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff84a40000 - 0x7fff84a6ffff com.apple.framework.Admin 4.5 (4.5) <8F5A3803-7C4F-16DA-1B74-B9A1EF92614B> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x7fff84a94000 - 0x7fff84c55fff libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <71E6D4C9-F945-6EC2-998C-D61AD590DAB6> /usr/lib/libSystem.B.dylib
    0x7fff858ca000 - 0x7fff85bfefff com.apple.CoreServices.CarbonCore 861.23 (861.23) <08F360FA-1771-4F0B-F356-BEF68BB9D421> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff85bff000 - 0x7fff85c8ffff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff85c90000 - 0x7fff85c95ff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff85ce5000 - 0x7fff85ce5ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff85cfc000 - 0x7fff85d07ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff85d08000 - 0x7fff85dc1fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
    0x7fff85e7a000 - 0x7fff85e7aff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff85e87000 - 0x7fff85eadfe7 libJPEG.dylib ??? (???) <6690F15D-E970-2678-430E-590A94F5C8E9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff86034000 - 0x7fff86041fe7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <397B9057-5CDF-3B19-4E61-9DFD49369375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff86042000 - 0x7fff86546fe7 com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff867e2000 - 0x7fff86842fe7 com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff86843000 - 0x7fff8688ffff libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
    0x7fff86890000 - 0x7fff86946fff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
    0x7fff86947000 - 0x7fff86956fff com.apple.opengl 1.6.12 (1.6.12) <DE3F0528-7759-CDFD-A2CF-C51D3C9C8B39> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff86957000 - 0x7fff86959fff libRadiance.dylib ??? (???) <76438F90-DD4B-9941-9367-F2DFDF927876> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff8695a000 - 0x7fff8695bff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <14F14B5E-9287-BC36-0C3F-6592E6696CD4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8695c000 - 0x7fff86999ff7 libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff869e5000 - 0x7fff86a28ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <7E30B5F6-99FD-C716-8670-5DD4B4BAED72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff86a29000 - 0x7fff86a2aff7 com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff86a37000 - 0x7fff86a5eff7 com.apple.frameworks.preferencepanes 13.5 (13.5) <C79DCAF8-302A-843F-BE9B-407DDA682A8E> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x7fff86b9b000 - 0x7fff86bb1fef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff86bb2000 - 0x7fff86bd3fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
    0x7fff86dc4000 - 0x7fff86dc6fff com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff86e30000 - 0x7fff86ef1fe7 libFontParser.dylib ??? (???) <8B12D37E-3A95-5A73-509C-3AA991E0C546> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff86ef2000 - 0x7fff86f2dfff com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff86f2e000 - 0x7fff8709dfe7 com.apple.QTKit 7.6.6 (1756) <250AB242-816D-9F5D-94FB-18BF2AE9AAE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff8709e000 - 0x7fff8709ffff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff870a0000 - 0x7fff870cbff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff870cc000 - 0x7fff870cfff7 libCoreVMClient.dylib ??? (???) <609598E6-195D-E5D4-3B92-AE8D9768829C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8724e000 - 0x7fff87262ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff87263000 - 0x7fff872b8ff7 com.apple.framework.familycontrols 2.0.2 (2020) <A3CFF697-B9DB-A7E5-3B39-9DA9B34F0595> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff872c5000 - 0x7fff872dbfe7 com.apple.MultitouchSupport.framework 207.10 (207.10) <1828C264-A54A-7FDD-FE1B-49DDE3F50779> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff872dc000 - 0x7fff872eefe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff873a5000 - 0x7fff873e2fff com.apple.LDAPFramework 2.0 (120.1) <16383FF5-0537-6298-73C9-473AEC9C149C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff873e3000 - 0x7fff87521fff com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff87522000 - 0x7fff87528ff7 IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8752c000 - 0x7fff87654ff7 com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff87655000 - 0x7fff87691fe7 libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <1E041185-131C-C237-C250-38BE933A269A> /usr/lib/libcurl.4.dylib
    0x7fff87692000 - 0x7fff87747fe7 com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff877bd000 - 0x7fff877c8fff com.apple.bsd.ServiceManagement 1.1 (1.1) <D54D8562-BB62-A436-8A90-263908C1D0DC> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff878d4000 - 0x7fff878e0fff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <5C876577-ACB7-020C-F7DB-EE0135C3AB8D> /usr/lib/libbz2.1.0.dylib
    0x7fff878e1000 - 0x7fff87981fff com.apple.LaunchServices 362.2 (362.2) <A8EDC37C-1D40-5ED0-49BE-90EF110A6B3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff87982000 - 0x7fff879b4fff libTrueTypeScaler.dylib ??? (???) <B9ECE1BD-A716-9F65-6466-4444D641F584> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff879b5000 - 0x7fff879fdff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff879fe000 - 0x7fff879feff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff87a24000 - 0x7fff87a32ff7 libkxld.dylib ??? (???) <4016E9E6-0645-5384-A697-2775B5228113> /usr/lib/system/libkxld.dylib
    0x7fff87a33000 - 0x7fff87ab8ff7 com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff87dfd000 - 0x7fff87e02fff libGFXShared.dylib ??? (???) <991F8197-FD06-2AF1-F99B-E448ED4FB2AC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff87e03000 - 0x7fff87e3cfef libcups.2.dylib 2.8.0 (compatibility 2.0.0) <561D0DCB-47AD-A12C-9066-70E4CBAD331C> /usr/lib/libcups.2.dylib
    0x7fff87ef4000 - 0x7fff880b2fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <781E7B63-2AD0-E9BA-927C-4521DB616D02> /usr/lib/libicucore.A.dylib
    0x7fff880dd000 - 0x7fff8815afef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff8815b000 - 0x7fff88195fff libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
    0x7fff88196000 - 0x7fff8834dfef com.apple.ImageIO.framework 3.0.4 (3.0.4) <2CB9997A-A28D-80BC-5921-E7D50BBCACA7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff8834e000 - 0x7fff88d44fff com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff88e7a000 - 0x7fff89100fff com.apple.security 6.1.1 (37594) <1B4E1ABD-1BB3-DA49-F574-0EEB23E73C6A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff89101000 - 0x7fff89106fff libGIF.dylib ??? (???) <9A2723D8-61F9-6D65-D254-4F9273CDA54A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <71E6D4C9-F945-6EC2-998C-D61AD590DAB6> /usr/lib/libSystem.B.dylib

  • Jobs stay in queue and keep printing until you cancel them--then stops the print spooler...why?

    My Printer: HP Photosmart C309a
    My  Laptop: HP G71 series
    Operating System: Windows 7 (64 bit) but runs a lot of stuff on 32 bit
    Problem: I print ONE copy of a multiple page document in Adobe Reader 9. I select even pages only (after which I would reinsert the pages and tell it to print odd pages only, to get the other side). The printer makes a sound indicating the job is finished, I remove my pages to collate them, and then the printer continues to print the job again without so much as a keystroke.
    Naturally, you find the printer in the devices on the control panel, click "see what's printing" and highlight the job and cancel it.
    Then somehow it turns off my print spooler. 
    I have tried everything suggested on other forums, like
    restart the laptop/restart the printer
    going to c\windows\system32\spool\printers and deleting whatever is hung up in there (usually a shockwave file).
    Going to Services\print spooler \properties and making sure the settings are set to automatic
    Uninstall\reinstall latest driver and software
    Switching from Adobe Reader 10 to Adobe Reader 9
    Use System Restore to try to reset the system to a previous state.
    Run Trend Micro to check for viruses and spyware--nothing shows up.
    I am positive the pdf doc is NOT the problem, because I can print it on my husband's laptop multiple times over with no problems.
    Does anyone have this problem as well? Has anyone found a genuine solution other than manually canceling print jobs in queue and constantly restarting the print spooler?
    Thanks in advance for any suggestions.
    --Holly

    Hi,
     I believe your printer is wirelessly connected to your computer, right?!
     What's the current printer software version installed in your laptop computer?! 
     to see: click start>control panel>uninstall a program under Programs then it will tell you the software version like HP Photosmart c309a v13 or v14.
    If the software version is v13, click here to download and install the current software.
    IF all things still fail, try to use the workaround provided by HP in this link. It says:
    Workaround
    Your HP printing product can operate sufficiently using an alternate print driver, although there might be some limitations. For instance, some buttons on the product control panel might not function, but the product prints normally from the computer. If the solutions in this document do not solve the issue, download and install an alternate print driver.
    Follow these steps to install the HP Deskjet 990C print driver.
      NOTE:  These steps install the new print driver using the same port that the product already uses. The product functions normally with multiple drivers on the same port.
    Find the port that the product already uses.
    Click the Windows icon ( ), and then click Control Panel . The Control Panel opens in a new window.
    Click Hardware and Sounds .
    Click Printers . The Printers folder opens.
    Right-click the product icon ( ), and then click Properties . The Propertieswindow opens.
    Click the Ports tab. A window opens with a list of ports. The port for the product has a checkmark or a highlight.
    Note the name of the port indicated for the product.
    Close the Properties window, and then continue with the next steps.
    Click Add a Printer in the menu bar at the top of the Printers window. The Windows Add Printer Wizard opens.
    Click Add a local printer .
    Select Use an existing Port .
    Click the drop-down menu next to Use an existing Port , and then select the port that you noted earlier in these steps.
    Click Next .
    In the Manufacturer pane, click HP .
    In the Printers pane, click HP Deskjet 990c , and then click Next . (IF YOU CANT FIND DESKJET 990C, JUST CLICK WINDOWS UPDATE WITHIN THIS WINDOW. THEN FIND DESKJET 990C and then click next)
    Type a name for the new printer in the Printer name box, or keep the default name.
    Select Set as the default printer , and then click Next . A window opens with a progress bar as the printer installs. Then a new window opens.
    Click Do not share this printer , and then click Next .
    If you want to print a test page, click the Print test page button.
    Click Finish to complete the driver installation.
    Try printing again, but select HP Deskjet 990c from the Print dialog box.
    If this solves the issue, follow these steps to use the HP Deskjet 990c print driver whenever you send print jobs to the product.
    In the program you are using, select the option to print. The Print dialog box opens.
    Click the Name drop-down menu, and then select HP Deskjet 990c .
    Change print settings as desired in the Paper size , Quality , and Paper type drop-down menus.
    Select the Print range and Copies options as desired.
    Click OK . The product prints the file.
    Kiko

Maybe you are looking for