Job SAP_COLLECTOR_FOR_PERFMONITOR keep on running

Dear All,
I am facing problem in prd ,we have 2 active node the job SAP_COLLECTOR_FOR_PERFMONITOR keep on running eg   44,21sec,tan I have to cancel it manual this is suddenly. this happened with not all the  hourly jobs ,but  only 1 or 2 time in a day a any time.
Please find the below . Please suggest how to solved it
We are using ECC6 on oracle 10g
25     BGD     1696     Running          Yes     4               2     SWNCTOTAL     000     DDIC     Insert     SWNCMONI
Sm37 log
Job started
Step 001 started (program RSCOLL00, variant , user ID DDIC)
Clean_Plan:Cleanup of DB13 Plannings
Clean_Plan:started by RSDBPREV                       on server nodea
Clean_Plan:Cleaning up jobs of system PRD
Clean_Plan:finished
Database destination not found
Cannot determine operating system data for database
kind regards,
kumar

Dear Sunny
Thanks for you suggestion , no it happened any time and there is sufficient no of background process  are free
I have see it stuck in table SWNCMONI while  Insert ans i have checked the snote .Please suggest
sm21 log
Time     Type Nr  Clt User        TCode Priority Grp N Text
04:51:46 DIA  001 100 BASIS               AB  0 Run-time error "TIME_OUT" occurred
04:51:46 DIA  001 100 BASIS               AB  1 > Short dump "101021 045146 clusa " generated
04:51:46 DIA  001 100 BASIS               D0  1 Transaction Canceled SY 002 ( Time limit exceeded. )
05:01:04 RD                                      Q0  I Operating system call connect failed (error no. 10061)
05:01:45 RD                                      Q0  I Operating system call connect failed (error no. 10060)
05:01:45 DIA  000 100 BASIS               R4  9 Communication error, CPIC return code 017, SAP return code 236
05:01:45 DIA  000 100 BASIS               R6  4 > CPI-C function: CMINIT(SAP)
05:20:11 RD                                      Q0  I Operating system call connect failed (error no. 10060)
05:20:11 DIA  001 100 BASIS               R4  9 Communication error, CPIC return code 017, SAP return code 236
05:20:11 DIA  001 100 BASIS               R6  4 > CPI-C function: CMINIT(SAP)
05:20:24 RD                                      Q0  I Operating system call connect failed (error no. 10061)
05:21:18 RD                                      Q0  I Operating system call connect failed (error no. 10060)
05:21:18 DIA  001 100 BASIS               R4  9 Communication error, CPIC return code 017, SAP return code 236
05:21:18 DIA  001 100 BASIS               R6  4 > CPI-C function: CMINIT(SAP)
05:22:56 RD                                      Q0  I Operating system call recv failed (error no. 10054)
08:46:50 BTC  025 000 DDIC                       BY  4 Database error 24909 at UPD access to table TST01
08:46:50 BTC  025 000 DDIC                       F6  H Database error: TemSe->XRTAB(3)->1 for table TST01 key
08:46:56 RD                                      Q0  I Operating system call recv failed (error no. 10054)
08:47:11 BTC  025 000 DDIC                       F3  T Invalid object name for TemSe object: " "
08:47:13 BTC  025 000 DDIC                       EC  F Failed to create log for job SAP_COLLECTOR_FOR_PERFMONITOR 19301600 %NEWSTEP/
08:47:13 BTC  025 000 DDIC                       F2  0 Calling program reports invalid handle for TemSe object (magic==X'NULL-ptr')
08:47:13 BTC  025 000 DDIC                       R4  7 Delete session 001 after error 023
09:38:51 DP                                      Q0  I Operating system call recv failed (error no. 10054)
09:38:51 DP                                      Q0  4 Connection to user 9850 ( ), terminal 90 (233 ) lost
10:00:24 RD                                      Q0  I Operating system call recv failed (error no. 10054)
10:00:24 RD                                      S2  3 Connection to CPI-C client 101 was closed
10:00:24 DIA  001 100 PORTAL                R4  9 Communication error, CPIC return code 020, SAP return code 223
10:00:24 DIA  001 100 PORTAL                R5  A > Conversation ID: 909935
10:00:24 DIA  001 100 PORTAL                R6  4 > CPI-C function: CMSEND(SAP)
10:26:36 DP                                      Q0  I Operating system call recv failed (error no. 10
and just now the sm37 log is different
Job started
Step 001 started (program RSCOLL00, variant , user ID DDIC)
Clean_Plan:Cleanup of DB13 Plannings
Clean_Plan:started by RSDBPREV                       on server
Clean_Plan:Cleaning up jobs of system PRD
Clean_Plan:finished
Database destination not found
Cannot determine operating system data for database
Buffer statistics for clusa transferred to MONI
Please suggest
Kind Regards,
Kumar
Edited by: kumar9 on Oct 21, 2010 12:30 PM
Edited by: kumar9 on Oct 21, 2010 2:37 PM

Similar Messages

  • Remote Jobs just keeps in running, but no results

    Hi All,
    I am new to oracle scheduler.
    I have been able to create and run local jobs.
    As of now I am trying to study and test running remote jobs.
    I have already installed,configured and started the remote scheduler agent .
    I have created a credential in my db.
    BEGIN
        sys.dbms_scheduler.create_credential(
            username => 'orasrv11',
            password => 'oracle123',
            credential_name => '"SCHEDULER"."apps"'
    END;
    this is my create job.
    BEGIN
        DBMS_SCHEDULER.CREATE_JOB (
                job_name => '"SCHEDULER"."test"',
                job_type => 'EXECUTABLE',
                job_action => '/home/orasrv11/scripts/test.sh',
                number_of_arguments => 0,
                start_date => TO_TIMESTAMP_TZ('2015-04-28 09:19:32.000000000 ASIA/MANILA','YYYY-MM-DD HH24:MI:SS.FF TZR'),
                repeat_interval => NULL,
                end_date => NULL,
                enabled => FALSE,
                    credential_name => '"SCHEDULER"."apps"',
                    destination_name => '"192"."168"."18"."237"',
                auto_drop => FALSE,
                comments => '');
        DBMS_SCHEDULER.SET_ATTRIBUTE(
                 name => '"SCHEDULER"."test"',
                 attribute => 'logging_level', value => DBMS_SCHEDULER.LOGGING_OFF);
    END;
    Can you guys help/teach me what is wrong?
    Also if there is anything else I can provide so that you guys can help me
    Thanks,
    Hans Yu

    Hi GregV,
    I have also stopped the job by stopping the remote agent then stopping the job as it has already been running for a long time.
    I will run it again.
    Thanks for the advise, I will rewrite my other jobs removing double quotes.
    Please see below query result.
    select * from user_SCHEDULER_RUNNING_JOBS;
    JOB_NAME                  
    JOB_SUBNAME               
    JOB_STYLE   DETACHED SESSION_ID SLAVE_PROCESS_ID SLAVE_OS_PROCESS_ID RUNNING_INSTANCE RESOURCE_CONSUMER_GROUP     
    ELAPSED_TIME CPU_USED
    DESTINATION_OWNER                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
    DESTINATION                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
    CREDENTIAL_OWNER          
    CREDENTIAL_NAME               
    LOG_ID
    TEST                                        
    REGULAR
    FALSE                                                                                                 
    0 0:0:33.466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
    192.168.18.238:1500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
    SCHEDULER             
    apps                   
    6805
    906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • SAP job SAP_COLLECTOR_FOR_PERFMONITOR getting failed  with abap dump LOAD_PROGRAM_NOT_FOUND

    Dear Experts,
    Background job SAP_COLLECTOR_FOR_PERFMONITOR getting failed  with abap dump LOAD_PROGRAM_NOT_FOUND.
    As it is hourly scheduled job and it gets finished 22 times in a day but other 2 times fails with abap dump.
    Finished Job log
    Job started
    Step 001 started (program RSCOLL00, variant , user ID Bharath)
    Clean_Plan:Cleanup of DB13 Plannings
    Clean_Plan:started by RSDBPREV                       on server
    Clean_Plan:Cleaning up jobs of system DEV
    Clean_Plan:finished
    Job finished
    Failed Job Log
    Job started
    Step 001 started (program RSCOLL00, variant , user ID Bharath)
    Internal session terminated with a runtime error (see ST22).
    Kindly suggest on this..
    Thanks,
    Bharath.

    Dear Divyanshu,
    Our system in ERP 6.0 EHP5 with SP level 10. The ABAP Dump shows below error.
    |Short text                                                                                        |
    |    Program "RSORA811" not found.                                                                 |
    |What happened?                                                                                    |
    |    There are several possibilities:                                                              |
    |                                                                                                  |
    |    Error in the ABAP Application Program                                                         |
    |                                                                                                  |
    |    The current ABAP program "RSCOLL00" had to be terminated because it has                       |
    |    come across a statement that unfortunately cannot be executed.                                |
    |    or                                                                                            |
    |    Error in the SAP kernel.                                                                      |
    |                                                                                                  |
    |    The current ABAP "RSCOLL00" program had to be terminated because the                          |
    |    ABAP processor detected an internal system error.                                             |
    |What can you do?                                                                                  |
    |    Note down which actions and inputs caused the error.                                          |
    |                                                                                                  |
    |                                                                                                  |
    |    To process the problem further, contact you SAP system                                        |
    |    administrator.                                                                                |
    |                                                                                                  |
    |    Using Transaction ST22 for ABAP Dump Analysis, you can look                                   |
    |    at and manage termination messages, and you can also                                          |
    |    keep them for a long time.                                                                    |
    |Error analysis                                                                                    |
    |    On account of a branch in the program                                                         |
    |    (CALL FUNCTION/DIALOG, external PERFORM, SUBMIT)                                              |
    |    or a transaction call, another ABAP/4 program                                                 |
    |    is to be loaded, namely "RSORA811".                                                           |
    |                                                                                                  |
    |    However, program "RSORA811" does not exist in the library.                                    |
    |                                                                                                  |
    |    Possible reasons:                                                                             |
    |    a) Wrong program name specified in an external PERFORM or                                     |
    |       SUBMIT or, when defining a new transaction, a new                                          |
    |       dialog module or a new function module.                                                    |
    |    b) Transport error                                                                            |
    |Information on where terminated                                                                   |
    |    Termination occurred in the ABAP program "RSCOLL00" - in                                      |
    |     "LOOP_AT_SYSTEMS_AND_REPORTS".                                                               |
    |    The main program was "RSCOLL00 ".                                                             |
    |                                                                                                  |
    |    In the source code you have the termination point in line 535                                 |
    |    of the (Include) program "RSCOLL00".                                                          |
    |    The program "RSCOLL00" was started as a background job.                                       |
    |    Job Name....... "SAP_COLLECTOR_FOR_PERFMONITOR"                                               |
    |    Job Initiator.. " bharath"                                                                       |
    |    Job Number..... 18243400
    Kindly check and suggest..
    Thanks,
    Bharath.

  • Solution Manager 7.1 SP04 - Job SAP_COLLECTOR_FOR_PERFMONITOR

    Dear Experts
    I got an issue with some differences between what SolMan Setup did and SAP Note 966309 for TCOLL in SAP_BASIS 700 - 702 sais.
    SolMan Setup creates the job SAP_COLLECTOR_FOR_PERFMONITOR with the following step in working client 001:
    1  RSCOLL00             ABAP                             SOLMAN_BTC EN
    According to SAP Note 966309, this job is supposed to run as user DDIC (or any other with same rights) in client 000. On top, there are a lot of differences between SAP Note 966309 and the content of TCOLL.
    Would you change TCOLL according to this SAP Note or would you hang on what SolMan Setup did?
    Thanks for short answer.
    Regards, Michael

    Michael,
    This note is clear regarding the client and user:Note 16083 - Standard jobs, reorganization jobs
    and this note is release independent.
    If you check using RTCCTOOL you'll be able to see a recommendation regarding TCOLL:
    7. [Note 12103  ]    Collectors and TCOLL
    Description     Planning table TCOLL for SAP workload collectors for 700 (note 966309  )
    Implementation  Press the lights icon to get the detailed check log.
                    Add missing entries to table TCOLL using ST03N > Expert Mode > Collector
                    and Performance DB > Performance Monitor Collector > Execution Times.
                    Schedule RSCOLL00 as an hourly batch job if not scheduled.
    "schedule standard jobs" steps is required if the jobs are not scheduled already:
    http://wiki.sdn.sap.com/wiki/display/SMSETUP/Basic+Configuration
    "In the activities schedule Background jobs and standard jobs different jobs are scheduled. The Background job that are scheduled are jobs for the housekeeping of SAP Solution Manager. The standard jobs are the same jobs as the jobs scheduled in transaction SM36 --> u201EStandard Jobs" and schedules jobs for general SAP housekeeping. Please make sure that the jobs are not already scheduled in SM36 before executing this activity. "
    Cheers,
    Diego.

  • Job    SAP_COLLECTOR_FOR_PERFMONITOR getting delay.

    Hi Friends,
    In one of my customer system, the job    SAP_COLLECTOR_FOR_PERFMONITOR is getting delay on particular time.
    Normally every hour it is getting finished with 5 to 40 secs.
    But at a particular the job starts at  i.e. 02:26am is finishing successfully but taking much time. It's nearly taking 37,000 secs.
    Job log:
    Job started
    Step 001 started (program RSCOLL00, variant , user ID DDIC)
    Job finished
    My system details are:
    Comp version :BBPCRM 4.0
    Database system: ORACLE , 10.2.0.4.0.
    Kernel release :   640
    SAP_BASIS:SAPKB62063
    I can submit if any information required. Earlier solution is much aspirated.
    Regards
    Sudhakar

    Sorry Guys I was not well to answer your replies.
    Thanks for your replies.
    Still the issues persists. Here are some more information which would help you to help me.
    I have checked BTC are available.
    In SM51 one BTC is running for long time for this with a entry of u201CSAPLSTUW   000 DDICu201D
    & Daily BTC process  is Disconnecting from oracle at 2 Ou2019clk then this job is taking that BTC. Is there any relation between this?
    Wed Oct  6 01:50:01 2010
    got NLS_LANG='AMERICAN_AMERICA.UTF8' from environment
    Client NLS settings:
    Logon as OPS$-user to get SAPCRM's password
    Connecting as /@SID on connection 1 (nls_hdl 0) ... (dbsl 640 070308)
    Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
       0 UTF8                                                      1 0x114876050 0x114888db0 0x114888668
    Starting user session (con_hdl=1,svchp=0x1160b89c8,srvhp=0x11488bd68,usrhp=0x1160b85b0)
    Now '/@SID' is connected: con_hdl=1, nls_hdl=0, session_id=687.
    Got SAPCRM's password from OPS$-user
    Disconnecting from connection 1 ...
    Close user session (con_hdl=1,svchp=0x1160b89c8,usrhp=0x1160b85b0)
    Now I'm disconnected from ORACLE
    Connecting as SAPCRM/<pwd>@SID on connection 1 (nls_hdl 0) ... (dbsl 640 070308)
    Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
       0 UTF8                                                      1 0x114876050 0x114888db0 0x114888668
    Starting user session (con_hdl=1,svchp=0x1160b89c8,srvhp=0x11488bd68,usrhp=0x1160b85b0)
    Now 'SAPCRM/<pwd>@SID' is connected: con_hdl=1, nls_hdl=0, session_id=687.
    Connection 1 opened (DBSL handle 1)
    Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost
    134 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20100930 152615 host05
    134 001 R/3*WORKFLOWTRAC 134000057 ACTIVE       NO  NO  NO  004 255 255 20101006 015001 host05
    ERROR => EmActiveData: Invalid Context Handle -1 [emxx.c       2220]
    ERROR => EmActiveData: Invalid Context Handle -1 [emxx.c       2220]
    ERROR => EmActiveData: Invalid Context Handle -1 [emxx.c       2220]
    Wed Oct  6 02:08:47 2010
    Disconnecting from connection 1 ...
    Close user session (con_hdl=1,svchp=0x1160b89c8,usrhp=0x1160b85b0)
    Now I'm disconnected from ORACLE
    Disconnected from connection con_da={R/3*WORKFLOWTRACE,134000057,1}
    Job is taking much time to finish at 02:26 with a lock entry in MONI table. In ST03n sometimes 3:26 job is showing error but it is not failing.
    Error log:
    System name                            Host name                        Report   Date       End time
      Error message
    Host05_SID_00                       Host05                        RSCUECRM 06.10.2010 03:26:01
    Host05_SID_00                       Host05                        RSHOSTDB 06.10.2010 03:26:01
    Host05_SID_00                       Host05                        RSORACOL 06.10.2010 03:26:01
    Host05_SID_00                       Host05                        RSORAHCL 06.10.2010 03:26:01
    Host05_SID_00                       Host05                        RSRFCDLT 06.10.2010 03:26:01
    Host05_SID_00                       Host05                        RSRFCDMN 06.10.2010 03:26:01
    Host05_SID_00                       Host05                        RSSTAT60 06.10.2010 03:26:06
      Table MONI is locked by user DDIC
    Host05_SID_00                       Host05                        RSSTAT87 06.10.2010 03:26:06
    Host05a_SID_01                      Host05a                       RSHOSTDB 06.10.2010 03:26:07
    Host05a_SID_01                      Host05a                       RSRFCDMN 06.10.2010 03:26:07
    Host05_SID_00                       Host05                        RSSTAT83 06.10.2010 03:26:11
      Begin error recovery:
    Host05_SID_00                       Host05                        RSSTAT60 06.10.2010 03:27:16
      Table MONI is locked by user DDIC
    Contents of TCOLL
    Report      Days of Week                                   Hours of Day                                Repe-    System
                                                                                    titions
             Mo    We    Fr    Su  0     2     4     6     8    10    12    14    16    18    20    22
    RSCUECRM  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X     1         C
    RSDBPREV  X  X  X  X  X  X  X  X     X     X     X     X     X  X  X     X     X     X     X     X        1         C
    RSDB_PAR  X  X  X  X  X  X  X                          X              X                 X                 1         C
    RSDB_TDB  X  X  X  X  X  X  X                       X                                      X              1         C
    RSDB_WDB                    X                                      X                                      1         C
    RSHOSTDB  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X     1         *
    RSHOSTDC  X  X  X  X  X  X  X  X     X     X     X     X     X     X     X     X     X     X     X        1         C
    RSHOSTPH  X  X  X  X  X  X  X                             X        X                    X                 1         *
    RSORA811  X  X  X  X  X  X  X                                      X                    X                 1         C
    RSORACOL  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X     1         C
    RSORAHCL  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X     1         C
    RSRFCDLT  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X     1         C
    RSRFCDMN  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X     1         *
    RSSDBDLY  X  X  X  X  X  X  X     X                                                                       1         C
    RSSTAT60  X  X  X  X  X  X  X           X        X        X     X        X     X        X        X        1         C
    RSSTAT83  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X     1         C
    RSSTAT87  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X  X     1         C
    RSSTAT90  X  X  X  X  X  X  X                                         X                 X                 1         *
    RSSTAT98  X  X  X  X  X  X  X              X        X        X        X        X        X                 1         *
    RSSTATPH  X  X  X  X  X  X  X                             X        X                 X                    1         *
    RSTUNE80  X  X  X  X  X  X  X                             X              X                          X     1         *
    RSXRPM          X                             X                                                           1         C

  • Job SAP_COLLECTOR_FOR_PERFMONITOR canceled

    Good evening everybody,
    The job SAP_COLLECTOR_FOR_PERFMONITOR is being canceled hourly with the log below:
                                                                                    Date       Time     Message text                                                  Message class Message no. Message type                                                                               
    04.08.2009 15:30:55 Job started                                                        00           516          S             
    04.08.2009 15:30:55 Step 001 started (program RSCOLL00, variant , user name DDIC)      00           550          S             
    04.08.2009 15:30:57 ABAP/4 processor: CONVT_OVERFLOW                                   00           671          A             
    04.08.2009 15:30:57 Job cancelled                                                      00           518          A                                                                               
    The dump generated in the ST22 is CONVT_OVERFLOW
    Overflow when converting from 15362394                                                                               
    What happened?                                                                               
    The current ABAP/4 program "RSHOST2M " had to be terminated because 
    one of the statements could not be executed.                                                                               
    This is probably due to an error in the ABAP/4 program.                                                                               
    Everyone can help me to solve this issue? Our SAP version is R/3 4.6C.
    Best Regards,
    Fábio Karnik Tchobnian

    Dear Friend,
    Thanks for your help.
    I apllied the part below from  the note  903220
    To remove the corrupted data in table MONI:
    1. Call transaction ST03
    2. With Goto -> Performance database -> Contents of Database
    3. Select entry you want to delete
    4. Further info will be '** delete**'
    5. Confirm the delete
    05.08.2009 Page 2 of 2
    SAP Note 903220 - Short dumps CONVT_OVERFLOW in RSHOSTDB
    or RSHOST2M
    A sufficient way to find out which entries to delete would be:
    - check when the short dump occured first
    - delete the OS entries from MONI since the day before the first
    short dump occured
    The job  SAP_COLLECTOR_FOR_PERFFMONITOR now is not being canceled anymore , however it is happening the same dump  dump from a differente program after the job is finished as the log below from the ST22
    ABAP runtime errors    CONVT_OVERFLOW                                     
           Occurred on     05.08.2009 at 15:50:38                                                                               
    Overflow when converting from "-3.10504e+231"                                                                               
    What happened?                                                                               
    The current ABAP/4 program "SAPLSTUW " had to be terminated because       
    one of the statements could not be executed.                                                                               
    This is probably due to an error in the ABAP/4 program.                                                                               
    What can you do?                                                                               
    Note the actions and input that caused the error.                                                                               
    Inform your SAP system administrator.                                                                               
    You can print out this message by choosing "Print". Transaction ST22      
    allows you to display and manage termination messages, including keeping  
    them beyond their normal deletion date.                                                                               
    Error analysis                                                                               
    When attempting to convert the value "-3.10504e+231",                     
    an overflow occurred.                                                                               
    Do you have some advice?
    Best Regards
    Fábio Karnik Tchobnian:

  • Job SAP_COLLECTOR_FOR_PERFMONITOR failing in alternate hours

    Hello All,
    The job SAP_COLLECTOR_FOR_PERFMONITOR in solution manager 7.1 was running fine till last week but now it is failing. Every alternate job fails.
    Checked logs and it states error message:
    SQL error 1-:  Function sequence error
    Checked system logs:
    After the attempt to call a database operation, the database system has
    returned the error code specified in the message, which indicates that
    the operation concerned could not be executed successfully.
    Can someone suggest and provide some input to correct this.
    Regards,
    Mohit

    Hello Divyanshu,
    Here is the job logs
    Date       Time     Message text                                                                Message class Message no. Message type
    26.08.2014 00:13:03 Job started                                                                      00           516          S
    26.08.2014 00:13:03 Step 001 started (program RSCOLL00, variant , user ID SOLMAN_BTC)                00           550          S
    26.08.2014 00:13:09 Clean_Plan:Bereinigung der DB13-Einplanungen                                    DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:started by RSDBPREV                       on server FR105     DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System ZZZ      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System BWP00002 werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System BWT      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System DEV      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System KON      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System PRD      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System ZD1      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System ZD200001 werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System ZE1      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System ZP1      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System ZP2      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System ZQ1      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System ZQ2      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:Jobs in System ZSM      werden bereinigt                             DB6PM         000          S
    26.08.2014 00:13:09 Clean_Plan:finished                                                             DB6PM         000          S
    26.08.2014 00:21:42 SQL error 1-:  Function sequence error                                           0Q           029          E
    26.08.2014 00:21:42 Job cancelled after system exception ERROR_MESSAGE                               00           564          A
    werden bereinigt means: Adjusted
    Regards,
    Mohit

  • My safari keeps crashing running 10.5.8

    my safari keeps crashing running 10.5.8 any help would be appreciated.

    Hi same problem.  Crash report below
    Process:    
    Safari [244]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    6.0.2 (8536.26.17)
    Build Info: 
    WebBrowser-7536026017000000~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [170]
    User ID:    
    501
    Date/Time:  
    2013-01-21 08:01:06.628 +0000
    OS Version: 
    Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:     
    11774 sec
    Crashes Since Last Report:      
    2
    Per-App Interval Since Last Report:  4 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                 
    F8E892D7-BA57-1C9A-5C1A-175EDE24FF59
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'data parameter is nil'
    terminate called throwing an exception
    abort() called
    Application Specific Backtrace 1:
    0   CoreFoundation                 
    0x00007fff909f00a6 __exceptionPreprocess + 198
    1   libobjc.A.dylib                
    0x00007fff8c6103f0 objc_exception_throw + 43
    2   CoreFoundation                 
    0x00007fff909efe7c +[NSException raise:format:] + 204
    3   Foundation                     
    0x00007fff937844ae +[NSPropertyListSerialization propertyListWithData:options:format:error:] + 67
    4   WebCore                        
    0x00000001027891cb _ZN7WebCore8Settings29initializeDefaultFontFamiliesEv + 587
    5   WebCore                        
    0x0000000102788458 _ZN7WebCore8SettingsC2EPNS_4PageE + 456
    6   WebCore                        
    0x0000000102788488 _ZN7WebCore8Settings6createEPNS_4PageE + 40
    7   WebCore                        
    0x0000000101cf00dc _ZN7WebCore4PageC2ERNS0_11PageClientsE + 252
    8   WebKit                         
    0x00000001017b90bf -[WebView(WebPrivate) _commonInitializationWithFrameName:groupName:] + 1215
    9   WebKit                         
    0x0000000101703b73 -[WebView(WebPrivate) _initWithFrame:frameName:groupName:usesDocumentViews:] + 195
    10  WebKit                         
    0x00000001017039af -[WebView initWithFrame:frameName:groupName:] + 255
    11  Safari                         
    0x00007fff94ff7fdd _ZN6Safari8SWebView16webViewWithFrameERK6CGRectRKNS_2CF6StringES7_ + 143
    12  Safari                         
    0x00007fff94ee94f0 _ZN6Safari23ExtensionViewController17createAndLoadViewEv + 92
    13  Safari                         
    0x00007fff94ed30d5 _ZN6Safari33ExtensionGlobalPageViewControllerC2EPNS_9ExtensionERKNS_2CF3URLE + 101
    14  Safari                         
    0x00007fff94ec480b _ZN6Safari33ExtensionGlobalPageViewController6createEPNS_9ExtensionERKNS_2CF3UR LE + 47
    15  Safari                         
    0x00007fff94ebd8b7 _ZN6Safari9Extension21retrieveGlobalWebViewEv + 47
    16  Safari                         
    0x00007fff94ebceff _ZN6Safari9Extension6enableEv + 87
    17  Safari                         
    0x00007fff94eda314 _ZN6Safari20ExtensionsController23loadInstalledExtensionsEv + 606
    18  Safari                         
    0x00007fff94ed9134 _ZN6Safari20ExtensionsController19reloadAllExtensionsEv + 54
    19  Safari                         
    0x00007fff94da3450 -[AppController awakeFromNib] + 1541
    20  CoreFoundation                 
    0x00007fff909e7e89 -[NSSet makeObjectsPerformSelector:] + 201
    21  AppKit                         
    0x00007fff8fdda216 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    22  AppKit                         
    0x00007fff8fdb91fd loadNib + 317
    23  AppKit                         
    0x00007fff8fdb8729 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    24  AppKit                         
    0x00007fff8fdb855e -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 200
    25  AppKit                         
    0x00007fff8fdb833e +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 360
    26  AppKit                         
    0x00007fff8fdb4adf NSApplicationMain + 398
    27  Safari                         
    0x00007fff94fb7d54 SafariMain + 166
    28  libdyld.dylib                  
    0x00007fff8dc3e7e1 start + 0
    29  ???                            
    0x0000000000000002 0x0 + 2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff93ae4212 __pthread_kill + 10
    1   libsystem_c.dylib        
    0x00007fff95865af4 pthread_kill + 90
    2   libsystem_c.dylib        
    0x00007fff958a9dce abort + 143
    3   libc++abi.dylib          
    0x00007fff8c793a17 abort_message + 257
    4   libc++abi.dylib          
    0x00007fff8c7913c6 default_terminate() + 28
    5   libobjc.A.dylib          
    0x00007fff8c610873 _objc_terminate() + 91
    6   libc++abi.dylib          
    0x00007fff8c7913f5 safe_handler_caller(void (*)()) + 8
    7   libc++abi.dylib          
    0x00007fff8c791450 std::terminate() + 16
    8   libc++abi.dylib          
    0x00007fff8c7925b7 __cxa_throw + 111
    9   libobjc.A.dylib          
    0x00007fff8c61050c objc_exception_throw + 327
    10  com.apple.CoreFoundation 
    0x00007fff909efe7c +[NSException raise:format:] + 204
    11  com.apple.Foundation     
    0x00007fff937844ae +[NSPropertyListSerialization propertyListWithData:options:format:error:] + 67
    12  WebCore                  
    0x00000001027891cb WebCore::Settings::initializeDefaultFontFamilies() + 587
    13  WebCore                  
    0x0000000102788458 WebCore::Settings::Settings(WebCore::Page*) + 456
    14  WebCore                  
    0x0000000102788488 WebCore::Settings::create(WebCore::Page*) + 40
    15  WebCore                  
    0x0000000101cf00dc WebCore::Page::Page(WebCore::Page::PageClients&) + 252
    16  com.apple.WebKit         
    0x00000001017b90bf -[WebView(WebPrivate) _commonInitializationWithFrameName:groupName:] + 1215
    17  com.apple.WebKit         
    0x0000000101703b73 -[WebView(WebPrivate) _initWithFrame:frameName:groupName:usesDocumentViews:] + 195
    18  com.apple.WebKit         
    0x00000001017039af -[WebView initWithFrame:frameName:groupName:] + 255
    19  com.apple.Safari.framework
    0x00007fff94ff7fdd Safari::SWebView::webViewWithFrame(CGRect const&, Safari::CF::String const&, Safari::CF::String const&) + 143
    20  com.apple.Safari.framework
    0x00007fff94ee94f0 Safari::ExtensionViewController::createAndLoadView() + 92
    21  com.apple.Safari.framework
    0x00007fff94ed30d5 Safari::ExtensionGlobalPageViewController::ExtensionGlobalPageViewController(Sa fari::Extension*, Safari::CF::URL const&) + 101
    22  com.apple.Safari.framework
    0x00007fff94ec480b Safari::ExtensionGlobalPageViewController::create(Safari::Extension*, Safari::CF::URL const&) + 47
    23  com.apple.Safari.framework
    0x00007fff94ebd8b7 Safari::Extension::retrieveGlobalWebView() + 47
    24  com.apple.Safari.framework
    0x00007fff94ebceff Safari::Extension::enable() + 87
    25  com.apple.Safari.framework
    0x00007fff94eda314 Safari::ExtensionsController::loadInstalledExtensions() + 606
    26  com.apple.Safari.framework
    0x00007fff94ed9134 Safari::ExtensionsController::reloadAllExtensions() + 54
    27  com.apple.Safari.framework
    0x00007fff94da3450 -[AppController awakeFromNib] + 1541
    28  com.apple.CoreFoundation 
    0x00007fff909e7e89 -[NSSet makeObjectsPerformSelector:] + 201
    29  com.apple.AppKit         
    0x00007fff8fdda216 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    30  com.apple.AppKit         
    0x00007fff8fdb91fd loadNib + 317
    31  com.apple.AppKit         
    0x00007fff8fdb8729 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    32  com.apple.AppKit         
    0x00007fff8fdb855e -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 200
    33  com.apple.AppKit         
    0x00007fff8fdb833e +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 360
    34  com.apple.AppKit         
    0x00007fff8fdb4adf NSApplicationMain + 398
    35  com.apple.Safari.framework
    0x00007fff94fb7d54 SafariMain + 166
    36  libdyld.dylib            
    0x00007fff8dc3e7e1 start + 1
    Thread 1:
    0   libsystem_kernel.dylib   
    0x00007fff93ae46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff95866eec _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff95866cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff95851171 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff93ae4d16 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8c7fedea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib        
    0x00007fff8c7fe9ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff93ae46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff95866eec _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff95866cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff95851171 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib   
    0x00007fff93ae40fa __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff95868f89 _pthread_cond_wait + 869
    2   WebCore                  
    0x0000000101cd70db WebCore::IconDatabase::syncThreadMainLoop() + 107
    3   WebCore                  
    0x0000000101cd4bf4 WebCore::IconDatabase::iconDatabaseSyncThread() + 500
    4   com.apple.JavaScriptCore 
    0x00007fff8e2d336f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib        
    0x00007fff95864742 _pthread_start + 327
    6   libsystem_c.dylib        
    0x00007fff95851181 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff93ae46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff95866eec _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff95866cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff95851171 start_wqthread + 13
    Thread 6:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib   
    0x00007fff93ae2686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff93ae1c42 mach_msg + 70
    2   com.apple.QuartzCore     
    0x00007fff95a7d35b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore     
    0x00007fff95b01e76 thread_fun + 25
    4   libsystem_c.dylib        
    0x00007fff95864742 _pthread_start + 327
    5   libsystem_c.dylib        
    0x00007fff95851181 thread_start + 13
    Thread 7:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff93ae2686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff93ae1c42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff9098c803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff90991ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff909916b2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation     
    0x00007fff93721586 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation     
    0x00007fff9377f612 __NSThread__main__ + 1345
    7   libsystem_c.dylib        
    0x00007fff95864742 _pthread_start + 327
    8   libsystem_c.dylib        
    0x00007fff95851181 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5e509a98  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff5e509ac0  rsp: 0x00007fff5e509a98
       r8: 0x00007fff7abd5278   r9: 0x00007fff5e509aa0  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff5e509c20  r13: 0x00007fff5e50b1f0  r14: 0x00007fff7abd6180  r15: 0x00007fff5e509b00
      rip: 0x00007fff93ae4212  rfl: 0x0000000000000206  cr2: 0x00007fff7abcefe8
    Logical CPU: 0
    Binary Images:
    0x1016f4000 -   
    0x1016f4fff  com.apple.Safari (6.0.2 - 8536.26.17) <948F804E-A2F9-3E52-A178-A641675616C3> /Applications/Safari.app/Contents/MacOS/Safari
    0x1016f9000 -   
    0x101883fff  com.apple.WebKit (8536 - 8536.26.17) <3D25C875-B5D1-390C-A449-C1D4FB7DECCB> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
    0x101979000 -   
    0x101b60ff7  com.apple.WebKit2 (8536 - 8536.26.17) <83AB27D5-EF84-35E2-A4B7-78A4791771AF> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
    0x101cd0000 -   
    0x102c89fff  WebCore (7536.26.15) <9D6C3EF1-FFC2-32FB-9953-BC76E3EAB5D8> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
    0x7fff612f4000 -
    0x7fff6132893f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
    0x7fff891a7000 -
    0x7fff891b0fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff891b1000 -
    0x7fff891c0ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
    0x7fff891c3000 -
    0x7fff891f9fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
    0x7fff891fa000 -
    0x7fff89245fff  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <8370178E-438C-375C-AA41-A8DEE60B8636> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff89246000 -
    0x7fff893bafff  com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff89449000 -
    0x7fff894d6ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff894d7000 -
    0x7fff89672fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff896a0000 -
    0x7fff896a2fff  libCVMSPluginSupport.dylib (8.6.1) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff896a3000 -
    0x7fff896a8fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
    0x7fff89762000 -
    0x7fff89778fff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff8981f000 -
    0x7fff89833fff  libGL.dylib (8.6.1) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff89834000 -
    0x7fff8983cfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
    0x7fff898b7000 -
    0x7fff898c1fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff898c3000 -
    0x7fff89912ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
    0x7fff89913000 -
    0x7fff89917fff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8991a000 -
    0x7fff8991afff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8a218000 -
    0x7fff8a242ff7  com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8a243000 -
    0x7fff8a63afff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8a680000 -
    0x7fff8a799ff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8a83b000 -
    0x7fff8a8d5fff  com.apple.CoreSymbolication (3.0 - 87) <3D9CBE8D-F047-3DFA-B067-F9589E2AF8BA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff8a8d6000 -
    0x7fff8a912fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8a918000 -
    0x7fff8a923fff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8a924000 -
    0x7fff8a9e1ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8a9e2000 -
    0x7fff8a9e2fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8a9e3000 -
    0x7fff8aa04fff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8aa08000 -
    0x7fff8aa3cfff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8aa3d000 -
    0x7fff8aa4bff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
    0x7fff8aa4c000 -
    0x7fff8aa6eff7  libxpc.dylib (140.41) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
    0x7fff8aa6f000 -
    0x7fff8aa83fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8aa84000 -
    0x7fff8aa86fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff8aa87000 -
    0x7fff8aa8afff  libRadiance.dylib (845) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff8aa8b000 -
    0x7fff8aaa2fff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff8ab2b000 -
    0x7fff8ae42ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <DF7CABCA-F2CB-345B-8EFF-F0F4E937B7FF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8ae4f000 -
    0x7fff8aeb8fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
    0x7fff8aef5000 -
    0x7fff8b046fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8b048000 -
    0x7fff8b04eff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
    0x7fff8b162000 -
    0x7fff8b362fff  libicucore.A.dylib (491.11.1) <CC318A27-878A-38CE-9292-1B98353FA9C7> /usr/lib/libicucore.A.dylib
    0x7fff8b363000 -
    0x7fff8b3afff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
    0x7fff8b3cc000 -
    0x7fff8b409fe7  libGLImage.dylib (8.6.1) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8b40a000 -
    0x7fff8b415ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8b5a1000 -
    0x7fff8b63bfff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff8b63c000 -
    0x7fff8b66dff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff8b66e000 -
    0x7fff8b67afff  libCSync.A.dylib (324.6) <2033247A-CABC-3E20-8498-7367A8F44A08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff8b6b7000 -
    0x7fff8b7b9fff  libJP2.dylib (845) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8b7c7000 -
    0x7fff8b7d5ff7  libkxld.dylib (2050.18.24) <7027CE49-007D-3553-8FFA-3E3B428B2316> /usr/lib/system/libkxld.dylib
    0x7fff8b7d6000 -
    0x7fff8c166c67  com.apple.CoreGraphics (1.600.0 - 324.6) <DCC70C6E-AB6D-3457-A823-7569CB29B107> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8c167000 -
    0x7fff8c168fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
    0x7fff8c169000 -
    0x7fff8c190fff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff8c191000 -
    0x7fff8c461fff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8c46c000 -
    0x7fff8c4edfff  com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8c4ee000 -
    0x7fff8c50efff  libPng.dylib (845) <C3CDD2B4-3CB0-3F6D-8411-DAAF267E952B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8c5f5000 -
    0x7fff8c5fbfff  libGFXShared.dylib (8.6.1) <CF55E720-1B9E-3E24-A1DA-7FA8B261CD8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8c5ff000 -
    0x7fff8c71792f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
    0x7fff8c718000 -
    0x7fff8c723ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff8c790000 -
    0x7fff8c7b5ff7  libc++abi.dylib (24.4) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
    0x7fff8c7bb000 -
    0x7fff8c7bbfff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8c7e4000 -
    0x7fff8c7f9fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff8c7fa000 -
    0x7fff8c80fff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    0x7fff8c810000 -
    0x7fff8c838fff  libJPEG.dylib (845) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8c8af000 -
    0x7fff8c906ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff8c907000 -
    0x7fff8ca8dfff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff8ca8e000 -
    0x7fff8caebfff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8d5c3000 -
    0x7fff8d5c3fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    0x7fff8d6d4000 -
    0x7fff8d6d8fff  libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8d7f3000 -
    0x7fff8d844ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <E095637C-457F-3D8F-AE32-A032F9D5A46C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8d845000 -
    0x7fff8d845fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff8d862000 -
    0x7fff8d866fff  com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8dbf3000 -
    0x7fff8dc3bfff  com.apple.framework.CoreWiFi (1.0 - 100.10) <0E863B4A-1094-3F8D-BEDE-D99537E9C588> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8dc3c000 -
    0x7fff8dc3fff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x7fff8dc40000 -
    0x7fff8dc5dfff  com.apple.openscripting (1.3.6 - 148.2) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8dca2000 -
    0x7fff8dd21ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8ddaa000 -
    0x7fff8ddb8fff  com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff8ddb9000 -
    0x7fff8ddb9fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff8ddba000 -
    0x7fff8ddcdff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
    0x7fff8ddd5000 -
    0x7fff8de0dfff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
    0x7fff8de0e000 -
    0x7fff8de76fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff8e035000 -
    0x7fff8e042fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff8e043000 -
    0x7fff8e056ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff8e095000 -
    0x7fff8e32fff7  com.apple.JavaScriptCore (8536 - 8536.26.7) <ADAD1276-675A-3000-B746-560A2EB596A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8e76d000 -
    0x7fff8e778fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
    0x7fff8e7d6000 -
    0x7fff8e7d6fff  libOpenScriptingUtil.dylib (148.2) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8e7d7000 -
    0x7fff8e875ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff8eabe000 -
    0x7fff8ead4fff  com.apple.MultitouchSupport.framework (235.28 - 235.28) <BD78B16E-9B5A-3E07-93B4-13AD1A538CAC> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8eb6a000 -
    0x7fff8eb6bff7  libdnsinfo.dylib (453.18) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
    0x7fff8eb6c000 -
    0x7fff8eb8bff7  com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff8eb8c000 -
    0x7fff8eb8ffff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8ebea000 -
    0x7fff8ee8efff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff8ee8f000 -
    0x7fff8eec9fff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8eece000 -
    0x7fff8eefcfff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff8f767000 -
    0x7fff8f768fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8f769000 -
    0x7fff8f76dff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff8f76e000 -
    0x7fff8f7eeff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8fac7000 -
    0x7fff8fb6dff7  com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8fb6e000 -
    0x7fff8fbf0fff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8fbf1000 -
    0x7fff8fc4bfff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff8fc4c000 -
    0x7fff8fc4dfff  libquit.dylib (130) <DC77F406-C5D4-301B-A96D-9A3DCA263756> /usr/lib/libquit.dylib
    0x7fff8fc4e000 -
    0x7fff8fc91ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8fc92000 -
    0x7fff8fca0fff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8fca1000 -
    0x7fff8fca1ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8fcbe000 -
    0x7fff8fcc3fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8fcc4000 -
    0x7fff908f1ff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff90942000 -
    0x7fff9094efff  com.apple.CrashReporterSupport (10.8.2 - 415) <55783BF9-125E-3F9C-A412-6A095ECD9353> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff9095d000 -
    0x7fff90b46fff  com.apple.CoreFoundation (6.8 - 744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff91b10000 -
    0x7fff91b7dff7  com.apple.framework.IOKit (2.0 - 755.18.10) <142E19DD-1C8D-3D61-ABC8-83994A73279F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff91b7e000 -
    0x7fff91b80fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
    0x7fff91e8d000 -
    0x7fff921bdff7  com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff9221c000 -
    0x7fff9222eff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    0x7fff92629000 -
    0x7fff92654fff  com.apple.framework.Apple80211 (8.0.1 - 801.17) <05786C8E-8C6F-31AF-80B5-9C98175757B4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff92655000 -
    0x7fff9265cfff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff9265f000 -
    0x7fff9265ffff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff92660000 -
    0x7fff926bcff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff926bd000 -
    0x7fff92701fff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
    0x7fff9273d000 -
    0x7fff9274afff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
    0x7fff9274b000 -
    0x7fff927a7fff  com.apple.corelocation (1.0 - 1239.39) <88EFC8F1-0A91-3EB6-A1F6-76294541D85D> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff92838000 -
    0x7fff92958fff  com.apple.desktopservices (1.7.2 - 1.7.2) <CDE8C2C2-C505-31B0-8C61-E40E4EA364A5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff929cc000 -
    0x7fff929ceff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff929cf000 -
    0x7fff92accfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
    0x7fff92acd000 -
    0x7fff92b3afff  com.apple.datadetectorscore (4.0 - 269.1) <B69645EB-C4BF-3D52-A49B-CB1A1A88512F> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff92b3b000 -
    0x7fff92b3fff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff92c32000 -
    0x7fff9304ffff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff931a2000 -
    0x7fff9327cff7  com.apple.backup.framework (1.4.1 - 1.4.1) <A3CFCA9E-717C-302D-821B-16FD35E6673F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff9327d000 -
    0x7fff9327eff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff9327f000 -
    0x7fff93280fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff9335a000 -
    0x7fff93360fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <F7DAF7CC-5893-3F06-9168-3B0192B66D15> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff93361000 -
    0x7fff933beff7  com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff933bf000 -
    0x7fff933e6ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff93439000 -
    0x7fff9343bfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff93452000 -
    0x7fff9345cff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x7fff9345d000 -
    0x7fff934b3ff7  com.apple.opencl (2.1.20 - 2.1.20) <AF142CA4-EA1D-31B0-A48F-AA2B75D4309E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff934b4000 -
    0x7fff936e9ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff936ea000 -
    0x7fff93a46fff  com.apple.Foundation (6.8 - 945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff93a59000 -
    0x7fff93a5aff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
    0x7fff93a5b000 -
    0x7fff93aa5ff7  libGLU.dylib (8.6.1) <DF45C1E3-3884-3991-B84F-F39B482E8BF8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff93aa6000 -
    0x7fff93ad1fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
    0x7fff93ad2000 -
    0x7fff93aedff7  libsystem_kernel.dylib (2050.18.24) <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
    0x7fff93aee000 -
    0x7fff93b44fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff93c01000 -
    0x7fff93e86ff7  com.apple.RawCamera.bundle (4.03 - 676) <21D098D4-35EC-3495-9227-2DA19B9BD640> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff93e87000 -
    0x7fff93ea6ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    0x7fff93ea7000 -
    0x7fff93f79ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff941fb000 -
    0x7fff942f0fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
    0x7fff942f1000 -
    0x7fff9431fff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
    0x7fff94320000 -
    0x7fff943d1fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff9446a000 -
    0x7fff94567ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
    0x7fff94568000 -
    0x7fff9456aff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
    0x7fff9456b000 -
    0x7fff945a1fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff945a2000 -
    0x7fff945b1ff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff945b2000 -
    0x7fff945b3ff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
    0x7fff945b4000 -
    0x7fff945bbfff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
    0x7fff9472e000 -
    0x7fff94783ff7  libTIFF.dylib (845) <ADCB4683-69EB-318B-8BE7-5FDF38BCADAF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff94788000 -
    0x7fff947c7ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff947f1000 -
    0x7fff94808fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff94a7e000 -
    0x7fff94ac1fff  com.apple.RemoteViewServices (2.0 - 80.5) <F3A897C9-A277-3B56-8FB3-2BC2C10C33BF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff94ac3000 -
    0x7fff94ad0ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff94d2e000 -
    0x7fff94d96ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
    0x7fff94d97000 -
    0x7fff9528cfff  com.apple.Safari.framework (8536 - 8536.26.14) <8A1EDE49-1974-3CA6-9B1A-54A1C5B2FF24> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff952a8000 -
    0x7fff952caff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff952cb000 -
    0x7fff95390ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff9545b000 -
    0x7fff9545bfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff9574b000 -
    0x7fff95750fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
    0x7fff95850000 -
    0x7fff9591cfe7  libsystem_c.dylib (825.25) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
    0x7fff959c0000 -
    0x7fff95b6efff  com.apple.QuartzCore (1.8 - 304.0) <897FAA5D-FF13-33FE-878B-B164D684F019> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff95b6f000 -
    0x7fff95bbeff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff95d1c000 -
    0x7fff95d3dff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
    0x7fff95d3e000 -
    0x7fff95e49fff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff95e52000 -
    0x7fff95e5aff7  libsystem_dnssd.dylib (379.32.1) <62AA0B84-188A-348B-8F9E-3E2DB08DB93C> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff95e5b000 -
    0x7fff95e61fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    0x7fff95f95000 -
    0x7fff95f97fff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff95f98000 -
    0x7fff95f9cfff  libpam.2.dyl

  • What causes my iphone 5s to keep on running out of memory with any new download. I recently updated to  ios 8.2

    What causes my iphone 5s to keep on running out of memory without any new download. I recently updated to  ios 8.2

    I meant to say without downloading or receiving anything

  • If I download FCP to my old macbook, and then upgrade to a macbook pro, can I transfer it the new machine even if I keep both running?

    If I download FCP to my old macbook, and then upgrade to a macbook pro, can I transfer it the new machine even if I keep both running?

    Ian Brown, thankyouthankyouthankyou for taking the itme to reply
    I am not (indeed) a film studio, so this is EXCELLENT news.

  • Keep windows running when macbook closed using dvi-out?

    Is there a way I can keep windows running when I close the lid on my macbook when using dvi out?
    at the moment it goes to sleep and logs me out and the dvi out looses connection and goes dark.

    in jad file add 2 more keys:
    Background - True
    FlipInsensitive - True
    regards
    piter

  • Can i make screen sleep when plugged into tv but keep ipad running?

    I don't know if it's hard on the screen to keep it up and running when I have the ipad connected to the television watching a movie on netflix, for example, but it sure seems like a waste of it's life.  Is there anyway tell the ipad to sleep the screen but keep it running?  Other than for playing music, which I know it does. 

    Is there anyway tell the ipad to sleep the screen but keep it running?
    No, the video app needs to have that feature built in. For example, the Apple video app does black out the display, but when I use VLC or Netflix they do not.

  • Is it possible to create an invoive that keeps a running total in one column and in another column keep total of monies spent from a starting amount of funding?

    Is it possible to create an invoive that keeps a running total in one column and in another column keep total of monies spent from a starting amount of funding?

    Hi Sara,
    Many thanks for your reply.  We just brought Adobe Acrobat XI Pro complete
    with Adobe Forms Central, My manager asked whether I could use the forms
    part to create a summary tracking sheet for all of our contracts.
    Having looked at it I could see how to create a table that in the first
    column deleted costs from a starting fund, and in the last keeps a running
    total of all monies spent.
    I agree, Excel does seem to be much better suited to the task.  I was try
    trying to comply with her request
    Regards,

  • Share how you keep Skype running

    I thought that it would be helpful for a lot of people if there was a thread written with the sole purpose of depicting ways to address Skype run-time issues, like how to keep Skype running despite its tendency to crash without having to manually restart it. 
    So, for the most part, try to only post comments--by comments I mean posts, I just didn't want to be redundant and say 'post posts'--that address some specific thing that you were trying to get Skype to do like
    Webcam support
    Sound Server support
    or V4Linux support (if that's not exactly the same thing as webcam support)
    and how you were able to get Skype to do it.  Please, do not post answers to unresolved, or otherwise partially fixed support, problems.  This is a place to share helpful, useful, and (at least mostly) automatic scripted workarounds.  The scripts can be in any programming language, not just scripting ones, although scripting ones are best suited for this kind of thing. 
    As to what I mean by 'partially fixed problems': I'm talking about problems that still require user intervention in order to keep the problem-fixing-script going.  Like, every time the script finishes running, you have to manually restart it.  This is different from a mostly automatic script that has to be started by the user (as opposed to being started by the system at start-up or when X is initiated), but that once started continues to run until the user forcibly terminates it.  Like 'killall -s KILL myscript.sh', for example. 
    I'll start off by posting a script that I use to handle a webcam support problem that I have with Skype.
    (Note, this is my first attempt at a really big thread/post, so I'm just keeping my fingers crossed because doing something like this is rather intimidating for me, a forum-newbie.  )
    Last edited by lspci (2012-07-03 19:39:49)

    I'm still using the beta version of Skype, that is version 2.2.0.35; it crashes every now and again because I have to run it with a v4l preload--its crashes seem to have a domino effect on itself, in that if it crashes once then it's twice as likely to immediately crash again.  So here's my little workaround that keeps Skype going; I hope that somebody will find it useful or will have some suggestions for how I can make it run better. 
    ## ensur.sh -- ENsure Skype continUes Running ##
    ## an answer to the continual crashes brought on by loading skype as 'LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so skype &' ##
    ## Coded by DeFfunc't95 ##
    #clear
    echo
    echo
    echo "IS SKYPE RUNNING"
    if top -n2 | grep "skype" ; then
    echo "";
    echo " [T]";
    echo "EXITING NOW...";
    echo ;
    echo ;
    exit ;
    else echo ;
    echo " [F]";
    echo ;
    echo "STARTING UP SKYPE WITH PRELOAD" ; # the preload is necessary in order
    ## for webcam support to be enabled, or so it seems.
    echo ;
    echo ;
    LD_PRELOAD=/usr/lib34/libv4l/v4l1compat.so skype ;
    # This mapping will need to be changed according to where ensur.sh
    #>> actually is.
    sh ~/:B/ensur.sh ; # the mapping
    fi
    My script works extremely well, most of the time.  Whenever Skype crashes because of a preload error, it just starts Skype right back up again.    However, it isn't so great at being able to tell the difference between when Skype is actually running and when it isn't.  In fact, 9 times out of 10, if Skype is already running and I start up my little 'ensur-skype' script: my script will start Skype up anyhow regardless of whether Skype is already running or not.  And I think it's because of my usage of
    if top -n2 | grep "Skype" ; then ...
      When I actually just run 'top -n2 | grep "skype"' in the terminal, it rarely actually manages to grep Skype from top, but I really don't know of any other way to determine whether Skype is already running.  Any suggestions as to how to check for a Skype run-time without risking the possibility of starting two instances of Skype in the process?
    Last edited by lspci (2012-07-03 19:36:46)

  • Keeping a running total

    I have to create a programme in java where you input type of currency, exchange rate, amout of currency. then convert it to GBP and print the answers. This bit I have done. A loop is also needed to keep inputting amounts of the same currency and keep a running total of amount input.
    The programme runs fine, and I can get the total number of transactions, but I am having problems getting the amount of currency inputted to add. I created a new variable for this but cant get it to work, it will either print out 0 or the last amount inputted, depending what I do.
    Any help would be appreciated. I know its probably very simple but I have spent so long on this I think I have lost my way.

    You need to create the summation variable before the loop and use it inside the loop, so that it doesn't keep getting created (and the data held in it erased) with each iteration of the loop.
    If this is not clear, then post your code.
    Good luck!

Maybe you are looking for

  • Error in MIGO for Scheduling Agreement

    Dear All, I have created a Scheduling agreement in LP document type and saved with Net price. When i do the MIGO the error appears as below. Transaction cannot be posted due to errors in price determination Message no. ME573 Diagnosis The error marke

  • The execution of the query doesn't end

    Hi, I have this completely nested query: SELECT S.sname from S where    S# in (select S# from table where    P# in (select P# from table1 where table1.name = 'Bodg')    and            Jn in (select J# from table 2 where table2.something= 'hjgfjh')  

  • Doubt in using a Field symbols

    Hi gurus, i want to use field symbols for a varying fields in a table. like my fields are ZPER01 SHKZG01                           ZPER02 SHKZG02                           ZPER03 SHKZG03                          ......ZPER0N SHKZG0N         now i hav

  • I am going to update my PC to windows 7 (from XP), how can i backup my current version of firefox and use it on the updated OS?

    since support for XP is done and continued use puts my PC at risk, I am going to install Windows 7. I want to know how i can do a full back up of my current version of Firefox and then run it on the updated OS; i have lots of add-ons that I don't wan

  • Ipod not showing in itunes

    This is for OS Leopard using Powermac G5. I attached my classic ipod via usb, but showed no signs of it being there. Maybe may Ipod is too new for this version of iTunes. I just wondered if anyone else has tried this.