Launch a job N minutes after another

Hi all,
It is me again, and I have one basic question that I haven't figure out by myself.
How is it possible to constraint a job to execute only a certain period (let's say 15 minutes) after the end of its predecessor ?
I thought that we could use preconditions but these objects can only tell to launch or skip its script and not to wait.
Have you any ideas ?
Thanks,
Regards
Yi Jiang

Hi Yi,
The more common request is to have a job start x minutes after the start time of the predecessor. This can be achieved in a two-step chain, by applying a time window on the entire chain (which will determine the start of the chain and the first step) and another time window on the call in the second step which opens 15 minutes later than the first time window.
Your request is also possible, for instance:
- create a three step chain with a 15 minute sleep in the middle (not high-tech, but very efficient and clear in the monitor)
- create a three step chain where the second step changes the start time of the third step (still clear in the monitor, and less running jobs)
- create a job with a post running action (see doc) submitting the successor in 15 minutes
Hope this helps,
Anton Goselink.

Similar Messages

  • How to schedule batch jobs to run after another periodically?

    Hi good people,
    I want to schedule batch jobs to run periodically one after another.
    Here is the problem:
    I have scheduled JOB1 to run once a week and I scheduled JOB2 to run after that job (JOB1). The problem is that JOB2 runs only after the first time that JOB1 runs. The second time the JOB1 runs the JOB2 is not started. I presume that the reason for that is that JOB2 is tied to the job number for the JOB1, and since a new job (with the new number) is created every week, the JOB2 is only tied to the first instance of JOB1.
    So does anyone have an idea how to get JOB2 to automatically run every week after JOB1? One idea is to use events, but that I'm hoping that there is a bit cleaner solution..
    Best Regards,
    Armin

    Hi
    Try scheduling both JOB1 & JOB2 in a single job in steps.
    First schedule JOB1 & then give JOB2 in steps.
    Kindly check the following link to do job scheduling in steps:
    http://help.sap.com/saphelp_47x200/helpdata/en/c4/3a7ed1505211d189550000e829fbbd/frameset.htm
    In the above help documentation, look for the topic <b>"job steps"</b> in
    "Background Processing: Concepts and Features"
    hope it helps!
    best regards,
    Thangesh

  • Start one job after another complets using PL/SQL procedure and DBMS_JOB

    All,
    I am attempting to refresh a materialized view using DBMS_JOB and having a PL/SQL program loop through each materialized view name that resides in a table I created. We do the table because they have to be refreshed in a specific order and I utilize the ORDER_OF_REFRESH column to dictate which MV comes first, second, third, etc.
    Now - I have this working to the extent that it kicks off 4 materialized views (currently set the procedure to only do 4 MVs for testing purposes) but I would ultimately like the procedure to create a new DBMS_JOB that calls DBMS_MVIEW.REFRESH of the next view in line ONLY after the preceeding materialized view DBMS_JOB completes.
    The purpose of all of this is to do a few things. One - if I simply create a procedure with the DBMS_MVIEW.REFRESH call to each materialized view in order - that works but if one fails, the job starts over again and will up to 16 times - BIG PROBLEM. Secondly, we want the job that will call this procedure to fail if it encounters 2 failures on any one materialized view (because some MVs may be dependant upon that data and cannot use old stale data).
    This may not be the "best" approach but I am trying to make the job self-sufficient in that it knows when to fail or not, and doesn't kick off the materialized views jobs all at once (remember - they need to start one after the other - in order).
    As you can see near the bottom, my logic doesn't work quite right. It kicks off all four jobs at once with the date of the whatever LAST_REFRESH is in my cursor (which ultimately is from the prior day. What I would like to happen is this:
    1.) 1st MV kicks off as DBMS_JOB and completes
    2.) 2nd MV kicks off with a start time of 3 seconds after the completion of 1st MV (based off LAST_REFRESH) date.
    3.) This conitnues until all MVs are refresh or until 2 failures are encountered, in which no more jobs are scheduled.
    - Obviously I am having a little bit of trouble with #2 and #3 - any help is appreciated.
    CREATE OR REPLACE PROCEDURE Next_Job_Refresh_Test2 IS
    V_FAILURES NUMBER;
    V_JOB_NO NUMBER;
    V_START_DATE DATE := SYSDATE;
    V_NEXT_DATE DATE;
    V_NAME VARCHAR2(30);
    V_DELIMITER VARCHAR2(1);
    CURSOR MV_LIST IS SELECT DISTINCT A.ORDER_OF_REFRESH,
                                  A.MV_OBJECT_NAME
                        FROM CATEBS.DISCO_MV_REFRESH_ORDER A
                        WHERE A.ORDER_OF_REFRESH < 5
                   ORDER BY A.ORDER_OF_REFRESH ASC;
    CURSOR MV_ORDER IS SELECT B.ORDER_OF_REFRESH,
                                  B.MV_OBJECT_NAME,
                                  A.LAST_REFRESH
                             FROM USER_SNAPSHOTS A,
                                  DISCO_MV_REFRESH_ORDER B
                             WHERE A.NAME = B.MV_OBJECT_NAME
                        ORDER BY B.ORDER_OF_REFRESH ASC;
    BEGIN
    FOR I IN MV_LIST
    LOOP
    IF I.ORDER_OF_REFRESH = 1
    THEN V_START_DATE := SYSDATE + (30/86400); -- Start job one minute after execution time
              ELSE V_START_DATE := V_NEXT_DATE;
    END IF;
         V_FAILURES := 0;
         V_JOB_NO := 0;
         V_NAME := I.MV_OBJECT_NAME;
         V_DELIMITER := '''';
    DBMS_JOB.SUBMIT(V_JOB_NO,'DBMS_MVIEW.REFRESH(' || V_DELIMITER || V_NAME || V_DELIMITER || ');',V_START_DATE,NULL);
              SELECT JOB, FAILURES INTO V_JOB_NO, V_FAILURES
              FROM USER_JOBS
              WHERE WHAT LIKE '%' || V_NAME || '%'
              AND SCHEMA_USER = 'CATEBS';
    IF V_FAILURES = 3
    THEN DBMS_JOB.BROKEN(V_JOB_NO,TRUE,NULL); EXIT;
    END IF;
    FOR O IN MV_ORDER
    LOOP
    IF I.ORDER_OF_REFRESH > 2
    THEN V_NEXT_DATE:= (O.LAST_REFRESH + (3/86400)); -- Start next materialized view 3 seconds after completion of prior refresh
    END IF;
    END LOOP;
    END LOOP;
    EXCEPTION
    WHEN NO_DATA_FOUND
         THEN
              IF MV_LIST%ISOPEN
                   THEN CLOSE MV_LIST;
              END IF;
    NULL;
    END Next_Job_Refresh_Test2;
    ---------------------------------------------------------------------------------------------------------------------

    Justin,
    I think I am getting closer. I have a procedure shown just below this that updates my custom table with information from USER_SNAPSHOTS to reflect the time and status of the refresh completion:
    CREATE OR REPLACE PROCEDURE Upd_Disco_Mv_Refresh_Order_Tbl IS
    V_STATUS VARCHAR2(7);
    V_LAST_REFRESH DATE;
    V_MV_NAME VARCHAR2(30);
    CURSOR MV_LIST IS SELECT DISTINCT NAME, LAST_REFRESH, STATUS
                             FROM USER_SNAPSHOTS
                        WHERE OWNER = 'CATEBS';
    BEGIN
    FOR I IN MV_LIST
    LOOP
         V_STATUS := I.STATUS;
         V_LAST_REFRESH := I.LAST_REFRESH;
         V_MV_NAME := I.NAME;
    UPDATE DISCO_MV_REFRESH_ORDER A SET A.LAST_REFRESH = V_LAST_REFRESH
    WHERE A.MV_OBJECT_NAME = V_MV_NAME;
    COMMIT;
    UPDATE DISCO_MV_REFRESH_ORDER A SET A.REFRESH_STATUS = V_STATUS
    WHERE A.MV_OBJECT_NAME = V_MV_NAME;
    COMMIT;
    END LOOP;
    END Upd_Disco_Mv_Refresh_Order_Tbl;
    Next, I have a "new" procedure that does the job creation and refresh show just below this which, when starting the loop, sets the LAST_REFRESH date in my table to NULL and the STATUS = 'INVALID'. Then if the order of refresh = 1 then it uses SYSDATE to submit the job and start right away, else if it's not the first job, it uses V_NEXT_DATE. Now, V_NEXT_DATE is equal to the LAST_REFRESH date from my table when the view has completed and the V_PREV_STATUS = 'VALID'. I think tack on 2 seconds to that to begin my next job.... See code below:
    CREATE OR REPLACE PROCEDURE Disco_Mv_Refresh IS
    V_FAILURES NUMBER;
    V_JOB_NO NUMBER;
    V_START_DATE DATE := SYSDATE;
    V_NEXT_DATE DATE;
    V_NAME VARCHAR2(30);
    V_PREV_STATUS VARCHAR2(7);
    CURSOR MV_LIST IS SELECT DISTINCT A.ORDER_OF_REFRESH,
                                  A.MV_OBJECT_NAME,
                                  A.LAST_REFRESH,
                                  A.REFRESH_STATUS
                        FROM CATEBS.DISCO_MV_REFRESH_ORDER A
                        WHERE A.ORDER_OF_REFRESH <= 5
                   ORDER BY A.ORDER_OF_REFRESH ASC;
    BEGIN
    FOR I IN MV_LIST
    LOOP
    V_NAME := I.MV_OBJECT_NAME;
    V_FAILURES := 0;
    UPDATE DISCO_MV_REFRESH_ORDER SET LAST_REFRESH = NULL WHERE MV_OBJECT_NAME = V_NAME;
    UPDATE DISCO_MV_REFRESH_ORDER SET REFRESH_STATUS = 'INVALID' WHERE MV_OBJECT_NAME = V_NAME;
    IF I.ORDER_OF_REFRESH = 1
    THEN V_START_DATE := SYSDATE;
    ELSE V_START_DATE := V_NEXT_DATE;
    END IF;
    DBMS_JOB.SUBMIT(V_JOB_NO,'DBMS_MVIEW.REFRESH(' || '''' || V_NAME || '''' || '); BEGIN UPD_DISCO_MV_REFRESH_ORDER_TBL; END;',V_START_DATE,NULL);
    SELECT A.REFRESH_STATUS, A.LAST_REFRESH INTO V_PREV_STATUS, V_NEXT_DATE
    FROM DISCO_MV_REFRESH_ORDER A
    WHERE (I.ORDER_OF_REFRESH - 1) = A.ORDER_OF_REFRESH;
    IF I.ORDER_OF_REFRESH > 1 AND V_PREV_STATUS = 'VALID'
    THEN V_NEXT_DATE := V_NEXT_DATE + (2/86400);
    ELSE V_NEXT_DATE := NULL;
    END IF;
    END LOOP;
    EXCEPTION
    WHEN NO_DATA_FOUND
         THEN
              IF MV_LIST%ISOPEN
                   THEN CLOSE MV_LIST;
              END IF;
    NULL;
    END Disco_Mv_Refresh;
    My problem is that it doesn't appear to be looping to the next job. It worked succesfully on the first job but not the subsequent jobs (or materialized views in this case).... Any ideas?

  • About 10 minutes after launching Chrome, the header text turns to hieroglyphics. What's up with that? I have a screenshot...

    About 10 minutes after launching Chrome, the header text turns to hieroglyphics. What's up with that? I have a screenshot...As I am typing this question, my menu has changed to hieroglyphics.

    Sorry I can't help you except to say that I was having problems with a momentary freeze on the trackpad action on an MBP and I traced it to Chrome.  Chrome was generating a lot of console entries and the machine worked much better after I got a copy of 'find any file' for three bucks and used it to itentify all files containing 'google AND chrome', which I dumped in the trash.  Things have been much better since then.

  • How to set a job ran after another job finished?

    Dear Experts,
    Our requirement is to have 2 JOBs defined in SAP:
    JobA and JobB
    The requirement is JobA will firstly ran and finished everyday.
    Then JobB will start to run upon JobA finished everyday also.
    Then what i did is set 2 jobs, and set JobB ran after with JobA. I set JobA's name in 'After Job' for JobB.
    Right now, the issue is:
    JobB will run after JobA, but only could run one day..
    The next day after JobA finished, JobB will not run...
    Please kindly help what issue here??
    Thank you very much.

    Dear Hoo,
    It is possible to follow one job after another.
    For this set up please go to transaction "SM36"
    fill your details and then press "Start condition" a new screen opens where you can see several tabs,
    and there is one tab with "After Job" , please enter the name of Job e.g jobA.
    here you can set all the conditions to start a new job.
    I hope this solves your problem.
    Regards,
    Paresh

  • Run Jobs One After Another

    I know this is possible, I'm not sure how to go about it using Oracle's Scheduler. I simply want to create a special "queue" that I can submit jobs to which will run one after another. After they run, then then are gone. There many be no jobs at anyone time, and then at other times I may submit 10 jobs to the queue. Currently when I submit jobs they all run parrallel, this is not what I want. I guess I don't understand why Oracle calls it a Job Queue when all my jobs run in parrallel and not in a queue as the name implies.
    This is not say that I don't have other jobs which I would not want to send to this "queue". In other cases I would just want to submit the job and let it run right away and not wait on anything.
    I'm currently using the DBMS_JOB package, which I'm pretty sure won't let me do what I want.
    Any help would be greatly appreciated.
    Thanks,
    Joe

    Here is and example that creates Resource Manager objects and
    two job classes that will permit 1 and 3 jobs to
    run in parallel. Note this will work in 11R1 and 10.2.4
    Assumes user user scott/tiger exists.
    --  Remove existing scheduler objects, jobs and classes
    CONNECT /  as sysdba
    BEGIN
       DBMS_SCHEDULER.DROP_JOB_CLASS(
          JOB_CLASS_NAME => 'JOBQ_WIDTH_1_CLASS'
    END;
    BEGIN
       DBMS_SCHEDULER.DROP_JOB_CLASS(
          JOB_CLASS_NAME => 'JOBQ_WIDTH_3_CLASS'
    END;
    BEGIN
      FOR I IN 1..30 LOOP
      BEGIN
        SYS.DBMS_SCHEDULER.DROP_JOB(JOB_NAME => 'SCOTT.SERIAL_' || I, FORCE=>TRUE);
      EXCEPTION WHEN OTHERS THEN NULL;
      END;
    END LOOP;
    END;
    BEGIN
      FOR I IN 1..90 LOOP
      BEGIN
        SYS.DBMS_SCHEDULER.DROP_JOB(JOB_NAME => 'SCOTT.PAR3_' || I, FORCE=>TRUE);
      EXCEPTION WHEN OTHERS THEN NULL;
      END;
    END LOOP;
    END;
    ALTER SYSTEM SET RESOURCE_MANAGER_PLAN='';
    set echo on
    --  Remove previously defined  resource plan, resource plan
    --  directives, and resource consumer groups  for this test
    BEGIN
        -- Prepare the pending area
        DBMS_RESOURCE_MANAGER.CLEAR_PENDING_AREA;
        DBMS_RESOURCE_MANAGER.CREATE_PENDING_AREA;
        -- Delete resource plan, its resource plan directives, and
        -- any associated resource groups
        DBMS_RESOURCE_MANAGER.DELETE_PLAN_CASCADE(
           plan => 'JOBQS_PLAN'
        -- Submit the changes
        DBMS_RESOURCE_MANAGER.VALIDATE_PENDING_AREA;
        DBMS_RESOURCE_MANAGER.SUBMIT_PENDING_AREA;
    END;
    -- Create resource manager objects
    BEGIN
       DBMS_RESOURCE_MANAGER.CLEAR_PENDING_AREA();
       DBMS_RESOURCE_MANAGER.CREATE_PENDING_AREA();
       DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP (
            CONSUMER_GROUP => 'JOBQ_WIDTH_1_GROUP',  
            COMMENT => 'Consumer group to force jobs to execute in serial'
       DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP (
            CONSUMER_GROUP => 'JOBQ_WIDTH_3_GROUP',  
            COMMENT => 'Consumer group to allow jobs to run in parallel 3'
       DBMS_RESOURCE_MANAGER.SUBMIT_PENDING_AREA();
    END;
    BEGIN
       DBMS_RESOURCE_MANAGER.CLEAR_PENDING_AREA();
       DBMS_RESOURCE_MANAGER.CREATE_PENDING_AREA();
       DBMS_RESOURCE_MANAGER.CREATE_PLAN
          ('JOBQS_PLAN', 'PLAN TO SUPPORT JOBQS');
       DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(
          PLAN => 'JOBQS_PLAN',
          GROUP_OR_SUBPLAN => 'JOBQ_WIDTH_1_GROUP',
          COMMENT=>'Associates with job class JOBQ_WIDTH_1_CLASS',
          CPU_P1 => 25,
          PARALLEL_DEGREE_LIMIT_P1 => 1,
          ACTIVE_SESS_POOL_P1 =>1
       DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(
          PLAN => 'JOBQS_PLAN',
          GROUP_OR_SUBPLAN => 'JOBQ_WIDTH_3_GROUP',
          COMMENT=>'Associates with job class JOBQ_WIDTH_3_CLASS',
          CPU_P1 => 75,
          PARALLEL_DEGREE_LIMIT_P1 => 2,
          ACTIVE_SESS_POOL_P1 =>3
       DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(
          PLAN => 'JOBQS_PLAN',
          GROUP_OR_SUBPLAN => 'OTHER_GROUPS',
          CPU_P1 => 0,
          CPU_P2 => 100,
          COMMENT=>'Required'
       DBMS_RESOURCE_MANAGER.VALIDATE_PENDING_AREA();
       DBMS_RESOURCE_MANAGER.SUBMIT_PENDING_AREA();
    END;
    -- Create scheduler classes
    BEGIN
       DBMS_SCHEDULER.CREATE_JOB_CLASS(
          JOB_CLASS_NAME => 'JOBQ_WIDTH_1_CLASS',
          LOGGING_LEVEL => DBMS_SCHEDULER.LOGGING_FULL,
          LOG_HISTORY => 5,
          RESOURCE_CONSUMER_GROUP => 'JOBQ_WIDTH_1_GROUP',
          COMMENTS => 'Force jobs to run in serial, through plan JOBQ_PLAN and group JOBQ_WIDTH_1_GROUP'
    END;
    BEGIN
       DBMS_SCHEDULER.CREATE_JOB_CLASS(
          JOB_CLASS_NAME => 'JOBQ_WIDTH_3_CLASS',
          LOGGING_LEVEL => DBMS_SCHEDULER.LOGGING_FULL,
          LOG_HISTORY => 5,
          RESOURCE_CONSUMER_GROUP => 'JOBQ_WIDTH_3_GROUP',
          COMMENTS => 'Allow up to 3 jobs in parallel, enforced by plan JOBQ_PLAN and group JOBQ_WIDTH_3_GROUP'
    END;
    connect / as sysdba
    grant execute on jobq_width_1_class to scott;
    grant execute on jobq_width_3_class to scott;
    begin
      dbms_resource_manager_privs.grant_switch_consumer_group('scott','JOBQ_WIDTH_1_GROUP',false);
      dbms_resource_manager_privs.grant_switch_consumer_group('scott','JOBQ_WIDTH_3_GROUP',false);
    end;
    alter system set resource_manager_plan='';
    connect scott/tiger
    begin
      for i in 1..30 loop
      sys.dbms_scheduler.create_job(job_name => 'scott.serial_' || i,
          job_type=>'plsql_block', job_action=>'dbms_lock.sleep(2);',
          job_class=>'jobq_width_1_class',
          enabled=>true);
      end loop;
    end;
    begin
      for i in 1..90 loop
      sys.dbms_scheduler.create_job(job_name => 'scott.par3_' || i,
          job_type=>'plsql_block', job_action=>'dbms_lock.sleep(2);',
          job_class=>'jobq_width_3_class',
          enabled=>true);
      end loop;
    end;
    /-- The par3_90 job should finish about the same time as the serial_30 job since
    -- we run 3 jobs in paralled and serial respectively.
    -- check user_scheduler_job_run_details for after the test completed to verify.

  • ITunes crashes about a minute after launch

    iTunes has been crashing about 1-2 minutes after launch consistently for the past several days. This has occurred both before and after the recent Mavericks update (10.9.4) and regardless of rebooting my machine, reducing the type and number of other applications running, etc. So far I have tried the following:
    Deleting iTunes .plist files
    Reinstalling iTunes
    Checking Apple Hardware Test for bad memory (I never could get this to run, either from my regular boot disc or from a bootable Mavericks USB)
    Assuming I don't have a physical memory issue that inexplicably only impacts iTunes, what am I missing? I'm including the crash dump below. Apologies for length.
    Process:         iTunes [1035]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         11.2.2 (11.2.2)
    Build Info:      iTunes-1122011002002003~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [287]
    Responsible:     iTunes [1035]
    User ID:         501
    Date/Time:       2014-07-03 15:39:38.842 -0600
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  AD15C5BF-B763-3245-9C9D-18967610F4EE
    Crashed Thread:  29
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000020
    VM Regions Near 0x20:
    -->
        __TEXT                 0000000108c92000-000000010a3ed000 [ 23.4M] r-x/rwx SM=COW  /Applications/iTunes.app/Contents/MacOS/iTunes
    Thread 0:: iTunes main  Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.iTunes               0x0000000108ca9598 0x108c92000 + 95640
    3   com.apple.iTunes               0x0000000108ca92f8 0x108c92000 + 94968
    4   com.apple.iTunes               0x0000000108da4181 0x108c92000 + 1122689
    5   com.apple.iTunes               0x0000000108c99e31 0x108c92000 + 32305
    6   com.apple.iTunes               0x0000000108da4031 0x108c92000 + 1122353
    7   com.apple.iTunes               0x0000000108da3fbe 0x108c92000 + 1122238
    8   com.apple.iTunes               0x0000000108ca87d5 0x108c92000 + 92117
    9   com.apple.iTunes               0x0000000108c985bc 0x108c92000 + 26044
    10  com.apple.iTunes               0x0000000108c9816a 0x108c92000 + 24938
    11  com.apple.iTunes               0x0000000108c97454 0x108c92000 + 21588
    12  com.apple.iTunes               0x0000000108c97320 0x108c92000 + 21280
    13  com.apple.iTunes               0x0000000108c94ac6 0x108c92000 + 10950
    14  com.apple.CoreFoundation       0x00007fff99c683e4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    15  com.apple.CoreFoundation       0x00007fff99c67f1f __CFRunLoopDoTimer + 1151
    16  com.apple.CoreFoundation       0x00007fff99cd95aa __CFRunLoopDoTimers + 298
    17  com.apple.CoreFoundation       0x00007fff99c236a5 __CFRunLoopRun + 1525
    18  com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    19  com.apple.HIToolbox           0x00007fff8de36a0d RunCurrentEventLoopInMode + 226
    20  com.apple.HIToolbox           0x00007fff8de367b7 ReceiveNextEventCommon + 479
    21  com.apple.HIToolbox           0x00007fff8de365bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    22  com.apple.AppKit               0x00007fff9128c24e _DPSNextEvent + 1434
    23  com.apple.AppKit               0x00007fff9128b89b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    24  com.apple.AppKit               0x00007fff9127f99c -[NSApplication run] + 553
    25  com.apple.iTunes               0x00000001095cead0 0x108c92000 + 9685712
    26  com.apple.iTunes               0x000000010900e7e0 0x108c92000 + 3655648
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8f673662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff97ea8421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff97ea8136 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.mobiledevice         0x000000010ff15701 __thr_AMRegisterForCallbacks + 217
    7   libdispatch.dylib             0x00007fff97ea628d _dispatch_client_callout + 8
    8   libdispatch.dylib             0x00007fff97ea8082 _dispatch_root_queue_drain + 326
    9   libdispatch.dylib             0x00007fff97ea9177 _dispatch_worker_thread2 + 40
    10  libsystem_pthread.dylib       0x00007fff92ac6ef8 _pthread_wqthread + 314
    11  libsystem_pthread.dylib       0x00007fff92ac9fb9 start_wqthread + 13
    Thread 3:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000108cadcab 0x108c92000 + 113835
    7   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff8f672716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff92ac7c3b _pthread_cond_wait + 727
    2   com.apple.iTunes               0x0000000108c96f1b 0x108c92000 + 20251
    3   com.apple.iTunes               0x00000001091046eb 0x108c92000 + 4663019
    4   com.apple.iTunes               0x0000000109104e1a 0x108c92000 + 4664858
    5   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    6   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff8f6729aa __select + 10
    1   com.apple.CoreFoundation       0x00007fff99c6fa03 __CFSocketManager + 867
    2   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 6:: CoreAudioNotificationThread
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x00000001091c316b 0x108c92000 + 5443947
    7   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 7:: TrackProcessor::ManagerThread
    0   libsystem_kernel.dylib         0x00007fff8f672716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff92ac7c3b _pthread_cond_wait + 727
    2   com.apple.iTunes               0x0000000108c96f1b 0x108c92000 + 20251
    3   com.apple.iTunes               0x0000000108c96e75 0x108c92000 + 20085
    4   com.apple.iTunes               0x0000000108ef711c 0x108c92000 + 2511132
    5   com.apple.iTunes               0x0000000108ef70f3 0x108c92000 + 2511091
    6   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    7   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 8:: TrackProcessor::CooperativeProcessingFiber
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.iTunes               0x0000000108c96fe8 0x108c92000 + 20456
    3   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff8f671e02 __accept + 10
    1   com.apple.iTunes               0x0000000109949e8d 0x108c92000 + 13336205
    2   com.apple.iTunes               0x000000010992f7a1 0x108c92000 + 13227937
    3   com.apple.iTunes               0x000000010992f6e4 0x108c92000 + 13227748
    4   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    5   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff8f671e02 __accept + 10
    1   com.apple.iTunes               0x0000000109949e8d 0x108c92000 + 13336205
    2   com.apple.iTunes               0x000000010992f7a1 0x108c92000 + 13227937
    3   com.apple.iTunes               0x000000010992f6e4 0x108c92000 + 13227748
    4   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    5   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000108cadcab 0x108c92000 + 113835
    7   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 12:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000108cadcab 0x108c92000 + 113835
    7   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 13:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff96598967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff9659876b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00007fff9142c05e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000108cadcab 0x108c92000 + 113835
    7   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 16:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000108cadcab 0x108c92000 + 113835
    7   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000108cadcab 0x108c92000 + 113835
    7   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000108cadcab 0x108c92000 + 113835
    7   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff8f6729aa __select + 10
    1   com.apple.AirTrafficHost       0x00000001186a50de _readDictionary + 246
    2   com.apple.AirTrafficHost       0x00000001186a5892 ATProcessLinkCopyMessageFromChild + 182
    3   com.apple.AirTrafficHost       0x00000001186a463a ATHostConnectionReadMessage + 82
    4   com.apple.iTunes               0x0000000109054cfc 0x108c92000 + 3943676
    5   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    6   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.iTunes               0x0000000108ca9598 0x108c92000 + 95640
    3   com.apple.iTunes               0x0000000108ca92f8 0x108c92000 + 94968
    4   com.apple.iTunes               0x0000000108caaa82 0x108c92000 + 100994
    5   com.apple.iTunes               0x000000010904ed5e 0x108c92000 + 3919198
    6   com.apple.iTunes               0x00000001093bf50d 0x108c92000 + 7525645
    7   com.apple.iTunes               0x0000000108c9701a 0x108c92000 + 20506
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 21:: com.apple.coremedia.readcache
    0   libsystem_kernel.dylib         0x00007fff8f672716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff92ac7c3b _pthread_cond_wait + 727
    2   com.apple.CoreMedia           0x00007fff92150b56 WaitOnCondition + 11
    3   com.apple.CoreMedia           0x00007fff9215096a FigSemaphoreWaitRelative + 133
    4   com.apple.MediaToolbox         0x00007fff9753d38c 0x7fff97469000 + 869260
    5   com.apple.CoreMedia           0x00007fff921514aa figThreadMain + 382
    6   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib         0x00007fff8f672716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff92ac7c77 _pthread_cond_wait + 787
    2   com.apple.iTunes               0x0000000108c96f58 0x108c92000 + 20312
    3   com.apple.iTunes               0x0000000108d10f0f 0x108c92000 + 519951
    4   com.apple.iTunes               0x0000000108d10ead 0x108c92000 + 519853
    5   com.apple.iTunes               0x0000000108d10d1a 0x108c92000 + 519450
    6   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    7   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 23:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000108cadcab 0x108c92000 + 113835
    7   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 24:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000108cadcab 0x108c92000 + 113835
    7   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 25:: CFRunLoopThread
    0   libsystem_kernel.dylib         0x00007fff8f66ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8f66dd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff99c23f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff99c23539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff99c22e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff99cd8811 CFRunLoopRun + 97
    6   com.apple.iTunes               0x0000000108cadcab 0x108c92000 + 113835
    7   com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    8   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib         0x00007fff8f672e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff92ac6f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff92ac9fb9 start_wqthread + 13
    Thread 27:
    0   libsystem_kernel.dylib         0x00007fff8f672e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff92ac6f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff92ac9fb9 start_wqthread + 13
    Thread 28:
    0   libsystem_kernel.dylib         0x00007fff8f672716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff92ac7c3b _pthread_cond_wait + 727
    2   com.apple.iTunes               0x0000000108c96f1b 0x108c92000 + 20251
    3   com.apple.iTunes               0x0000000108c96e75 0x108c92000 + 20085
    4   com.apple.iTunes               0x00000001092ff232 0x108c92000 + 6738482
    5   com.apple.iTunes               0x0000000108fd9f08 0x108c92000 + 3440392
    6   com.apple.iTunes               0x0000000108fd8b54 0x108c92000 + 3435348
    7   com.apple.iTunes               0x0000000108fb0bea 0x108c92000 + 3271658
    8   com.apple.iTunes               0x0000000108faccd8 0x108c92000 + 3255512
    9   com.apple.iTunes               0x0000000108d10d9e 0x108c92000 + 519582
    10  com.apple.iTunes               0x0000000108c97c02 0x108c92000 + 23554
    11  libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    12  libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    13  libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 29 Crashed:
    0   com.apple.iTunes               0x0000000108daf6b3 0x108c92000 + 1169075
    1   com.apple.iTunes               0x0000000108daef6e 0x108c92000 + 1167214
    2   com.apple.iTunes               0x0000000108da7862 0x108c92000 + 1136738
    3   com.apple.iTunes               0x0000000108da4306 0x108c92000 + 1123078
    4   com.apple.iTunes               0x0000000108c9701a 0x108c92000 + 20506
    5   libsystem_pthread.dylib       0x00007fff92ac5899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff92ac572a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff92ac9fc9 thread_start + 13
    Thread 29 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000010a70b6b8  rcx: 0x00000000000063d0  rdx: 0x0000000052e48491
      rdi: 0x0000000000000000  rsi: 0x000000000000063d  rbp: 0x000000010b35ae40  rsp: 0x000000010b35adb0
       r8: 0x00000000000007ff   r9: 0x0000000000004ca5  r10: 0x0000000052e48491  r11: 0x0000000052e481bf
      r12: 0x00007fcd6b561778  r13: 0x0000600001e71d00  r14: 0x000000010a70b6b8  r15: 0x000060000084eca0
      rip: 0x0000000108daf6b3  rfl: 0x0000000000010206  cr2: 0x0000000000000020
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x108c92000 -        0x10a3ecfef  com.apple.iTunes (11.2.2 - 11.2.2) <E7A40F98-7562-3CA6-9575-16553270FB97> /Applications/iTunes.app/Contents/MacOS/iTunes
           0x10a7dd000 -        0x10a85dff7  com.apple.iTunes.iPodUpdater (10.7 - 10.7) <346D1F7E-A1E7-3A53-9DEF-3D22885079C8> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
           0x10a8e5000 -        0x10a910ff7  com.apple.avfoundationcf (2.0 - 138.2) <51DDFF2A-EEE3-327F-996B-A53954E7E23E> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
           0x10a94e000 -        0x10ac8bfef  com.apple.iad.iAdCore (1.0 - 1) <DEC4133E-928D-38FF-8207-F9BC3D79A372> /Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/iAdCo re
           0x10ad68000 -        0x10ad6cfff  com.apple.agl (3.2.3 - AGL-3.2.3) <9851E4CC-DA6B-3AF4-9B06-61BAC289572D> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10ad75000 -        0x10ad78fff  com.apple.iPod (1.7 - 20) <9B9FD104-A8EE-3884-8610-B06700AC344E> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x10ad82000 -        0x10b0aeff7 +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
           0x10b0da000 -        0x10b111ff7 +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
           0x10b128000 -        0x10b1fefe7 +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
           0x10b226000 -        0x10b269ff7 +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
           0x10b479000 -        0x10b47bff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10b67e000 -        0x10b681ffa  libCGXType.A.dylib (599.25.10.1) <9E609F91-BD17-3C51-A877-C80E7183A867> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x10b689000 -        0x10b68cff7  com.apple.QuartzComposer.iTunesPlugIn (1.4 - 18) <08330444-D369-3B4F-AE16-8E48F771CEEB> /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
           0x10b6d2000 -        0x10b6daff3  libCGCMS.A.dylib (599.25.10.1) <9A4FAAD7-1C16-33F8-A615-1DCAB0546E31> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x10b6ec000 -        0x10b6f2ff7  com.apple.BookKit (1.0.1 - 158) <34C7F87F-63B6-3E53-A7B1-8A6656405F41> /System/Library/PrivateFrameworks/BookKit.framework/BookKit
           0x10b954000 -        0x10b958ffd  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
           0x10d2db000 -        0x10e046ff7  com.apple.CoreFP (2.6.12 - 2.6.12) <AF25F685-326D-3DFE-9367-21895C69BD1D> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x10f9c2000 -        0x10faf9ff7  com.apple.CoreADI (2.9.2 - 2.9.2) <BC14122C-8508-3B0A-90F8-A16B1A9517E4> /System/Library/PrivateFrameworks/CoreADI.framework/CoreADI
           0x10fc14000 -        0x10fde5fff  com.apple.audio.units.Components (1.10 - 1.10) <F74A9407-DDB5-3C4F-A051-47643871ED93> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x10fe90000 -        0x10ff81ff7  com.apple.mobiledevice (710.5 - 710.5) <C250816A-3B97-329D-9F6B-38DACA981CED> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x1100ec000 -        0x1102e2fff  com.apple.audio.codecs.Components (4.0 - 4.0) <604485EE-4446-308F-9460-0A6CE9C2D98C> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x110df9000 -        0x110e0dfff  com.apple.MediaLibrary (1.0.3 - 637.9) <AA0C8F36-2D7A-3F58-8DE8-458F694C88E8> /System/Library/Frameworks/MediaLibrary.framework/MediaLibrary
           0x110e6c000 -        0x110e6cfec +cl_kernels (???) <C77A9681-EB9F-4F8B-B214-030F132BD8AA> cl_kernels
           0x110e72000 -        0x110e73fe4 +cl_kernels (???) <ED582A63-5B0A-4730-A28A-B3865A0180EB> cl_kernels
           0x110e84000 -        0x110e85fee +cl_kernels (???) <D03328CE-DD6B-4120-B507-110534DB6BD4> cl_kernels
           0x110e8a000 -        0x110e8aff3 +cl_kernels (???) <80D86A6F-CE50-42A2-87A8-51CA7104F3AB> cl_kernels
           0x110e97000 -        0x110e98fe3 +cl_kernels (???) <50DC0DAD-4AF4-431F-A908-E643B120DCA2> cl_kernels
           0x110f60000 -        0x110f88ffb  libRIP.A.dylib (599.25.10.1) <623091DF-5769-3326-90EB-44EFC8087660> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x1145e7000 -        0x1145f1ff7  AppleIntelSNBVA (8.24.15) <36C13F8E-0A77-3921-811D-D117FE75074E> /System/Library/Extensions/AppleIntelSNBVA.bundle/Contents/MacOS/AppleIntelSNBV A
           0x117460000 -        0x11746bfff  libGPUSupport.dylib (9.6.1) <23B64473-59E7-3AC2-B8C0-CFCFDDF3F8A3> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x1186a2000 -        0x118823fff  com.apple.AirTrafficHost (351.6 - 351.6) <64B45992-C1BA-35B5-9158-732748DF6B5D> /System/Library/PrivateFrameworks/AirTrafficHost.framework/AirTrafficHost
           0x1195b6000 -        0x11969cfef  unorm8_bgra.dylib (2.3.58) <280D6FDD-8CA5-36EC-9EA1-D7DC09598E20> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x119e10000 -        0x119ebdff7  com.apple.AppleGVAFramework (7.1.18 - 7.1.18) <46F2368C-5955-3423-BEF4-1D6B06A849F2> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
           0x119ed0000 -        0x119fccfff  com.apple.AppleIntelHD3000GraphicsVADriver (8.24.15 - 8.2.4) <622896FD-98D1-3ECA-AA7F-9BBA92A76FDB> /System/Library/Extensions/AppleIntelHD3000GraphicsVADriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsVADriver
           0x11a00d000 -        0x11a28afff  com.apple.CoreKE (1.7.0 - 1.7.0) <596CAF69-A1EA-33D6-9D2E-805DA761D3D8> /System/Library/PrivateFrameworks/CoreKE.framework/CoreKE
        0x123400000000 -     0x12340034dff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.24.15 - 8.2.4) <1D246FBA-B34D-3B45-BDBE-F7CC6B6DEF2D> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
        0x7fff630b2000 -     0x7fff630e5817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
        0x7fff8d41a000 -     0x7fff8d508fff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8d567000 -     0x7fff8d594ff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8d595000 -     0x7fff8d5e1ffe  com.apple.CoreMediaIO (408.0 - 4570) <72371044-3FF2-3538-8EE1-C7C20F7C60A0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8d5e2000 -     0x7fff8d5e7ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8d832000 -     0x7fff8d877fff  libcurl.4.dylib (78.94.1) <88F27F9B-052E-3375-938D-2603E90D8AD5> /usr/lib/libcurl.4.dylib
        0x7fff8d878000 -     0x7fff8d93cff7  com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8d93d000 -     0x7fff8d943ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8d944000 -     0x7fff8dd77ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8dd78000 -     0x7fff8ddd7fff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <1F17FA12-6E84-309D-9808-C536D445FA6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8ddee000 -     0x7fff8de07ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8de08000 -     0x7fff8e0b2ff5  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
        0x7fff8e0b3000 -     0x7fff8e0b5fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8e0e7000 -     0x7fff8e3bbfc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8e3bc000 -     0x7fff8e402fff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8e403000 -     0x7fff8e405fff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8e406000 -     0x7fff8e410ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8e411000 -     0x7fff8e415ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
        0x7fff8e416000 -     0x7fff8e416fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8e417000 -     0x7fff8e440ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff8e441000 -     0x7fff8e494fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8e4e8000 -     0x7fff8e570ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8e571000 -     0x7fff8e572ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8e80e000 -     0x7fff8eb85ff6  com.apple.JavaScriptCore (9537 - 9537.77.1) <F588191A-25E6-31AC-A325-B7779DC6D1EC> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8eb86000 -     0x7fff8ebaaff7  libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8ebc3000 -     0x7fff8ec14ff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8f575000 -     0x7fff8f65cff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff8f65d000 -     0x7fff8f679ff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8f70b000 -     0x7fff8f796ff7  com.apple.SoftwareUpdate.framework (6 - 574.6) <A83587ED-67AE-3FB0-9494-6EAEFEF4B17D> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff8f797000 -     0x7fff8f79effb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
        0x7fff8f7ac000 -     0x7fff8f7d1ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8f842000 -     0x7fff8f843ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8f844000 -     0x7fff8f915fff  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
        0x7fff8f916000 -     0x7fff8f964fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8f965000 -     0x7fff8f96dfff  libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8f96e000 -     0x7fff8f978ff7  libcsfde.dylib (380) <A5CF6F85-0537-399F-968B-1536B1235E65> /usr/lib/libcsfde.dylib
        0x7fff8f979000 -     0x7fff8f97bff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8f97c000 -     0x7fff8fd53fef  com.apple.CoreAUC (6.25.00 - 6.25.00) <2D7DC96C-BA83-3220-A03F-C790D50A23D8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8fd7b000 -     0x7fff8fd7fff7  com.apple.ServerInformation (2.1.1 - 1) <7FAF2B82-FE90-3398-98D8-0F84C6FE6A4A> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff8fd80000 -     0x7fff8fd83fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8fd84000 -     0x7fff8fd92fff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8fe64000 -     0x7fff8fedbfff  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
        0x7fff8fedc000 -     0x7fff8fedffff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8fef3000 -     0x7fff8ff00ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8ff01000 -     0x7fff8ff19ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8ff1a000 -     0x7fff8ff1cfff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8ff1d000 -     0x7fff8ff1dfff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8ff1e000 -     0x7fff8ff29ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <B62B1994-1874-3F8D-B62E-589E6F6534C9> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8ff8d000 -     0x7fff8ff94ff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
        0x7fff8ff95000 -     0x7fff908b532b  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <EC14B831-96BB-3A50-A451-E36BDC8F59FB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff908b6000 -     0x7fff908ddffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff908de000 -     0x7fff908e6ffc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff908e7000 -     0x7fff908f0ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff908f1000 -     0x7fff908f4ffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff908f7000 -     0x7fff90921ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff90922000 -     0x7fff909bdff7  com.apple.PDFKit (2.9.2 - 2.9.2) <0CDC6467-9227-3D98-B4D4-660796AE9F6B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff909be000 -     0x7fff909bfff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff909c0000 -     0x7fff90b5cff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff90b5d000 -     0x7fff90b63fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff90b64000 -     0x7fff90b64fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff90b67000 -     0x7fff90bf2fff  libCoreStorage.dylib (380) <DE9B3F8C-045C-3010-9A25-C8CD72F1066B> /usr/lib/libCoreStorage.dylib
        0x7fff90bf3000 -     0x7fff90c2cff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff90c2d000 -     0x7fff90cb6ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff90cb7000 -     0x7fff90cbafff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff90cbb000 -     0x7fff90f44fff  com.apple.CommerceKit (1.2.0 - 232.11) <976C534B-C0F3-3C01-AB3D-E81B2EE9ADB1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff90f45000 -     0x7fff90f4effd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff90f4f000 -     0x7fff90f56fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff90f57000 -     0x7fff90fa9fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff90fdc000 -     0x7fff90feefff  com.apple.login (3.0 - 3.0) <8342C3B7-8363-36BE-B5B6-CD81166AEC24> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff9105a000 -     0x7fff9106bff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff9106c000 -     0x7fff9107bff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff9107c000 -     0x7fff91182ff7  com.apple.ImageIO.framework (3.3.0 - 1043) <C4ADE5B1-A540-34E1-A043-118185489C9D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff91239000 -     0x7fff9125dfff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff9125e000 -     0x7fff91267ff7  libcldcpuengine.dylib (2.3.58) <E3A84FEC-4060-39C2-A469-159A443D2B6D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff91268000 -     0x7fff91ddeff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff91ddf000 -     0x7fff91de8fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff91df1000 -     0x7fff91f32fff  com.apple.QTKit (7.7.3 - 2826.19) <E634E6EC-2C7A-3F86-997B-CFC5D9F89E6B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff91f33000 -     0x7fff920d3ff7  GLEngine (9.6.1) <28300FBD-E3B2-35D2-BB54-77DCE62FC371> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff920d4000 -     0x7fff9212dfff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff9212e000 -     0x7fff92177fff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff92178000 -     0x7fff92193fff  com.apple.DistributionKit (700 - 846) <E4562C9C-9367-3C8E-87C2-80C6C0C7B187> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff92194000 -     0x7fff92194fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff92195000 -     0x7fff92199ff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff9219a000 -     0x7fff921d8ff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff921d9000 -     0x7fff92433ff9  com.apple.security (7.0 - 55471.14.8) <EA03E140-2509-3A07-8440-2DC97C0D478B> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff92434000 -     0x7fff92435fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff92436000 -     0x7fff9244dfff  com.apple.PackageKit.PackageUIKit (3.0 - 332) <419D2A01-3A7A-3EB4-B4E5-55DEEB786572> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
        0x7fff9244e000 -     0x7fff925a2ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff925a3000 -     0x7fff925aefff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff925af000 -     0x7fff925c8ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff92604000 -     0x7fff9263cff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff9263d000 -     0x7fff926a3fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff926a4000 -     0x7fff926bfff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff926c0000 -     0x7fff92878ffb  libicucore.A.dylib (511.34) <616A65D6-3F20-3EAB-8CA8-273AD890261C> /usr/lib/libicucore.A.dylib
        0x7fff92879000 -     0x7fff928e0ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff9295d000 -     0x7fff929e9ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff929ea000 -     0x7fff929ebfff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff929ec000 -     0x7fff929eefff  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
        0x7fff929ef000 -     0x7fff92a3cff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff92a3d000 -     0x7fff92a4dffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff92a4e000 -     0x7fff92a7dfd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff92ac4000 -     0x7fff92acbff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff92b27000 -     0x7fff92b27fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff92bbb000 -     0x7fff92bd2ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff93323000 -     0x7fff93334ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff93335000 -     0x7fff9333dff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff9333e000 -     0x7fff93340fff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff93341000 -     0x7fff93425fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff9342c000 -     0x7fff9350bfff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3E

    When you have the problem, note the exact time: hour, minute, second.   
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    ☞ Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above. Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first. Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Mail.app hangs about 5 minutes after launch

    mail.app has suddenly started "hanging" at about 5 minutes after its launched. It becomes unusable and I have to force quit.
    I've not had a problem with the app previously.
    I'm not aware that I've made any updates in recent weeks that would have effected mail.app.
    The console is giving messages of the following type
    ...mmap(size...) failed (error code 12
    * error can't allocate a region
    * set a breakpoint in mallocerrorbreak to debug
    This repeated 4 times.
    I've done the basics to see if it would effect the problem:
    Logged out and in.
    repaired permissions
    But to no effect.
    I'd appreciate any pointers on what to do to solve the problem.
    Thanks.
    Using mail 3.6 running under 10.5.8

    I'm having the same issue. It started in early Sept 2010. Mail now slows and the freezes and the crashes about 5 mins after I start it. It does this several times a day. I disables the 2 Mail add on I had (InDev Maill Act On and Daylite Mail Integration from MarketCircle) and it's still happening.
    My logs from today are:
    25/09/10 8:30:53 AM Mail[5298] Mail(5298,0xb0438000) malloc: * mmap(size=2097152) failed (error code=12)
    * error: can't allocate region
    * set a breakpoint in mallocerrorbreak to debug
    25/09/10 8:30:53 AM Mail[5298] Mail(5298,0xb0438000) malloc: * mmap(size=2097152) failed (error code=12)
    * error: can't allocate region
    * set a breakpoint in mallocerrorbreak to debug
    25/09/10 8:30:53 AM [0x0-0xbe0be].com.apple.mail[5298] Mail(5298,0xb0438000) malloc: * mmap(size=2097152) failed (error code=12)
    25/09/10 8:30:53 AM [0x0-0xbe0be].com.apple.mail[5298] * error: can't allocate region
    25/09/10 8:30:53 AM [0x0-0xbe0be].com.apple.mail[5298] * set a breakpoint in mallocerrorbreak to debug
    25/09/10 8:30:53 AM [0x0-0xbe0be].com.apple.mail[5298] Mail(5298,0xb0438000) malloc: * mmap(size=2097152) failed (error code=12)
    25/09/10 8:30:53 AM [0x0-0xbe0be].com.apple.mail[5298] * error: can't allocate region
    25/09/10 8:30:53 AM [0x0-0xbe0be].com.apple.mail[5298] * set a breakpoint in mallocerrorbreak to debug
    25/09/10 8:35:41 AM Mail[5871] no subject setSearchField: new item (how did this happen?)
    25/09/10 10:56:07 AM Mail[5871] Mail(5871,0xb0f80000) malloc: * mmap(size=2097152) failed (error code=12)
    * error: can't allocate region
    * set a breakpoint in mallocerrorbreak to debug
    25/09/10 10:56:07 AM Mail[5871] Mail(5871,0xb0f80000) malloc: * mmap(size=2097152) failed (error code=12)
    * error: can't allocate region
    * set a breakpoint in mallocerrorbreak to debug
    25/09/10 10:56:07 AM Mail[5871] Mail(5871,0xb0f80000) malloc: * mmap(size=2097152) failed (error code=12)
    * error: can't allocate region
    * set a breakpoint in mallocerrorbreak to debug
    25/09/10 10:56:07 AM Mail[5871] Mail(5871,0xb0f80000) malloc: * mmap(size=2097152) failed (error code=12)
    * error: can't allocate region
    * set a breakpoint in mallocerrorbreak to debug
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] Mail(5871,0xb0f80000) malloc: * mmap(size=2097152) failed (error code=12)
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] * error: can't allocate region
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] * set a breakpoint in mallocerrorbreak to debug
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] Mail(5871,0xb0f80000) malloc: * mmap(size=2097152) failed (error code=12)
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] * error: can't allocate region
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] * set a breakpoint in mallocerrorbreak to debug
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] Mail(5871,0xb0f80000) malloc: * mmap(size=2097152) failed (error code=12)
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] * error: can't allocate region
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] * set a breakpoint in mallocerrorbreak to debug
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] Mail(5871,0xb0f80000) malloc: * mmap(size=2097152) failed (error code=12)
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] * error: can't allocate region
    25/09/10 10:56:07 AM [0x0-0xe80e8].com.apple.mail[5871] * set a breakpoint in mallocerrorbreak to debug

  • Periodic Background Jobs after another Job finishes

    Hi
    I have to schedule a job 'B' to run after job 'A' finishes.
    When i schedule job 'B' to run after job A , it runs only once , while i need the job B to run periodically after job A finishes.
    1) I cannt make job B as step 2 of job A , because job A is not scheduled by me and i cannt change that.
    Can anyone tell me how to i trigger the job B periodicaly after job A finishes .
    Any solution or hint would be appreciated.
    Looking forward to some helpful replies from the gurus of SAP.
    Regards
    Purva

    Dear Team,
    Job ES_RPTMC_CREATE_CHANGEPOINT_AUTH  ran only once where as SEC:INDX_UPDATE_FOR_STRUCT_AUTHS ran daily.
    CAUSE:
    “The start condition "Start after job" is internally mapped by means of "Start after event SAP_END_OF_JOB with the parameter <Jobname><Jobcount> of the predecessor". The pair <Jobname><Jobcount> is the unique key for a job.
    If a job is executed periodically, the SAP_END_OF_JOB event is always triggered with different parameters.
    The successor in turn waits for SAP_END_OF_JOB with just one particular parameter (this is the parameter with <Jobname><Jobcount> from the first predecessor). When the successor is rescheduled, the key fields from the next predecessor must therefore always be known in advance, something which is not always technically possible.”
    SOLUTION:
    This task can be completed with the new ABAP program Program  BTC_EVENT_RAISE.
    The program is delivered by Support Package for Basis Releases 640 and 700, and is included in the standard system in all subsequent releases.
    The program is used to trigger a batch event. Existing programs do not therefore have to be changed. The BTC_EVENT_RAISE program has several parameters in the selection screen, including the event (and parameters) that is to be triggered.
    PROCESS:
     Go To SM64
     Click on Create
     Create two events.
    Our Case:
    We created Z_ES_CP_AUTH and Z_SEC_AUTHS
     Go to SE38
     Give the event name as BTC_EVENT_RAISE
     Select Variants and click on Display
     Give the variant name as the one you created.
    Our Case:
    Z_ES_CP_AUTH
     Click on Create
     Give in the details for variants
     Click on attributes and give the details for attributes
     Go to the job which needs to be run first
    • Select the job in released status
    • Job->Change
    • Step
    • Add BTC_EVENT_RAISE as the last step of the job with the parameter as the variant created
    Our Case:
    Step: BTC_EVENT_RAISE, Parameter: Z_ES_CP_AUTH
     Go to the job which needs to be run next
    • Select the job in released status
    • Job->Change
    • Start Condition -> After Event.
    • Give the BTC_EVENT_RAISE parameter of the first job as the event of the second job.
    Our Case:
    After Event: Z_ES_CP_AUTH
     Save the changes.
     The jobs will start running one after the other with the given frequency.
    Thanks
    Joginadham U

  • Schedule job with dependencies in another job

    Hi All,
             I Have a job in sm36 schedule but I want to create a new job and will be started after my first job,
       for exemple : I have a job Test1 started in 30 and 30 minutes and I create a new job test2 that this job has to executable after the job test1, I can to do this but my slave job only executable one time, I need that this job stay continued always after job test1 and don't finish.
    Thank for Help.
    Regards,
    Osvaldo Antonio dos Santos

    Hi,
    I am afraid your reqmt may not be possible.
    You can very well run one job after another job by maintaining the After event parameters in SM36. However you cannot enable a job run for ever. Once there is no input meeting the selection criteria, teh job will finish.
    Instead of thinking of enabling the job for ever, you can maintain the jobtest2 as after event of jobtest1.
    After that you can create jobtest3 using the same variant of jobtest2 and schedule it to run once in 15 min or 30min or so.
    Hope this helps you
    Pls reward if it is of some help to you

  • When I try and open Microsoft Word 2011 documents they start opening one after another at a rapid speed and I can't stop it. I reboot and same thing happens?

    When I try and open Microsoft Word 2011 documents on my  IMAC they start opening one after another at a rapid speed and I can't stop it. I reboot and same thing happens. The documents open in rapid succession on their own and don't stop until I force close or after maybe 100 or more open I start getting the following message for each document attemting to open "This document could not be registered. It will not be possible to create links from other documents to this document" and then in paretheses the name of the document. After I click okay another trys to open. Any suggestions?

    If you had multiple documents open and quit the app without closing all of the docs first, it will open them again when you launch the app. Open Word, and then close all the documents, you may be asked to save the document, if the document was already saved but you made changes to it before you quit the app, you may need to save the changes first, shorcut ( command and s keys). After you close all of the documents then quit the app and restart the computer. See if this works.

  • I created a playlist with 100 songs.  I want those 100 songs played using the shuffle option.  This no longer works in iTunes version 11.1.5.5  How can I get an entire  playlist to paly one song after another by using the switch option?

    I created a playlist with 100 songs.  I want those 100 songs played using the shuffle option.  This no longer works in iTunes version 11.1.5.5  How can I get an entire  playlist to paly one song after another by using the switch option?

    You're welcome.
    Going back to your original post:
    5) Tried running Itunes in 'safe mode', running itunes as an administrator..nothing.
    Was that iTunes' safe mode as opposed to Windows' safe mode? iTunes safe mode is invoked by holding down CTRL+SHIFT immediately after clicking the icon to launch iTunes and continuing to hold until this message pops up:
    Click continue, then close iTunes and reopen. With luck iTunes now opens normally every time.
    tt2

  • My Mac is not authorized to play a video 5 minutes after it was purchased

    I just "purchased" a free video at the iTunes Store. A few minutes after the download finished, I attempted to play the video as was greeted with an Authorize Computer dialog reporting "This computer is not authorized to play 'title of the video'. Would you like to authorize it?"
    I have been playing music, videos and TV shows on this Mac since it was new in September 2007, and my iTunes Purchased list goes back to 2004.
    I've investigated further and found ...
    1. Recent music purchases play fine, probably because they have no DRM.
    2. Recent TV shows get the authorization block.
    3. Older music purchases get the authorization block.
    4. iTunes on my iBook gets no authorization block.
    This is the first time I've seen this authorization warning.
    iTunes' Apple Account Information reports "3 machines are authorized to play content purchased with this account." Although there's no way to see the identify of those 3 machines, I quite sure they're my desktop Mac (now getting authorization blocks), my iBook, and my wife's Mac.
    Before I take the easy way out and reauthorize my desktop Mac (and possibly lose one of my five authorizations), I'd like to know more about what happened.
    Could this be the result of upgrading from Mac OS X 10.5.6 to 10.5.7 four days ago?
    -- Ward

    Macaroni does a nightly Repair Permissions. I had restarted a couple of times since upgrading to 10.5.7; I did another for good measure. My Mac remained unauthorized.
    I took Mike's advice and deauthorized my Mac. As I expected, that dropped my Apple Account Computer Authorizations from 3 to 2. Reauthorizing restored my ability to play protected music and videos.
    Although my problem has been resolved, I'm leaving this topic as unanswered because it remains a mystery why my Mac was in authorization limbo.

  • Displaying images in canvas one after another

    Hi all,
    I have a problem displaying images in canvas one after another. I am using for loop and when i run the application, all images run back in the and only finally only the last image gets displayed in the emulator. I also used thread.sleep(). But it din't work.
    Here is my code:
    // A canvas that illustrates image drawing
    class DrawImageCanvas extends Canvas
    Image image;
    public void paint(Graphics g)
    int width = getWidth();
    int height = getHeight();
    g.setColor(0);
    g.fillRect(0, 0, width, height);
    String images[]={"paint_2.PNG","radha.PNG","cute.png","design.png","flowers.png"};
    for(int i=0;i<images.length;i++)
    image = null;
    System.out.println("/"+images);
         try
         image = Image.createImage("/"+images[i]);
    catch (IOException ex)
    System.out.println(ex);
    g.setColor(0xffffff);
    g.drawString("Failed to load image!", 0, 0, Graphics.TOP | Graphics.LEFT);
    return;
    if (image != null)
    g.drawImage(image, width/2, height/2, Graphics.VCENTER | Graphics.HCENTER);
    try
    Thread.sleep(5000);
    catch(Exception ex)
         System.out.println("the exception is.."+ex);
    Help me and Thanks in advance.

    See the code below : prefer the use of a Timer and a TimerTask instead of Thread.sleep().
    showNotify (from Canvas) is used to launch the timer.
    import java.io.IOException;
    import java.util.Timer;
    import java.util.TimerTask;
    import javax.microedition.lcdui.Canvas;
    import javax.microedition.lcdui.Graphics;
    import javax.microedition.lcdui.Image;
    public class DrawImage extends Canvas {
        Image image;
        String images[] = {"img1.png", "img2.png", "img3.png", "img4.png", "img5.png",
                            "img6.png", "img7.png"};
        Image[] tabImage;
        int imageCounter = 0;
        public DrawImage(){
            try {
                tabImage = new Image[images.length];
                for (int i = 0; i < images.length; i++)
                    tabImage[i] = Image.createImage("/" + images);
    } catch (IOException ex) {
    ex.printStackTrace();
    public void paint(Graphics g) {
    int width = getWidth();
    int height = getHeight();
    g.setColor(0);
    g.fillRect(0, 0, width, height);
    image = tabImage[imageCounter];
    if (image != null)
    g.drawImage(image, width / 2, height / 2, Graphics.VCENTER | Graphics.HCENTER);
    else{
    System.out.println("null");
    g.setColor(0xffffff);
    g.drawString("Failed to load image!", 0, 0, Graphics.TOP | Graphics.LEFT);
    protected void showNotify(){
    Timer t = new Timer();
    t.schedule(new PhotoSwitcher(), 5000, 5000);
    private class PhotoSwitcher extends TimerTask{
    public void run() {
    if (imageCounter < images.length - 1)
    imageCounter++;
    else
    imageCounter = 0;
    repaint();
    I hope this will help you !
    fetchy.
    Edited by: fetchy on 14 ao�t 2008 09:48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Several minutes after it puts display to sleep, network get disconnected.

    Several minutes after it puts display to sleep, network get disconnected.
    I am sure that it get disconnected because I check the router traffic from another MAC and it get disconnected.
    No mother if its connected by cable or wifi, it get disconnected.
    In Energy Saver properties "Computer sleep" is set to "Never" and "Display sleep" is set in "10 minutes".
    "Wake for network access" is checked but it will never work if network get disconnected.
    "Automatically reduce brightness before display goes to sleep" is checked
    All the other options are NOT checked.
    I hope someone from this community can help me with this issue.

    try resetting PRAM
    http://docs.info.apple.com/article.html?artnum=2238
    and SMC
    http://docs.info.apple.com/article.html?artnum=303319

Maybe you are looking for