Constant Correlation

Hi
I have been trying to figure out the reasons why my BPM is not working.
I am using constant as correlation in my BPM. When I configured the CC s I kept the polling interval for input files at 60 seconds and as a reult many instances were triggered. I saw that in SXMB_MONI.
Now, I changed few of my objects and triggered again. Continuosly it's going to the queues and also am unable to even see the workflow using SXMB_MONI_BPE.
I read that only one instance of the BPM should be running when we use constant as correlation. So is that the reason why my scenario is working. I have many instances triggered and so do I have to delete them all using SWWL so that it would work. Right now I dont have access to SWWL and have asked for that authorization.
Can someone provide few inputs regarding this
Regards
Harish Babu

Shabrish,
Last few days, I have been posting many questions about this interface which is very complex and in fact none in my office has got a clue on how to do it. I even thought of mailing you as one of my colleagues mailed you  three days ago and got a reply. I guess it was about FCC
Well, this is my scenario
It's a file to file scenario. I need to read three input files from the source. I need to generate only one output file. The three input files are Header, Container and Container Item. I have to read two values, say A and B from Header and go to the Container file. Then I have to pick the values C and D from the Container file. These vales, C and D, should correspond to the values of A and B. A and B also appear in the Container file. Now with all these values, I have to go to the Container Item file and read the values E and F, which correspond to the previous set of already read values.
The values E and F should be sent to the target file. This is the scene !
And my design is
I use BPM to collect the three messages and using transformation merge the files. I sent the merged file to Interface mapping which takes care of the mapping logic using UDFs. Then it is send asynchronously to the receiver.
I guess the UDF is working,  am not 100% sure. But BPM is not
In fact when I triggered it first, I was able to go to the BPM and in the graphical , I could see green till merge. But since my poll interval was only 60 seconds many instances were triggered and now am not even able to see the workflow items using SXMB_MONI_BPE.
Regards
Harish Babu

Similar Messages

  • Constant Correlation in BPM

    Hi All,
    I have a requirement to collect 3 different formatted text files (using FCC to XML) which do not relate in any way except that they all need to be collected and need to be sent in a sequence while delivering to the other side.
    Since there were no common fields available to correlate, I have used constant values in the correlation editor and also while activating the correlation in the receive steps (in all 3).
    The BPM works fine only when I send files having each one line. When I send files with multiple lines (the XMLs would have multiple recordset elements) the BPM fails in the Outbound Queue and the BPM does not even get initiated. Surprisingly in the SMQ2 logs, the correlation is being created based on ID field in the received XML (which was not intended). Similar is the case when I send any of the other type of files with multiple lines.
    My assumption is the BPM should disregard the content in the files and should create a constant correlation when the first message arrives. Then it should collect until the block times out and complete the sending steps. Any guess what is going wrong?
    Thanks for your time.
    VJ

    The problem was, one of the developers used some unidentical key fields to define the correaltion long back and they are dangling in the system with error status. After I have deleted the erroneous workflows the BPM works flawless..!!
    Apparently the problem was when ever the file containg the same values the previous correlation was referring to, the BPM was failing.
    VJ

  • Merging files using BPM-Prod Issue - JDBC to File.

    Hi all,
    We had a scenario in which data is available in two database tables and that data needs to be merged and dropped in a File system.
    To meet this requirement we have developed a BPM with constant correlation and it was working fine.
    But some days one file wont get generated as the JDBC adapters are polling the DB tables based on date.So there are chances that records wont be present in DB for that particular date and file may not be created.So if only one file is generated my entire business scenario fails as the fork step used to merge two files will not be completed.
    The records which is pulled from DB table is based on data an i have written UDF based on these dates.
    Could someone help me in finding a solution.
    Thanks & Regards,
    Lekshmi.

    Hi ,
    I have included a deadline and exception branch in my scenario and it seems to be working fine.Need to do some more testing in this regard.
    But i have one doubt regarding this issue.In the transformation step i have used multi message mapping where i have mentioned the occurrence of both input messages as 1. I was expecting this scenario to throw an error at transformation step (since only one message was given as input )once i have made the changes but surprisingly it didnt happen.Could you pls tell me why this didnt happen..
    Rgds,
    Lekshmi.

  • Issue with BPM-Merging 2 files.

    Hi all,
    I am facing one issue with my development object...it is a BPM scenario in which i am merging 2 files using constant correlation id...JDBC to File scenario...i am using 2 JDBC adapters at source side...the scenario is getting executed without any error and i am getting the output...but the output contain only the data in 1 file...merging is not happening and only one file data is displayed in the output...could someone help me with this issue???am i missing something here??any help will be really appreciated...
    Thanks,
    Lekshmi.

    Hi all,
    As informed in my earlier post the same scenario was working with File adapters at source side.I figured out why it was working earlier.
    Since i have generated the source files for the File adpaters i have added the name space as displayed in the mapping(highlighted in bold letters).
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
          <ns1:Test1_MT xmlns:ns1="http://testing.com/Details">
             <row>
             </row>
          </ns1:Test1_MT>
       </ns0:Message1>
       <ns0:Message2>
          <ns1:Test2_MT xmlns:ns1="http://testing.com/Details">
             <row>
                <VIA_NO/>
                <VSL_NM/>
                <ATA_DTTM/>
                <PATA_DTTM/>
                <ADT_INS_DTTM/>
                <ADT_UPD_DTTM/>
             </row>
          </ns1:Test2_MT>
       </ns0:Message2>
    </ns0:Messages>
    But in the case of real time scenario data is pulled from database and the input file is created through JDBC adater i am getting the source message for mapping as :
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
          <ns:Test1_MT xmlns:ns="http://testing.com/Details">
             <row>
             </row>
         </ns:Test1_MT>
       </ns0:Message1>
       <ns0:Message2>
         <ns:Test2_MT xmlns:ns="http://testing.com/Details">
             <row>
                <VIA_NO/>
                <VSL_NM/>
                <ATA_DTTM/>
                <PATA_DTTM/>
                <ADT_INS_DTTM/>
                <ADT_UPD_DTTM/>
             </row>
         </ns:Test2_MT>
       </ns0:Message2>
    </ns0:Messages>
    When i tested this message in message mapping it is giving only the first file in the output.
    Any idea how to resolve this one?
    Rgds,
    Lekshmi.

  • Calendar/iCloud chrashes on OSX when i try to klick the checkbox for share/use "calendar" in icloud. What can i do to fix it? In the same time, when i open iTunes window tells me that com.apple.MediaLibraryService was closed unexpected. Is there a correl.

    Hello,
    Calendar/iCloud chrashes on OSX when i try to klick the checkbox for share/use "calendar" in icloud.
    What can i do to fix it?
    In the same time / parallel, when i open iTunes, a window tells me that: "com.apple.MediaLibraryService was closed unexpected". Is there a correlation?
    The whole Problems begann Days ago, when i stupidly "played" at the rights and permissions for another "user". After a TM-Backup the Problems where there. It seems so that a few of my Picturefolders also weren´t recovered...
    Kind regards to all of you!
    Here ist the analysis - i cant do anything with it becuse i dont know much about it/that:
    Sampling process 1840 for 3 seconds with 1 millisecond of run time between samples
    Sampling completed, processing symbols...
    Analysis of sampling com.apple.preferences.icloud.remoteservice (pid 1840) every 1 millisecond
    Process:         com.apple.preferences.icloud.remoteservice [1840]
    Path:            /System/Library/PreferencePanes/iCloudPref.prefPane/Contents/XPCServices/com.ap ple.preferences.icloud.remoteservice.xpc/Contents/MacOS/com.apple.preferences.ic loud.remoteservice
    Load Address:    0x1023a7000
    Identifier:      com.apple.preferences.icloud.remoteservice
    Version:         316 (329)
    Build Info:      iCloudPrefPane-329000000000000~1
    Code Type:       X86-64
    Parent Process:  ??? [1]
    Date/Time:       2014-03-19 01:37:03.375 +0100
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  7
    Call graph:
        2826 Thread_302243   DispatchQueue_1: com.apple.main-thread  (serial)
        + 2826 start  (in libdyld.dylib) + 1  [0x7fff8e4f65fd]
        +   2826 main  (in com.apple.preferences.icloud.remoteservice) + 37  [0x1023a7d27]
        +     2826 PreferencePaneMain  (in PreferencePanes) + 171  [0x7fff935ff756]
        +       2826 NSViewServiceApplicationMain  (in ViewBridge) + 2717  [0x7fff95b07cf8]
        +         2826 -[NSXPCSharedListener resume]  (in ViewBridge) + 52  [0x7fff95b39c9a]
        +           2826 xpc_main  (in libxpc.dylib) + 399  [0x7fff8e4dcbde]
        +             2826 _xpc_main  (in XPCService) + 385  [0x7fff95e29c0f]
        +               2826 NSApplicationMain  (in AppKit) + 940  [0x7fff93904913]
        +                 2826 -[NSApplication run]  (in AppKit) + 646  [0x7fff93919b89]
        +                   2826 -[NSViewServiceApplication sendEvent:withForwarding:]  (in ViewBridge) + 33  [0x7fff95b052b2]
        +                     2826 -[NSViewServiceApplication sendEventWithoutCatch:withForwarding:]  (in ViewBridge) + 1350  [0x7fff95b050aa]
        +                       2826 -[NSApplication sendEvent:]  (in AppKit) + 2021  [0x7fff93ac96e4]
        +                         2826 -[NSWindow sendEvent:]  (in AppKit) + 11296  [0x7fff93b2ab48]
        +                           2826 -[NSControl mouseDown:]  (in AppKit) + 706  [0x7fff93ba91ad]
        +                             2826 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:]  (in AppKit) + 487  [0x7fff93ba9a97]
        +                               2826 -[NSCell trackMouse:inRect:ofView:untilMouseUp:]  (in AppKit) + 2316  [0x7fff93baa6c5]
        +                                 2826 -[NSCell _sendActionFrom:]  (in AppKit) + 128  [0x7fff93b90ced]
        +                                   2826 -[NSControl sendAction:to:]  (in AppKit) + 86  [0x7fff93b441be]
        +                                     2826 -[NSApplication sendAction:to:from:]  (in AppKit) + 327  [0x7fff93b44340]
        +                                       2826 ???  (in iCloud)  load address 0x102b7a000 + 0xd479  [0x102b87479]
        +                                         2826 -[MMCalendarsService setEnabled:creating:withWindow:]  (in AOSUI) + 95  [0x105445642]
        +                                           2826 -[MMCalendarsService hasDataToMerge]  (in AOSUI) + 17  [0x105445a14]
        +                                             2826 -[MMCalendarsService _calendarHasLocalCalendars]  (in AOSUI) + 32  [0x105445a39]
        +                                               2826 -[MMService valueForProperty:]  (in AOSUI) + 64  [0x10543c603]
        +                                                 2826 MMServiceCopyProperty  (in AOSAccounts) + 114  [0x7fff8d82c422]
        +                                                   2826 CalendarProvider::GetProperty(__CFString const*, void const**)  (in AOSAccounts) + 149  [0x7fff8d82531b]
        +                                                     2826 ???  (in Calendar)  load address 0x102bd2000 + 0x8100  [0x102bda100]
        +                                                       2826 +[CalCalendarStore defaultCalendarStore]  (in CalendarStore) + 182  [0x7fff93609749]
        +                                                         2826 +[CalPersistence defaultCalendarPersistence]  (in CalendarPersistence) + 29  [0x7fff8ee143dd]
        +                                                           2826 _dispatch_group_wait_slow  (in libdispatch.dylib) + 208  [0x7fff97041ddd]
        +                                                             2826 semaphore_wait_trap  (in libsystem_kernel.dylib) + 10  [0x7fff90210a56]
        2826 Thread_302251   DispatchQueue_216: ConnectToDatabaseQueue  (concurrent)
        + 2826 start_wqthread  (in libsystem_pthread.dylib) + 13  [0x7fff90467fb9]
        +   2826 _pthread_wqthread  (in libsystem_pthread.dylib) + 314  [0x7fff90464ef8]
        +     2826 _dispatch_worker_thread2  (in libdispatch.dylib) + 40  [0x7fff9703e193]
        +       2826 _dispatch_root_queue_drain  (in libdispatch.dylib) + 326  [0x7fff9703d09e]
        +         2826 _dispatch_client_callout  (in libdispatch.dylib) + 8  [0x7fff9703b2ad]
        +           2826 _dispatch_async_redirect_invoke  (in libdispatch.dylib) + 154  [0x7fff9703f7ff]
        +             2826 _dispatch_client_callout  (in libdispatch.dylib) + 8  [0x7fff9703b2ad]
        +               2826 _dispatch_call_block_and_release  (in libdispatch.dylib) + 12  [0x7fff9703e1d7]
        +                 2826 __87+[CalPersistence asyncConnectToPersistenceWithClientXPCWaitingOnGroup:completionBlock:]_block_in voke326  (in CalendarPersistence) + 125  [0x7fff8ef4c4c0]
        +                   2826 +[CalPersistence _startCoreDataXPCServer:]  (in CalendarPersistence) + 339  [0x7fff8ef4bbcb]
        +                     2826 _dispatch_semaphore_wait_slow  (in libdispatch.dylib) + 206  [0x7fff9703fa15]
        +                       2826 semaphore_wait_trap  (in libsystem_kernel.dylib) + 10  [0x7fff90210a56]
        2826 Thread_302252   DispatchQueue_2: com.apple.libdispatch-manager  (serial)
        + 2826 _dispatch_mgr_thread  (in libdispatch.dylib) + 52  [0x7fff9703d152]
        +   2826 _dispatch_mgr_invoke  (in libdispatch.dylib) + 239  [0x7fff9703d43d]
        +     2826 kevent64  (in libsystem_kernel.dylib) + 10  [0x7fff90215662]
        2826 Thread_302466
        + 2826 thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
        +   2826 _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
        +     2826 _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
        +       2826 _NSEventThread  (in AppKit) + 144  [0x7fff93ac616e]
        +         2826 CFRunLoopRunSpecific  (in CoreFoundation) + 309  [0x7fff965130b5]
        +           2826 __CFRunLoopRun  (in CoreFoundation) + 1161  [0x7fff96513779]
        +             2826 __CFRunLoopServiceMachPort  (in CoreFoundation) + 181  [0x7fff96514155]
        +               2826 mach_msg  (in libsystem_kernel.dylib) + 64  [0x7fff9020fd18]
        +                 2826 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x7fff90210a1a]
        2826 Thread_310827: com.apple.NSURLConnectionLoader
        + 2826 thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
        +   2826 _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
        +     2826 _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
        +       2826 __NSThread__main__  (in Foundation) + 1318  [0x7fff926b176b]
        +         2826 +[NSURLConnection(Loader) _resourceLoadLoop:]  (in Foundation) + 348  [0x7fff926b1967]
        +           2826 CFRunLoopRunSpecific  (in CoreFoundation) + 309  [0x7fff965130b5]
        +             2826 __CFRunLoopRun  (in CoreFoundation) + 1161  [0x7fff96513779]
        +               2826 __CFRunLoopServiceMachPort  (in CoreFoundation) + 181  [0x7fff96514155]
        +                 2826 mach_msg  (in libsystem_kernel.dylib) + 64  [0x7fff9020fd18]
        +                   2826 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x7fff90210a1a]
        2826 Thread_310833: JavaScriptCore::BlockFree
        + 2826 thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
        +   2826 _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
        +     2826 _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
        +       2826 ***::wtfThreadEntryPoint(void*)  (in JavaScriptCore) + 15  [0x7fff929adc5f]
        +         2826 JSC::BlockAllocator::blockFreeingThreadMain()  (in JavaScriptCore) + 261  [0x7fff929b89c5]
        +           2826 _pthread_cond_wait  (in libsystem_pthread.dylib) + 727  [0x7fff90465c3b]
        +             2826 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x7fff90214716]
        2826 Thread_310834: JavaScriptCore::Marking
        + 2826 thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
        +   2826 _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
        +     2826 _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
        +       2826 ***::wtfThreadEntryPoint(void*)  (in JavaScriptCore) + 15  [0x7fff929adc5f]
        +         2826 JSC::GCThread::gcThreadMain()  (in JavaScriptCore) + 88  [0x7fff929b92c8]
        +           2826 JSC::GCThread::waitForNextPhase()  (in JavaScriptCore) + 119  [0x7fff929b9437]
        +             2826 _pthread_cond_wait  (in libsystem_pthread.dylib) + 727  [0x7fff90465c3b]
        +               2826 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x7fff90214716]
        2826 Thread_310861: com.apple.CFSocket.private
        + 2826 thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
        +   2826 _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
        +     2826 _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
        +       2826 __CFSocketManager  (in CoreFoundation) + 867  [0x7fff9655fb83]
        +         2826 __select  (in libsystem_kernel.dylib) + 10  [0x7fff902149aa]
        143 Thread_324056
          143 start_wqthread  (in libsystem_pthread.dylib) + 13  [0x7fff90467fb9]
            143 _pthread_wqthread  (in libsystem_pthread.dylib) + 330  [0x7fff90464f08]
              143 __workq_kernreturn  (in libsystem_kernel.dylib) + 10  [0x7fff90214e6a]
    Total number in stack (recursive counted multiple, when >=5):
            5       _pthread_body  (in libsystem_pthread.dylib) + 138  [0x7fff90463899]
            5       _pthread_start  (in libsystem_pthread.dylib) + 137  [0x7fff9046372a]
            5       thread_start  (in libsystem_pthread.dylib) + 13  [0x7fff90467fc9]
    Sort by top of stack, same collapsed (when >= 5):
            __psynch_cvwait  (in libsystem_kernel.dylib)        5652
            mach_msg_trap  (in libsystem_kernel.dylib)        5652
            semaphore_wait_trap  (in libsystem_kernel.dylib)        5652
            __select  (in libsystem_kernel.dylib)        2826
            kevent64  (in libsystem_kernel.dylib)        2826
            __workq_kernreturn  (in libsystem_kernel.dylib)        143
    Binary Images:
           0x1023a7000 -        0x1023a7fff  com.apple.preferences.icloud.remoteservice (316 - 329) <5631E87F-1DB8-3446-AE32-9FA89AC68EE1> /System/Library/PreferencePanes/iCloudPref.prefPane/Contents/XPCServices/com.ap ple.preferences.icloud.remoteservice.xpc/Contents/MacOS/com.apple.preferences.ic loud.remoteservice
           0x102b65000 -        0x102b6bff7  com.apple.preferences.icloud (317 - 329) <257515A5-7D0F-351C-9346-C50AF2AF1856> /System/Library/PreferencePanes/iCloudPref.prefPane/Contents/MacOS/iCloudPref
           0x102b7a000 -        0x102b99ff7  com.apple.icloud.iaplugin (426 - 459) <DB692087-05B0-385A-9281-58C8EBEB607A> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
           0x102bbe000 -        0x102bc8ff7  com.apple.mail.iaplugin (7.2 - 1874) <80A653D9-55FD-3214-A477-67B1340755D0> /System/Library/InternetAccounts/Mail.iaplugin/Contents/MacOS/Mail
           0x102bd2000 -        0x102bdeff7  com.apple.calendar.iaplugin (7.0 - 1366) <C5D4A563-A116-3442-98A9-D71B17F1E211> /System/Library/InternetAccounts/Calendar.iaplugin/Contents/MacOS/Calendar
           0x102be7000 -        0x102be8fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1369) <FC0AC7FD-5351-3F6B-9D24-DD3BAA52C5ED> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x102c15000 -        0x102c1dfff  com.apple.contacts.iaplugin (8.0 - 1369) <A3DE5B6F-C9FE-3FE8-8C25-7BE98F64CA25> /System/Library/InternetAccounts/AddressBook.iaplugin/Contents/MacOS/AddressBoo k
           0x10543a000 -        0x1054c0fff  com.apple.AOSUI (1.2 - 273) <92D761D5-1ABC-3A29-9306-018570EF6005> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
           0x105aef000 -        0x105af3ff7  com.apple.DirectoryServicesSource (8.0 - 1369) <7D4F2AE3-325D-36BA-8DA7-590CFC67AF49> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x105afa000 -        0x105b46ff6  com.apple.AddressBook.CardDAVPlugin (10.9 - 424) <F31B84D6-DCFA-3834-BA28-AC53FE98B03F> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x105b75000 -        0x105b80fff  com.apple.Notes.iaplugin (2.0 - 284) <BF5A1CB0-1040-3781-B19B-C7C4C864DFEC> /System/Library/InternetAccounts/Notes.iaplugin/Contents/MacOS/Notes
           0x105b89000 -        0x105b8cfff  libspindump.dylib (161.2) <B8AA261C-AACA-3924-AB0E-06E2C37E48B0> /usr/lib/libspindump.dylib
           0x105bba000 -        0x105bc6ff7  com.apple.reminders.iaplugin (7.0 - 1366) <746ABED7-9075-34FA-B938-19D19FAF06B9> /System/Library/InternetAccounts/Reminders.iaplugin/Contents/MacOS/Reminders
           0x105cf8000 -        0x105d0aff7  com.apple.webcontentfilter.framework (5.1 - 5.1) <8DBB3836-0272-3CA9-8E3D-BD5A985830EC> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
           0x105d5c000 -        0x105d5efff  apop.so (170.1) <97DD24EE-D5F4-34EB-B521-D7BA883D2606> /usr/lib/sasl2/apop.so
           0x105d62000 -        0x105d72ff7  dhx.so (170.1) <E4299F4A-F42C-397A-A306-58161EFD7686> /usr/lib/sasl2/dhx.so
           0x105d7e000 -        0x105d86fff  digestmd5WebDAV.so (170.1) <B11199EC-EF62-3592-AE51-38EBD1B6282F> /usr/lib/sasl2/digestmd5WebDAV.so
           0x105d8b000 -        0x105d8dfff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
           0x105d91000 -        0x105d93fff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
           0x105d98000 -        0x105da0ff7  libdigestmd5.2.so (170) <122C0383-F9B2-34D1-89AF-D317BC4D5164> /usr/lib/sasl2/libdigestmd5.2.so
           0x105da5000 -        0x105da9fff  libgssapiv2.2.so (170) <AA58D85E-916C-3B0B-959A-DCC58497D0F2> /usr/lib/sasl2/libgssapiv2.2.so
           0x105dae000 -        0x105db0fff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
           0x105db4000 -        0x105db9fff  libntlm.so (170) <18693B29-154F-339C-A329-4C42A43F6428> /usr/lib/sasl2/libntlm.so
           0x105dbe000 -        0x105dc5fff  libotp.2.so (170) <D1C70F92-1C75-340B-AD53-0C2CD79144FF> /usr/lib/sasl2/libotp.2.so
           0x105dce000 -        0x105dd0fff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
           0x105dd4000 -        0x105dd8ffd  libpps.so (170.1) <C7604F07-E966-33F7-8727-93F000CBA92F> /usr/lib/sasl2/libpps.so
           0x105ddd000 -        0x105de0fff  mschapv2.so (170.1) <C79F63BB-E66D-3552-9C4C-2D3EB14CEE01> /usr/lib/sasl2/mschapv2.so
           0x105de5000 -        0x105e0dff6  com.apple.DirectoryService.PasswordServerFramework (10.9 - 36) <C36B818F-C1FE-3F3F-A01C-F4613F570D4D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x105e23000 -        0x105e25fff  pwauxprop.so (400.1) <B95FA3F5-0EE9-335E-BBC7-FDEDEB7F18F0> /usr/lib/sasl2/pwauxprop.so
           0x105e2a000 -        0x105e2cfff  shadow_auxprop.so (170.1) <E02127CB-F9C0-3E3B-ABBB-473EC0CB6DE7> /usr/lib/sasl2/shadow_auxprop.so
           0x105e31000 -        0x105e33fff  smb_nt.so (170.1) <B508FD03-CE31-3B93-91D7-440BEDAD9581> /usr/lib/sasl2/smb_nt.so
           0x105e38000 -        0x105e3afff  smb_ntlmv2.so (170.1) <938D40AF-BEB3-3F55-B409-C84E3C2886FD> /usr/lib/sasl2/smb_ntlmv2.so
        0x7fff60b39000 -     0x7fff60b6c817  dyld (239.4 - ???) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff8a88f000 -     0x7fff8a890ff7  libSystem.B.dylib (1197.1.1) <5292BF21-9406-32D5-8BB3-7DD02C672FA0> /usr/lib/libSystem.B.dylib
        0x7fff8a891000 -     0x7fff8a9ffff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8aa00000 -     0x7fff8aa0bff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A9866D67-C5A8-36D1-A1DB-E2FA60328698> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8aa4e000 -     0x7fff8acaffff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8acb0000 -     0x7fff8acd4ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8acd5000 -     0x7fff8ad34fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8ad35000 -     0x7fff8ad38ffa  libCGXType.A.dylib (599.20.11) <C0B41DDE-0988-3652-B03B-9E5EB0DABAEB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8ad39000 -     0x7fff8b11affe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8b11b000 -     0x7fff8b120fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8b121000 -     0x7fff8b12bff7  libcsfde.dylib (380) <A3673EC2-5B81-3190-9BA5-F27013118EC6> /usr/lib/libcsfde.dylib
        0x7fff8b12c000 -     0x7fff8b20bfff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8b20c000 -     0x7fff8b3b9f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8b3ba000 -     0x7fff8b3ccfff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8b3cd000 -     0x7fff8b50efff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8b50f000 -     0x7fff8b510ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8b535000 -     0x7fff8b597ff7  com.apple.WhitePagesFramework (10.7.0 - 141.0) <F95E1174-37B7-300C-8ECE-E67A711B6721> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff8b5ee000 -     0x7fff8b6a6ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8b6b4000 -     0x7fff8b705fff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8b706000 -     0x7fff8b712ff7  com.apple.KerberosHelper (4.0 - 1.0) <6D64703B-D7A3-3EF7-89AB-16F7F89333FC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8b73d000 -     0x7fff8b7dafff  com.apple.imcore (10.0 - 1000) <DF924E35-74AB-389C-9279-1828518218F8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8b7db000 -     0x7fff8b7e3fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8b7e4000 -     0x7fff8b831fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b83c000 -     0x7fff8bc8afff  com.apple.VideoToolbox (1.0 - 1273.49) <27177077-9107-3E06-ADAD-92B80E80CDCD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8bc8b000 -     0x7fff8bcddfff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff8bcde000 -     0x7fff8be00ff1  com.apple.avfoundation (2.0 - 651.12) <5261E6EA-7476-32B2-A12A-D42598A9B2EA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8be01000 -     0x7fff8be0cff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8be0d000 -     0x7fff8bedeff1  com.apple.DiskImagesFramework (10.9 - 371.1) <96C40A82-D2F7-310D-879B-7D8960510878> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8bedf000 -     0x7fff8cd2dfff  com.apple.WebCore (9537 - 9537.74.11) <9683BA7C-A04B-3E33-B195-DCF1C2CABF95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8cd2e000 -     0x7fff8cd36fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8cd37000 -     0x7fff8cd39fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff8cd3a000 -     0x7fff8cd3dfff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8cd84000 -     0x7fff8cd88ff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8cd89000 -     0x7fff8cd89fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8cd8f000 -     0x7fff8cdbefd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff8cdbf000 -     0x7fff8cdccff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8cdcd000 -     0x7fff8cdd2fff  com.apple.NetFSServer (2.0 - 1) <9B7BAA23-4D4D-30A2-8538-DFD3B1E347A6> /System/Library/PrivateFrameworks/NetFSServer.framework/Versions/A/NetFSServer
        0x7fff8cdd3000 -     0x7fff8cdebff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8cdec000 -     0x7fff8cfaafff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8cfd9000 -     0x7fff8cff1ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8cff2000 -     0x7fff8cff3fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8d101000 -     0x7fff8d125fff  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
        0x7fff8d126000 -     0x7fff8d168ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8d169000 -     0x7fff8d184ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8d185000 -     0x7fff8d1e2fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff8d1e3000 -     0x7fff8d1e4fff  com.apple.AddressBook.ContactsData (8.0 - 1369) <BAF434EC-32B6-3F1C-8ABE-4419A15829FF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8d1e5000 -     0x7fff8d1eeff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8d1f2000 -     0x7fff8d49cff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8d49d000 -     0x7fff8d4a5ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8d4a8000 -     0x7fff8d4f6fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8d4f7000 -     0x7fff8d523ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8d524000 -     0x7fff8d527ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8d528000 -     0x7fff8d568fff  com.apple.PassKit (1.0 - 1) <CE4A0FC6-6E65-38AC-BC8E-74821D713B43> /System/Library/PrivateFrameworks/PassKit.framework/Versions/A/PassKit
        0x7fff8d569000 -     0x7fff8d7c2ff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8d7c3000 -     0x7fff8d81ffff  com.apple.coredav (1.0.1 - 229.6) <6D2B49E8-E81D-36C7-BC24-FD54FA35E5BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff8d820000 -     0x7fff8d846fff  com.apple.AOSAccounts (1.2.47 - 1.2.74) <BA7AA453-31FB-304A-A40C-14B20533C31D> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
        0x7fff8d847000 -     0x7fff8dc7affb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8dc7b000 -     0x7fff8dc83ffb  com.apple.CloudServices (1.0 - 1) <644772DA-9267-376D-AD90-749D6B692566> /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi ces
        0x7fff8dc84000 -     0x7fff8dcc5fff  com.apple.PerformanceAnalysis (1.47 - 47) <B5B491F2-EF86-3382-B23B-EA78AC40AF25> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8dcc6000 -     0x7fff8dd6fff7  com.apple.MailCore (7.2 - 1874) <68F605E3-F062-345C-B86F-1285B7A1F6AB> /System/Library/PrivateFrameworks/MailCore.framework/Versions/A/MailCore
        0x7fff8dd72000 -     0x7fff8de02fff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8de53000 -     0x7fff8dea6fff  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
        0x7fff8dea7000 -     0x7fff8e417fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8e418000 -     0x7fff8e4c8ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8e4c9000 -     0x7fff8e4edfff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8e4ee000 -     0x7fff8e4f2fff  com.apple.FindMyMac (2.1 - 2.1) <57D589E9-B726-3519-BE99-1B38F7737ED6> /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/FindMyMac
        0x7fff8e4f3000 -     0x7fff8e4f6ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
        0x7fff8e4f7000 -     0x7fff8e4fcfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8e4fd000 -     0x7fff8e6b5ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
        0x7fff8e6b6000 -     0x7fff8e787fff  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
        0x7fff8e788000 -     0x7fff8e78afff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8e78b000 -     0x7fff8eac1fff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8eac2000 -     0x7fff8eaceff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8eacf000 -     0x7fff8ead9ff7  com.apple.CrashReporterSupport (10.9 - 538) <DD7669BA-78A6-3BEA-8410-17F556ACAA18> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8eada000 -     0x7fff8eae0ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff8eae1000 -     0x7fff8eafcff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8eafd000 -     0x7fff8eb42ffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8eb43000 -     0x7fff8eb9afff  com.apple.IMAP (7.2 - 1874) <9BEBD1CB-EE18-3728-84D9-092EA0AE112C> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
        0x7fff8eba8000 -     0x7fff8eba9ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff8ebb8000 -     0x7fff8ebe9fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8ebea000 -     0x7fff8ed20ff6  com.apple.WebKit (9537 - 9537.74.9) <CA0C0387-8A66-34D4-8B1C-F5CDDBDA76BB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8ed21000 -     0x7fff8ed94fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8ed95000 -     0x7fff8efc5ff7  com.apple.CalendarPersistence (7.0 - 138) <A8BDC8DD-9DE2-3819-9B11-114671B6EBB8> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence
        0x7fff8efc6000 -     0x7fff8eff5fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8eff6000 -     0x7fff8f020ff7  libsandbox.1.dylib (278.11) <9E5654BF-DCD3-3B15-9C63-209B2B2D2803> /usr/lib/libsandbox.1.dylib
        0x7fff8f021000 -     0x7fff8f940af3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8f94b000 -     0x7fff8f94fff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
        0x7fff8f950000 -     0x7fff8fe73fff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8fe74000 -     0x7fff900d1ffd  com.apple.RawCamera.bundle (5.03 - 731) <99C18399-B160-3C4A-AEDC-A2FD4944FCC6> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff900d2000 -     0x7fff900d2fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff900d3000 -     0x7fff900d7fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff900d8000 -     0x7fff90133ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff90161000 -     0x7fff90172fff  com.apple.idsfoundation (10.0 - 1000) <D3E6646B-4118-30D3-B4F7-DA9A28B396E4> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff901c2000 -     0x7fff901feff7  com.apple.ids (10.0 - 1000) <632F7192-0399-34C8-B6BB-463D2F4370E0> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff901ff000 -     0x7fff9021bff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
        0x7fff9021c000 -     0x7fff9021ffff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff90220000 -     0x7fff90228ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff90230000 -     0x7fff9023cff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff9023d000 -     0x7fff90262ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff902fa000 -     0x7fff902fcff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff90351000 -     0x7fff90353fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff90354000 -     0x7fff90359ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff9035a000 -     0x7fff9035eff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff9035f000 -     0x7fff90428fff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff90429000 -     0x7fff90431ffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff90432000 -     0x7fff90444ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <4A5857F9-E249-3FA6-ADBB-410606AEC8CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff9045f000 -     0x7fff90461fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff90462000 -     0x7fff90469ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff90e5c000 -     0x7fff90e60ff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
        0x7fff90e61000 -     0x7fff90f67ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff90f68000 -     0x7fff90f71ffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff90f72000 -     0x7fff90f82ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff90f83000 -     0x7fff91071fff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff9108c000 -     0x7fff9108efff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff9108f000 -     0x7fff91092fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff91093000 -     0x7fff910a1fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff910a2000 -     0x7fff912b8fff  com.apple.Mail.framework (7.2 - 1874) <1E9D6A31-FF20-3102-8EB9-3FCF1E13D3EC> /System/Library/PrivateFrameworks/Mail.framework/Versions/A/Mail
        0x7fff912b9000 -     0x7fff912c0ff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff912c1000 -     0x7fff9132bff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff913b4000 -     0x7fff913cbff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff913f7000 -     0x7fff9145aff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff9145b000 -     0x7fff914bffff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff914c0000 -     0x7fff91526fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff91527000 -     0x7fff9160eff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff9169a000 -     0x7fff916b3ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff916b4000 -     0x7fff916b4fff  com.apple.Carbon (154 - 157) <EFC1A1C0-CB07-395A-B038-CFA2E71D3E69> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff916bc000 -     0x7fff916bcffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff916bd000 -     0x7fff916f8fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff91983000 -     0x7fff919e3fff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff919e4000 -     0x7fff91a1cff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff91a1d000 -     0x7fff91caeff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff91e49000 -     0x7fff91e70ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff91ef9000 -     0x7fff91f0aff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff91f0b000 -     0x7fff91f31fff  com.apple.iCalendar (7.0 - 162) <2B270453-6FFD-3AD3-B40B-51715BE66B33> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff91f34000 -     0x7fff91f41fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff91f42000 -     0x7fff91fb9fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <DAF9AF17-0AC5-364C-B0BF-B1AF3FB4A07F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff91fba000 -     0x7fff91fc5fff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
        0x7fff91fc6000 -     0x7fff91fc6ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff91fc7000 -     0x7fff91ff0fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff91ff1000 -     0x7fff92019ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff920b2000 -     0x7fff920b8fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff920b9000 -     0x7fff920b9fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff920ba000 -     0x7fff920c1ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff920c2000 -     0x7fff921acfff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff921ad000 -     0x7fff921ebff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff921ec000 -     0x7fff924c0fc7  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
        0x7fff924c1000 -     0x7fff924cbff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff924cc000 -     0x7fff924d7fff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff924d8000 -     0x7fff924f1ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff924f2000 -     0x7fff92527ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff92528000 -     0x7fff9252dff7  com.apple.EmailAddressing (7.2 - 1874) <F889E9E5-A143-38F1-91E3-61CF2344A917> /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd ressing
        0x7fff9252e000 -     0x7fff9258cff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff9258d000 -     0x7fff925d8fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff92613000 -     0x7fff92648ffb  com.apple.datadetectors (5.0 - 246.0) <1C4C33FE-F364-3DBA-A1BC-4A53E594CFD3> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff92649000 -     0x7fff9264aff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff9264b000 -     0x7fff92949fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9294a000 -     0x7fff9294afff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff9294b000 -     0x7fff92955fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff92956000 -     0x7fff9295afff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff9295b000 -     0x7fff9295cff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff9295d000 -     0x7fff929a3fff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff929a4000 -     0x7fff92d1bffa  com.apple.JavaScriptCore (9537 - 9537.74.4) <0942FE6B-3152-30FC-B92A-92A1C29C5295> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff92d1c000 -     0x7fff92d1dffc  com.apple.SafariServices.framework (9537 - 9537.74.9) <DEA8E71D-D366-3767-870D-41611614874D> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff930b7000 -     0x7fff930d5fff  com.apple.facetimeservices (10.0 - 1000) <DED6A966-DF0E-3E58-BD34-D85ED82A99D7> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff930d6000 -     0x7fff9331cfff  com.apple.AddressBook.framework (8.0 - 1369) <3D1A8D58-6A9E-366C-BDB8-ECC6F279DB24> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff9331d000 -     0x7fff93327ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff93328000 -     0x7fff93361ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff93362000 -     0x7fff93363fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff93364000 -     0x7fff93394fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff93395000 -     0x7fff933a4ff8  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
        0x7fff933a5000 -     0x7fff933d9fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff933da000 -     0x7fff93401ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff93402000 -     0x7fff9341dff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff9341e000 -     0x7fff934e2ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff934e3000 -     0x7fff934e4ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff934e5000 -     0x7fff934f9fff  com.apple.aps.framework (4.0 - 4.0) <23BC5746-0914-3102-B84F-BEAB31A77AEC> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff934fa000 -     0x7fff9350dff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff9350e000 -     0x7fff93530fff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff93531000 -     0x7fff93578ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
        0x7fff93579000 -     0x7fff935b9ff7  com.apple.CalDAV (7.0 - 155.2) <B96DAB4A-7431-3FD2-971B-726A67F6E004> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff935eb000 -     0x7fff93607fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff93608000 -     0x7fff93623ff7  com.apple.CalendarStore (7.0 - 1366) <27072D7F-8281-3958-A66C-3A3F862F3458> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff937a2000 -     0x7fff937a5ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff937a6000 -     0x7fff93831fff  libCoreStorage.dylib (380) <310E877E-0770-385F-B170-FA4623E753E1> /usr/lib/libCoreStorage.dylib
        0x7fff9384e000 -     0x7fff9385fff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff93860000 -     0x7fff93862fff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff93863000 -     0x7fff93865ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
        0x7fff93866000 -     0x7fff93901fff  com.apple.PDFKit (2.9.1 - 2.9.1) <F4DFF4F2-6DA3-3B1B-823E-D9ED271A1522> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff93902000 -     0x7fff94478fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff9452f000 -     0x7fff945b7ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff9482e000 -     0x7fff9483bff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff948df000 -     0x7fff9494eff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff9494f000 -     0x7fff94a3efff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff94a49000 -     0x7fff94bb9ff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff94bba000 -     0x7fff94bd7ff7  com.apple.framework.Apple80211 (9.3.1 - 931.58) <D5B2DD15-3DCC-31F6-9320-3A20A887C5D5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff94fb4000 -     0x7fff94fd6fff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <C2687C2C-239A-3EB4-857C-BA107F34A5E8> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff94feb000 -     0x7fff950adff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff950ae000 -     0x7fff950cafff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff950cb000 -     0x7fff950cbfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff950d6000 -     0x7fff950d6fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <6FD70177-7044-3EFE-905F-08F1D2D40ECA> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
        0x7fff950d7000 -     0x7fff950f6ff7  com.apple.CalendarFoundation (7.0 - 113.1) <12352B25-2DCF-38C8-9776-CCC68907CF50> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
        0x7fff950f7000 -     0x7fff95123fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff95124000 -     0x7fff95134fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff95135000 -     0x7fff951beff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff951bf000 -     0x7fff951c8fff  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
        0x7fff951c9000 -     0x7fff95217fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff95284000 -     0x7fff952cbfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff952cc000 -     0x7fff952d6ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff952d7000 -     0x7fff95360fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff95361000 -     0x7fff95390ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff95391000 -     0x7fff953a3fff  com.apple.addressbook.ContactsAutocomplete (8.0 - 1369) <3FE9486E-0B79-32FE-A544-9B323BF160B7> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/Versions/A/Con tactsAutocomplete
        0x7fff953a4000 -     0x7fff954d3fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlS

    Been looking for similar posts, surprised I haven't found more, because I'm fairly certain that there is a current problem with some parts of Apple's server network: I have 3 iCloud accounts in Mail on my Macbook, and 1 of them (annoyingly, my main one) has not been able to connect for an hour or two. And both of the others wouldn't connect for a few minutes, but are now working again.
    More suprising is that trying to log in to webmail (www.icloud.com) is giving a very unhelpful error message, suggesting the server is down. Everything else Internet is working fine for me, and haven't changed any settings, so fairly sure problem is Apple's end.
    It's possible that your iPhone is collecting your mail via a different server route that is still working; my three iCloud accounts are collecting via p02.imap.mail.me.com, p09.imap.mail.me.com and p99.imap.mail.me.com, and it's only p02 that's consistantly not working.

  • Constant kernel panic in regular boot sequence - HELP!

    Hi,
    I purchased my mac pro in march of 08. By june, my monitor had begun emitting a pink hue over everything. I replaced the monitor only to find that the problem was related to the computer itself, the pink color persisted on the new monitor. So I started using the one other working monitor port and researching the problem. I heard from a couple people that it sounded like a problem with my video card. It continued to worsen, the crash rate started to escalate slowly over a period of 4-5 months. Now it consistently crashes within 5 minutes of booting up, usually crashing immediately when the interface loads or shortly beforehand.
    I took it into an apple certified technician to have it looked at. I brought only the computer itself since the problem had persisted on multiple monitors. One week later, they told me there was nothing wrong with the video card and they couldn't reproduce the problems i had described. So i bought a new vga/dvi converter and brought it home only to find the EXACT same issues on both monitor ports, pink screen or constant kernel panic.
    So I zapped the PRAM 3 times, reset the power source, cleaned out the inside of the computer, played chinese firedrill with my ram cards, and rebooted in safemode. It FINALLY WORKS but ONLY in safemode which leads me to believe there is a faulty system extension or driver that is causing the kernel panic.
    What is the simplest way to resolve this problem? I can't spend 5 hours isolating the possible .kext files. Will upgrading my OS to leopard fix these issues, i.e. replace the system extensions with new files that might eliminate the problem?
    I appreciate anyone that can offer help. Thanks!

    Thanks BDAqua for your feedback!
    I checked the panic log and the system log but still can't see what might be causing the problem. I tried booting from disk by pushing the 'd' key directly after the startup beep and before the gray screen appears to no avail. I also tried the 'c' key, command-'d', and option-'d' to no avail. When i access the bootdisk from the volume on my desktop and click 'install mac os x' i get the following error:
    "Mac os 10.4 cannot be installed on this machine. Please consult the documentation for a list of supported Macintosh computers."
    This seems odd since i am running 10.4.11. Below is a sample entry from the kernel panic log and the correlated logs from system log at the time of the panic. Is there anything else i can do? I don't understand why the mac tech support wasn't able to reproduce these debilitating problems.
    Sat Jan 24 12:28:28 2009
    panic(cpu 3 caller 0x001A49CB): Unresolved kernel trap (CPU 3, Type 14=page fault), registers:
    CR0: 0x80010033, CR2: 0x80b1438e, CR3: 0x010a5000, CR4: 0x000006e0
    EAX: 0x00000000, EBX: 0x00000001, ECX: 0x4e153cc0, EDX: 0x80b14000
    CR2: 0x80b1438e, EBP: 0x4e153ce8, ESI: 0x0caff000, EDI: 0x000005eb
    EFL: 0x00010286, EIP: 0x009114db, CS: 0x00000008, DS: 0x00000010
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x4e153a98 : 0x128d0d (0x3cc65c 0x4e153abc 0x131f95 0x0)
    0x4e153ad8 : 0x1a49cb (0x3d2a94 0x3 0xe 0x3d22b8)
    0x4e153be8 : 0x19b3a4 (0x4e153c00 0x10 0x0 0x200)
    0x4e153ce8 : 0x91163a (0xcaff000 0x5eb 0x0 0x1)
    0x4e153d08 : 0x8f4b90 (0xcaff000 0x5eb 0xd077004 0x9)
    0x4e153d28 : 0x3b3630 (0xd077000 0x5eb 0xd2a19cc 0x0)
    0x4e153d68 : 0x18a698 (0xd077000 0x9 0xd2a19c4 0x1)
    0x4e153db8 : 0x12b4ee (0xd2a199c 0xd0d9ea8 0x0 0x0)
    0x4e153df8 : 0x124b17 (0xd2a1900 0x0 0x30 0x4e153edc)
    0x4e153f08 : 0x195f2e (0x4e153f44 0x0 0x0 0x0)
    0x4e153fc8 : 0x19b81e (0xcf0d960 0x0 0x19e0b5 0xce969a4) No mapping exists for frame pointer
    Backtrace terminated-invalid frame pointer 0xbffedb48
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.GeForce(4.5.6)@0x8e2000
    dependency: com.apple.iokit.IOPCIFamily(2.2)@0x571000
    dependency: com.apple.iokit.IOGraphicsFamily(1.4.8)@0x6bc000
    dependency: com.apple.iokit.IONDRVSupport(1.4.8)@0x6d7000
    dependency: com.apple.NVDAResman(4.5.6)@0x6e6000
    Kernel version:
    Darwin Kernel Version 8.11.1: Wed Oct 10 18:23:28 PDT 2007; root:xnu-792.25.20~1/RELEASE_I386
    System logs:
    Jan 24 12:28:16 localhost kernel[0]: hi mem tramps at 0xffe00000
    Jan 24 12:28:16 localhost kernel[0]: PAE enabled
    Jan 24 12:28:16 localhost kernel[0]: 64 bit mode enabled
    Jan 24 12:28:16 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jan 24 12:28:16 localhost kernel[0]: vmpagebootstrap: 2007570 free pages
    Jan 24 12:28:16 localhost kernel[0]: migtable_maxdispl = 71
    Jan 24 12:28:16 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Jan 24 12:28:16 localhost kernel[0]: 78 prelinked modules
    Jan 24 12:28:16 localhost kernel[0]: ACPI CA 20060421
    Jan 24 12:28:16 localhost kernel[0]: AppleIntelCPUPowerManagement: ready
    Jan 24 12:28:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Jan 24 12:28:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Jan 24 12:28:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=2 LocalApicId=7 Enabled
    Jan 24 12:28:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=3 LocalApicId=6 Enabled
    Jan 24 12:28:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=4 LocalApicId=0 Disabled
    Jan 24 12:28:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=5 LocalApicId=0 Disabled
    Jan 24 12:28:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=6 LocalApicId=0 Disabled
    Jan 24 12:28:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=7 LocalApicId=0 Disabled
    Jan 24 12:28:16 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jan 24 12:28:16 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jan 24 12:28:16 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Jan 24 12:28:16 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Jan 24 12:28:16 localhost kernel[0]: Started CPU 01
    Jan 24 12:28:16 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Jan 24 12:28:16 localhost kernel[0]: Started CPU 02
    Jan 24 12:28:16 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Jan 24 12:28:16 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Jan 24 12:28:16 localhost kernel[0]: Started CPU 03
    Jan 24 12:28:16 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Jan 24 12:28:16 localhost kernel[0]: Security auditing service present
    Jan 24 12:28:16 localhost kernel[0]: BSM auditing present
    Jan 24 12:28:16 localhost kernel[0]: disabled
    Jan 24 12:28:16 localhost kernel[0]: rooting via boot-uuid from /chosen: 884C6DAA-F2D9-4CE3-B7F9-35934D2A6EDE
    Jan 24 12:28:16 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jan 24 12:28:16 localhost kernel[0]: USB caused wake event (EHCI)
    Jan 24 12:28:16 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 001d4ffffe716bae; max speed s800.
    Jan 24 12:28:16 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT0 @0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/WDC WD2500AAJS-41RYA0 Media/IOGUIDPartitionScheme/AppleHFS_Untitled1@2
    Jan 24 12:28:16 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Jan 24 12:28:16 localhost kernel[0]: jnl: replay_journal: from: 23120896 to: 12901376 (joffset 0xf502000)
    Jan 24 12:28:16 localhost kernel[0]: HFS: Removed 2 orphaned unlinked files
    Jan 24 12:28:16 localhost kernel[0]: Jettisoning kernel linker.
    Jan 24 12:28:16 localhost kernel[0]: Resetting IOCatalogue.
    Jan 24 12:28:16 localhost kernel[0]: PXS1: family specific matching fails
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 1
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 2
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 2
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 2
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 2
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 2
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 24
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 24
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 24
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 24
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 24
    Jan 24 12:28:16 localhost kernel[0]: Matching service count = 24
    Jan 24 12:28:16 localhost kernel[0]: NVDANV40HAL loaded and registered.
    Jan 24 12:28:16 localhost kernel[0]: Previous Shutdown Cause: 3
    Jan 24 12:28:16 localhost kernel[0]: PXS1: family specific matching fails
    Jan 24 12:28:16 localhost kernel[0]: PXS1: family specific matching fails
    Jan 24 12:28:16 localhost kernel[0]: IPv6 packet filtering initialized, default to accept, logging disabled
    Jan 24 12:28:16 localhost mDNSResponder-108.6 (Jul 19 2007 11: 41:28)[33]: starting
    Jan 24 12:28:16 localhost memberd[40]: memberd starting up
    Jan 24 12:28:16 localhost DirectoryService[45]: Launched version 2.1 (v353.6)
    Jan 24 12:28:16 localhost lookupd[46]: lookupd (version 369.8) starting - Sat Jan 24 12:28:16 2009
    Jan 24 12:28:17 localhost kernel[0]: AppleIntel8254XEthernet: Ethernet address 00:17:f2:0e:eb:08
    Jan 24 12:28:17 localhost configd[37]: No AirPort Driver found.
    Jan 24 12:28:17 localhost kernel[0]: AppleIntel8254XEthernet: Ethernet address 00:17:f2:0e:eb:09
    Jan 24 12:28:17 localhost diskarbitrationd[39]: disk0s2 hfs CDB580D4-4F11-395E-BF17-94B497D92427 Macintosh HD /
    Jan 24 12:28:17 localhost lookupd[61]: lookupd (version 369.8) starting - Sat Jan 24 12:28:17 2009
    Jan 24 12:28:18 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Jan 24 12:28:18 localhost loginwindow[67]: Login Window Started Security Agent
    Jan 24 12:28:20 localhost kernel[0]: shared_region: 0xb95f59c: lsf_map: RO mapping #0 not in segmentshared region: 0xb95f59c: 5 mappings base_offset=0x3c38000
    Jan 24 12:28:20 localhost mDNSResponder: Adding browse domain local.
    Jan 24 12:28:20 localhost kernel[0]: shared region: 0xb95f59c: #0: addr=0x3c190000, size=0x2d000, file_offset=0x91000, prot=(5,5)
    Jan 24 12:28:20 localhost kernel[0]: shared region: 0xb95f59c: #1: addr=0x0, size=0x4000, file_offset=0xbe000, prot=(11,11)
    Jan 24 12:28:20 localhost kernel[0]: shared region: 0xb95f59c: #2: addr=0x4000, size=0x3000, file_offset=0x0, prot=(27,27)
    Jan 24 12:28:20 localhost kernel[0]: shared region: 0xb95f59c: #3: addr=0x7000, size=0x1000, file_offset=0xc2000, prot=(15,15)
    Jan 24 12:28:20 localhost kernel[0]: shared region: 0xb95f59c: #4: addr=0x3c1bd000, size=0xacc8, file_offset=0xc3000, prot=(1,1)
    Jan 24 12:28:23 localhost kernel[0]: Intel8254x -- Link Down -- 00:17:f2:0e:eb:08 -- called by enableHardware() --
    Jan 24 12:28:23 localhost kernel[0]: -- Auto-Negotiation Advertisement Register (04d) = 0xde1
    Jan 24 12:28:23 localhost kernel[0]: -- Auto-Negotiation Link Partner Ability Register (05d) = 0x0
    Jan 24 12:28:23 localhost kernel[0]: -- Auto-Negotiation Gigabit Advertisement Register (09d) = 0xe00
    Jan 24 12:28:23 localhost kernel[0]: -- Auto-Negotiation Gigabit Link Partner Ability Register (10d) = 0x4000
    Jan 24 12:28:23 localhost kernel[0]: -- PHY Specific Status Register (17d) = 0x8000
    Jan 24 12:28:27 Xaosai kernel[0]: Intel8254x -- Link Down -- 00:17:f2:0e:eb:09 -- called by enableHardware() --
    Jan 24 12:28:27 Xaosai kernel[0]: -- Auto-Negotiation Advertisement Register (04d) = 0xde1
    Jan 24 12:28:27 Xaosai configd[37]: setting hostname to "Xaosai.local"
    Jan 24 12:28:27 Xaosai kernel[0]: -- Auto-Negotiation Link Partner Ability Register (05d) = 0x0
    Jan 24 12:28:27 Xaosai kernel[0]: -- Auto-Negotiation Gigabit Advertisement Register (09d) = 0xe00
    Jan 24 12:28:27 Xaosai kernel[0]: -- Auto-Negotiation Gigabit Link Partner Ability Register (10d) = 0x4000
    Jan 24 12:28:27 Xaosai kernel[0]: -- PHY Specific Status Register (17d) = 0x8000
    *Jan 24 12:28:36 Xaosai diskarbitrationd[39]: SystemUIServer [84]:12587 not responding.*

  • Correlation Between several Different Arrays & Saving Results Into a.CSV file

    Hello Everyone!
    I have 3 arrays from which I initialize a .CSV file when I run my VI (
    as you can see in the example file.)( I use data from other arrays as
    well but it is not important )
    The First array "customer Number" can be from 0 - 15
    The second array "Customer Present" is a Boolean.
    The Third array will contain some fix values like " milk, meat, clothing....." it will have 14 different categories.
    The Fifth array will contain the quantity of the products from each category from the previous array.
    My job is to add in my initialized .CSV file the values from the 4th and 5th array but only for the customers that are present.
    The result should look something like the second part of the doc I give( which sadly, I created by hand)
    If no customer has bought something from a category it should not be mentioned.
    Also it would be nice for me if I separated the file for each customer ( create 16 different files )
    I hope someone has some idea, because I don't.
    I figured out that I should have the bool array into a case structure and if the customer is present then........
    Thank you in advance!
    Attachments:
    Initilized&Data.doc ‏42 KB
    Initialize.GIF ‏21 KB

    I don't understand where correlation fits into this...
    It seems to me that you're trying to write out a file from the values on front panel controls, rather than the other way around, as Bernd was suggesting. I see no actual read functions in your screenshot. What does your front panel look like? Can you post the VI and give a brief description on how it's supposed to be used? You seem to have some front panel arrays that you're indexing out. For this you should be using auto-indexing rather than using a fixed constant. Also, the local variables are completely unnecessary - what I see is text-based programming.

  • Constant crash in /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r

    I have a 2010 unibody Mac Mini.  It came stock with a 320GB HDD and i have upgraded it to 8GB of Apple approved Kingston RAM.
    The machine worked just fine under Mac OS 10.6.8, could be up for days and days and be perfectly stable.
    Since upgrading to Mac OS X 10.8, i have had constant crashes in Safari, and a bunch of other apps and the only thing really similar between the messages is the following line:
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    This error has caused many apps to crash, including but not limited to:
    Safari
    App Store
    VLC
    Quicktime
    PhotoBooth
    Activity Monitor
    Safari seems to be the main culprit, it crashes constantly, i can use it for a bit, then it will crash, sometimes it will crash again directly after re-launch.  There doesn't seem to be any rhyme or reason. Apps do not quit in a cascading fashion, apps that have previously quit with the same line in the logs have not occured concurrently with other crashes at the same time.  I have created a guest account to test the system and I'm having the same issue globally, so i've managed to mostly rule out my profile.  I have no extentions installed and no plugins other than Flash and Silverlight. There seems to be no direct correlation between the use of either of these plugins when the crashes occur. Removing these plugins does not alleviate the problem.  System can be heavily loaded, or entirely idle.  I've come home from a 12 hour day to find a couple apps have crashed during the time i was gone. 
    App store was the only app running when it crashed.  The only other noteable thing to add is that after the crash occurs, the system will spin up all the connected external drives. I have tried disconnecting all external drives and peripherals and have been met with the same issues.
    Anyone have any thoughts one what may be causing this and how it may be fixed (Short of reinstalling...)?
    Here are some more snippets of console logs...
    Process:         WebProcess [35245]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         8536 (8536.26.14)
    Build Info:      WebKit2-7536026014000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  Safari [35223]
    User ID:         502
    Date/Time:       2012-10-06 08:10:08.599 -0600
    OS Version:      Mac OS X 10.8.2 (12C54)
    Report Version:  10
    Interval Since Last Report:          112 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  58 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      4ADFE8AC-D5CE-15CF-35F4-1B776B8AC9A5
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000009457732a0
    VM Regions Near 0x9457732a0:
        ATS (font support)     000000014b252000-000000014b253000 [    4K] rw-/rwx SM=PRV 
    -->
        MALLOC_TINY            00007f8101c00000-00007f8101f00000 [ 3072K] rw-/rwx SM=PRV 
    Application Specific Information:
    Bundle controller class:
    SnapshotFetcherBundleController
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.JavaScriptCore           0x00007fff8a9c1f28 ***::StringImpl::~StringImpl() + 184
    1   com.apple.JavaScriptCore           0x00007fff8ab228aa JSC::JSString::destroy(JSC::JSCell*) + 42
    2   com.apple.JavaScriptCore           0x00007fff8ab476ae JSC::MarkedBlock::FreeList JSC::MarkedBlock::sweepHelper<true>(JSC::MarkedBlock::SweepMode) + 398
    3   com.apple.JavaScriptCore           0x00007fff8ab474d4 JSC::MarkedBlock::sweep(JSC::MarkedBlock::SweepMode) + 36
    4   com.apple.JavaScriptCore           0x00007fff8aaf26cb JSC::Heap::sweep() + 107
    5   com.apple.JavaScriptCore           0x00007fff8aaf2875 JSC::Heap::collect(JSC::Heap::SweepToggle) + 245
    6   com.apple.JavaScriptCore           0x00007fff8aaf164b JSC::DefaultGCActivityCallbackPlatformData::timerDidFire(__CFRunLoopTimer*, void*) + 315
    7   com.apple.CoreFoundation           0x00007fff896bdda4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    8   com.apple.CoreFoundation           0x00007fff896bd8bd __CFRunLoopDoTimer + 557
    9   com.apple.CoreFoundation           0x00007fff896a3099 __CFRunLoopRun + 1513
    10  com.apple.CoreFoundation           0x00007fff896a26b2 CFRunLoopRunSpecific + 290
    11  com.apple.HIToolbox                0x00007fff928c90a4 RunCurrentEventLoopInMode + 209
    12  com.apple.HIToolbox                0x00007fff928c8e42 ReceiveNextEventCommon + 356
    13  com.apple.HIToolbox                0x00007fff928c8cd3 BlockUntilNextEventMatchingListInMode + 62
    14  com.apple.AppKit                   0x00007fff8bb27613 _DPSNextEvent + 685
    15  com.apple.AppKit                   0x00007fff8bb26ed2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    16  com.apple.AppKit                   0x00007fff8bb1e283 -[NSApplication run] + 517
    17  com.apple.WebCore                  0x00007fff8a2e9e0f WebCore::RunLoop::run() + 63
    18  com.apple.WebKit2                  0x00007fff8890ac8a WebKit::WebProcessMain(WebKit::CommandLine const&) + 2586
    19  com.apple.WebKit2                  0x00007fff888d25bd WebKitMain + 285
    20  com.apple.WebProcess               0x0000000102394e7b 0x102394000 + 3707
    21  libdyld.dylib                      0x00007fff8cb447e1 start + 1
    Process:         App Store [35301]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Identifier:      com.apple.appstore
    Version:         1.2.1 (129.7)
    Build Info:      Firenze-129007000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [35047]
    User ID:         502
    Date/Time:       2012-10-06 08:15:30.714 -0600
    OS Version:      Mac OS X 10.8.2 (12C54)
    Report Version:  10
    Interval Since Last Report:          298 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  39 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      4ADFE8AC-D5CE-15CF-35F4-1B776B8AC9A5
    Crashed Thread:  9  Dispatch queue: com.apple.SoftwareUpdate.DistributionEvaluate
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000009135a2cf0
    VM Regions Near 0x9135a2cf0:
        __LINKEDIT             0000000200e5d000-0000000200eb3000 [  344K] r--/rwx SM=COW  /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    -->
        JS JIT generated code  000035cdcd800000-000035cdcd801000 [    4K] ---/rwx SM=NUL 
    Thread 9 Crashed:: Dispatch queue: com.apple.SoftwareUpdate.DistributionEvaluate
    0   libsystem_c.dylib                  0x00007fff8f5f1cae OSAtomicAdd32Barrier$VARIANT$mp + 2
    1   com.apple.JavaScriptCore           0x00007fff8a9e1256 JSClassRelease + 22
    2   com.apple.JavaScriptCore           0x00007fff8aa41b88 OpaqueJSClass::~OpaqueJSClass() + 24
    3   com.apple.JavaScriptCore           0x00007fff8aa3a5f7 OpaqueJSClassContextData::~OpaqueJSClassContextData() + 119
    4   com.apple.JavaScriptCore           0x00007fff8aa398f8 JSC::JSGlobalData::~JSGlobalData() + 712
    5   com.apple.JavaScriptCore           0x00007fff8ab1da17 JSC::JSLockHolder::~JSLockHolder() + 167
    6   com.apple.JavaScriptCore           0x00007fff8a9d0dc8 JSGlobalContextRelease + 216
    7   com.apple.DistributionKit          0x00000001031676aa IFJS_GlobalContextRelease + 41
    8   com.apple.DistributionKit          0x000000010315a536 -[PKDistributionEvaluator dealloc] + 77
    9   com.apple.DistributionKit          0x000000010315756a -[PKDistributionChoiceItem dealloc] + 539
    10  com.apple.CoreFoundation           0x00007fff8967685a CFRelease + 170
    11  com.apple.CoreFoundation           0x00007fff8969dc25 -[__NSArrayM dealloc] + 229
    12  libobjc.A.dylib                    0x00007fff93072230 (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 464
    13  com.apple.CoreFoundation           0x00007fff8969e342 _CFAutoreleasePoolPop + 34
    14  com.apple.Foundation               0x00007fff88fbf4fa -[NSAutoreleasePool drain] + 154
    15  com.apple.SoftwareUpdate.framework     0x0000000102f9ea75 -[SUProductLoadOperation evaluateProduct] + 863
    16  com.apple.SoftwareUpdate.framework     0x0000000102fa3954 __95-[SUScan(Impl) _productsByScanningCatalog:limitedToProductKeys:withLastRecommendedIdentifiers: ]_block_invoke_060 + 49
    17  libdispatch.dylib                  0x00007fff8f583f01 _dispatch_call_block_and_release + 15
    18  libdispatch.dylib                  0x00007fff8f5800b6 _dispatch_client_callout + 8
    19  libdispatch.dylib                  0x00007fff8f58147f _dispatch_queue_drain + 235
    20  libdispatch.dylib                  0x00007fff8f5812f1 _dispatch_queue_invoke + 52
    21  libdispatch.dylib                  0x00007fff8f5811c3 _dispatch_worker_thread2 + 249
    22  libsystem_c.dylib                  0x00007fff8f605cab _pthread_wqthread + 404
    23  libsystem_c.dylib                  0x00007fff8f5f0171 start_wqthread + 13

    Hmmm, it'd make Safari less usefull & AppStore might not work, but try disabling Javascript in Safri & browse best you can.
    The symptoms without the logs are reminiscent of a RAM problem.
    The Memory test can really only be trusted if it finds a problem, not if it doesn't find a problem.
    Memtest OS X...
    http://www.memtestosx.org/joomla/index.php
    Rember is a freeware GUI for the memtest ...
    http://tech.kateva.org/2005/10/rember-freeware-memory-test-utility.html

  • Dynamic Correlation

    Hi All
    In message I am getting 4 requests for 4 receivers.
    In correlation I need to use receiver system name along with Username.
    User name is constant for all the receiving systems but Tricky is System name differs.
    How can I put dynamic correlation in my BPM?

    >
    chitra l wrote:
    > Hi All
    >
    > In message I am getting 4 requests for 4 receivers.
    > In correlation I need to use receiver system name along with Username.
    > User name is constant for all the receiving systems but Tricky is System name differs.
    >
    > How can I put dynamic correlation in my BPM?
    have your user name and system name concatenated into one field and use this field as the correlation

  • Confgure correlation set in BPEL

    All,
    I have a scenario where my plsql proc is taking long time to fetch records from DB. I need to use the records fetched from the db in my bpel process. for that I want to use corrleation set with db adaptor so that at the end of the procedure again the same bpel process will get executed. this is to avoid soa/jta timeout issues between bpel and db operation(Proc). now I am looking for the steps to configure correlation set for this requirement, can anybody help me out?
    Thanks

    Hi Satish,
    Thanks for your answers. I have tried the way you explained, but I am still facing the timeout issue. I have created a once bpel process from which I am invoking an aync bpel process which has db adaptor call to sql. I have created correlation set in the first bpel in the invoke activity which invokes second bpel process. The above sql is already tuned and the time out set in the admin is constant and uniform across all intefaces in my project. So I cann not change the time out property in admin.
    Thanks

  • Correlation editor.

    Hi Experts,   
            I was thrying to see the posibilities of the correlation editor In IR- integration Process- view - corelation editor.
    I would like to know what is the capability of this editor.
    say 2 incoming files, File 1 and File 2  are comin and merging into a single file say File 3. in BPM. Now the simple thing taht it can do is, it can allow a CONTION in a field in  File 1 or 2. and allow its processing to File 3. Say if the Content of file 1 field - name is US , then allow, else throug error. OK.
    But I wish to know is it possible like if File 1 field - Name =   File 2 -  ORG then prosess for File 3 , else stop.Is it possibe??
    What other possibilities are there in Corelation Editor!
    Regards
    Arnab .

    it can allow a CONTION in a field in File 1 or 2. and allow its processing to File 3.
    Correlation does not mean that based on certain value, correlation is set true. This only holds true if you use correlation value as constant.
    But I wish to know is it possible like if File 1 field - Name = File 2 - ORG then prosess for File 3 , else stop.Is it possibe??
    Correlation is used in this way only, i.e. when field say A from one file has same value as some field say B from other file. In this case correlation is used between fields A and B of first and second file respectively.
    Regards,
    Prateek

  • Correlation Editor and xsd:dateTime

    Hello,
    is it possible to use a correlations with the type xsd:dateTime?
    I only can choose xsd:date or xsd:time in the correlation editor of the Integration Builder.
    kind regards
    Thorsten Gawantka

    Hi,
    >is it possible to use a correlations with the type xsd:dateTime?
    No as constant you could only choose xsd:date or xsd:time:
    http://help.sap.com/saphelp_nw04/helpdata/en/fe/26da4105aa3f5de10000000a1550b0/frameset.htm
    Regards
    Patrick

  • XOrg crashes correlated to Java (?)

    I am experiencing several XOrg crashes, that seem strongly correlated to Java problems. It happens when I open GeoGebra or when I try to open some Java applets online. The same thing also happens, although not systematically, when I search for a font on XFCE settings, simply scrolling the list of fonts available.
    I realize this is too little information but I have no clue of what the cause of the problem may be.
    Thanks for help.

    Here are the results of the logs obtained with the dmesg command. The messages are the same after the execution of the Java application or after font search for selection  (followed by XOrg crash):
    [117564.463200] [drm] probing gen 2 caps for device 8086:9c18 = 5323c42/0
    [117564.463205] [drm] PCIE gen 2 link speeds already enabled
    [117564.465904] [drm] PCIE GART of 1024M enabled (table at 0x0000000000276000).
    [117564.466266] radeon 0000:03:00.0: WB enabled
    [117564.466268] radeon 0000:03:00.0: fence driver on ring 0 use gpu addr 0x0000000080000c00 and cpu addr 0xffff88024d4c9c00
    [117564.466270] radeon 0000:03:00.0: fence driver on ring 1 use gpu addr 0x0000000080000c04 and cpu addr 0xffff88024d4c9c04
    [117564.466272] radeon 0000:03:00.0: fence driver on ring 2 use gpu addr 0x0000000080000c08 and cpu addr 0xffff88024d4c9c08
    [117564.466273] radeon 0000:03:00.0: fence driver on ring 3 use gpu addr 0x0000000080000c0c and cpu addr 0xffff88024d4c9c0c
    [117564.466274] radeon 0000:03:00.0: fence driver on ring 4 use gpu addr 0x0000000080000c10 and cpu addr 0xffff88024d4c9c10
    [117564.467814] radeon 0000:03:00.0: fence driver on ring 5 use gpu addr 0x0000000000075a18 and cpu addr 0xffffc90023035a18
    [117564.659791] [drm] ring test on 0 succeeded in 1 usecs
    [117564.659796] [drm] ring test on 1 succeeded in 1 usecs
    [117564.659800] [drm] ring test on 2 succeeded in 1 usecs
    [117564.659808] [drm] ring test on 3 succeeded in 4 usecs
    [117564.659815] [drm] ring test on 4 succeeded in 4 usecs
    [117564.847070] [drm] ring test on 5 succeeded in 2 usecs
    [117564.847077] [drm] UVD initialized successfully.
    [117564.847107] [drm] ib test on ring 0 succeeded in 0 usecs
    [117564.847135] [drm] ib test on ring 1 succeeded in 0 usecs
    [117564.847163] [drm] ib test on ring 2 succeeded in 0 usecs
    [117564.847190] [drm] ib test on ring 3 succeeded in 0 usecs
    [117564.847219] [drm] ib test on ring 4 succeeded in 1 usecs
    [117564.999064] [drm] ib test on ring 5 succeeded
    This is what is on the file /var/log/Xorg.0.log after a crash caused by a Java application.
    [117928.492]
    X.Org X Server 1.16.2
    Release Date: 2014-11-10
    [117928.492] X Protocol Version 11, Revision 0
    [117928.492] Build Operating System: Linux 3.17.2-1-ARCH x86_64
    [117928.492] Current Operating System: Linux XxX 3.17.3-1-ARCH #1 SMP PREEMPT Fri Nov 14 23:13:48 CET 2014 x86_64
    [117928.493] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda5 rw
    [117928.493] Build Date: 10 November 2014 07:52:13PM
    [117928.493]
    [117928.493] Current version of pixman: 0.32.6
    [117928.493] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [117928.493] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [117928.493] (==) Log file: "/var/log/Xorg.0.log", Time: Sun May 3 17:48:45 2015
    [117928.493] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [117928.493] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [117928.493] (==) No Layout section. Using the first Screen section.
    [117928.493] (==) No screen section available. Using defaults.
    [117928.493] (**) |-->Screen "Default Screen Section" (0)
    [117928.493] (**) | |-->Monitor "<default monitor>"
    [117928.493] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [117928.493] (==) Automatically adding devices
    [117928.493] (==) Automatically enabling devices
    [117928.493] (==) Automatically adding GPU devices
    [117928.493] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [117928.493] Entry deleted from font path.
    [117928.493] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [117928.493] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [117928.493] Entry deleted from font path.
    [117928.493] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [117928.493] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [117928.493] (==) ModulePath set to "/usr/lib/xorg/modules"
    [117928.493] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [117928.493] (II) Loader magic: 0x818d80
    [117928.493] (II) Module ABI versions:
    [117928.493] X.Org ANSI C Emulation: 0.4
    [117928.493] X.Org Video Driver: 18.0
    [117928.493] X.Org XInput driver : 21.0
    [117928.493] X.Org Server Extension : 8.0
    [117928.495] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c7
    [117928.495] (II) xfree86: Adding drm device (/dev/dri/card0)
    [117928.495] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [117928.495] (II) xfree86: Adding drm device (/dev/dri/card1)
    [117928.495] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 9 paused 0
    [117928.496] (--) PCI:*(0:0:2:0) 8086:0a16:1025:0775 rev 9, Mem @ 0xc0000000/4194304, 0xb0000000/268435456, I/O @ 0x00004000/64
    [117928.496] (--) PCI: (0:3:0:0) 1002:6600:1025:0776 rev 0, Mem @ 0xa0000000/268435456, 0xc0500000/262144, I/O @ 0x00003000/256, BIOS @ 0x????????/131072
    [117928.496] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [117928.496] (II) LoadModule: "glx"
    [117928.496] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [117928.497] (II) Module glx: vendor="X.Org Foundation"
    [117928.497] compiled for 1.16.2, module version = 1.0.0
    [117928.497] ABI class: X.Org Server Extension, version 8.0
    [117928.497] (==) AIGLX enabled
    [117928.497] (==) Matched intel as autoconfigured driver 0
    [117928.497] (==) Matched ati as autoconfigured driver 1
    [117928.497] (==) Matched intel as autoconfigured driver 2
    [117928.497] (==) Matched modesetting as autoconfigured driver 3
    [117928.497] (==) Matched fbdev as autoconfigured driver 4
    [117928.497] (==) Matched vesa as autoconfigured driver 5
    [117928.497] (==) Assigned the driver to the xf86ConfigLayout
    [117928.497] (II) LoadModule: "intel"
    [117928.497] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [117928.497] (II) Module intel: vendor="X.Org Foundation"
    [117928.497] compiled for 1.16.1, module version = 2.99.916
    [117928.497] Module class: X.Org Video Driver
    [117928.497] ABI class: X.Org Video Driver, version 18.0
    [117928.497] (II) LoadModule: "ati"
    [117928.497] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [117928.497] (II) Module ati: vendor="X.Org Foundation"
    [117928.497] compiled for 1.16.1, module version = 7.5.0
    [117928.498] Module class: X.Org Video Driver
    [117928.498] ABI class: X.Org Video Driver, version 18.0
    [117928.498] (II) LoadModule: "radeon"
    [117928.498] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [117928.498] (II) Module radeon: vendor="X.Org Foundation"
    [117928.498] compiled for 1.16.1, module version = 7.5.0
    [117928.498] Module class: X.Org Video Driver
    [117928.498] ABI class: X.Org Video Driver, version 18.0
    [117928.498] (II) LoadModule: "modesetting"
    [117928.498] (WW) Warning, couldn't open module modesetting
    [117928.498] (II) UnloadModule: "modesetting"
    [117928.498] (II) Unloading modesetting
    [117928.498] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [117928.498] (II) LoadModule: "fbdev"
    [117928.498] (WW) Warning, couldn't open module fbdev
    [117928.498] (II) UnloadModule: "fbdev"
    [117928.498] (II) Unloading fbdev
    [117928.498] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [117928.498] (II) LoadModule: "vesa"
    [117928.498] (WW) Warning, couldn't open module vesa
    [117928.498] (II) UnloadModule: "vesa"
    [117928.498] (II) Unloading vesa
    [117928.498] (EE) Failed to load module "vesa" (module does not exist, 0)
    [117928.498] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [117928.498] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
    [117928.498] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
    [117928.498] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
    [117928.498] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [117928.501] (++) using VT number 1
    [117928.501] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [117928.501] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20140725
    [117928.501] (II) [KMS] Kernel modesetting enabled.
    [117928.501] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4400
    [117928.502] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2
    [117928.502] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [117928.502] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [117928.502] (==) intel(0): RGB weight 888
    [117928.502] (==) intel(0): Default visual is TrueColor
    [117928.502] (II) intel(0): Output eDP1 has no monitor section
    [117928.502] (--) intel(0): Found backlight control interface intel_backlight (type 'raw') for output eDP1
    [117928.502] (II) intel(0): Enabled output eDP1
    [117928.502] (II) intel(0): Output DP1 has no monitor section
    [117928.502] (II) intel(0): Enabled output DP1
    [117928.502] (II) intel(0): Output HDMI1 has no monitor section
    [117928.502] (II) intel(0): Enabled output HDMI1
    [117928.502] (II) intel(0): Output HDMI2 has no monitor section
    [117928.502] (II) intel(0): Enabled output HDMI2
    [117928.502] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
    [117928.502] (II) intel(0): Output VIRTUAL1 has no monitor section
    [117928.502] (II) intel(0): Enabled output VIRTUAL1
    [117928.502] (--) intel(0): Output eDP1 using initial mode 1366x768 on pipe 0
    [117928.502] (==) intel(0): TearFree disabled
    [117928.502] (==) intel(0): DPI set to (96, 96)
    [117928.502] (II) Loading sub module "dri2"
    [117928.502] (II) LoadModule: "dri2"
    [117928.502] (II) Module "dri2" already built-in
    [117928.502] (II) Loading sub module "present"
    [117928.502] (II) LoadModule: "present"
    [117928.502] (II) Module "present" already built-in
    [117928.502] (==) RADEON(G0): Depth 24, (--) framebuffer bpp 32
    [117928.502] (II) RADEON(G0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [117928.502] (==) RADEON(G0): Default visual is TrueColor
    [117928.502] (==) RADEON(G0): RGB weight 888
    [117928.502] (II) RADEON(G0): Using 8 bits per RGB (8 bit DAC)
    [117928.502] (--) RADEON(G0): Chipset: "OLAND" (ChipID = 0x6600)
    [117928.502] (II) Loading sub module "dri2"
    [117928.502] (II) LoadModule: "dri2"
    [117928.502] (II) Module "dri2" already built-in
    [117928.502] (II) Loading sub module "glamoregl"
    [117928.502] (II) LoadModule: "glamoregl"
    [117928.502] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [117928.505] (II) Module glamoregl: vendor="X.Org Foundation"
    [117928.505] compiled for 1.16.2, module version = 1.0.0
    [117928.505] ABI class: X.Org ANSI C Emulation, version 0.4
    [117928.505] (II) glamor: OpenGL accelerated X.org driver based.
    [117928.538] (II) glamor: EGL version 1.4 (DRI2):
    [117928.549] (II) RADEON(G0): glamor detected, initialising EGL layer.
    [117928.549] (II) RADEON(G0): KMS Color Tiling: enabled
    [117928.549] (II) RADEON(G0): KMS Color Tiling 2D: enabled
    [117928.549] (II) RADEON(G0): KMS Pageflipping: enabled
    [117928.549] (II) RADEON(G0): SwapBuffers wait for vsync: enabled
    [117928.549] (II) RADEON(G0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [117928.549] (II) RADEON(G0): mem size init: gart size :3fbce000 vram size: s:80000000 visible:7f888000
    [117928.549] (==) RADEON(G0): DPI set to (96, 96)
    [117928.549] (II) Loading sub module "fb"
    [117928.549] (II) LoadModule: "fb"
    [117928.549] (II) Loading /usr/lib/xorg/modules/libfb.so
    [117928.549] (II) Module fb: vendor="X.Org Foundation"
    [117928.549] compiled for 1.16.2, module version = 1.0.0
    [117928.549] ABI class: X.Org ANSI C Emulation, version 0.4
    [117928.549] (II) Loading sub module "ramdac"
    [117928.549] (II) LoadModule: "ramdac"
    [117928.549] (II) Module "ramdac" already built-in
    [117928.549] (==) Depth 24 pixmap format is 32 bpp
    [117928.549] (II) RADEON(G0): [DRI2] Setup complete
    [117928.549] (II) RADEON(G0): [DRI2] DRI driver: radeonsi
    [117928.549] (II) RADEON(G0): [DRI2] VDPAU driver: radeonsi
    [117928.549] (II) RADEON(G0): Front buffer size: 3072K
    [117928.549] (II) RADEON(G0): VRAM usage limit set to 1877760K
    [117928.549] (==) RADEON(G0): Backing store enabled
    [117928.549] (II) RADEON(G0): Direct rendering enabled
    [117928.610] (II) RADEON(G0): Use GLAMOR acceleration.
    [117928.610] (II) RADEON(G0): Acceleration enabled
    [117928.610] (==) RADEON(G0): DPMS enabled
    [117928.610] (==) RADEON(G0): Silken mouse enabled
    [117928.612] (II) RADEON(G0): Set up textured video (glamor)
    [117928.612] (II) RADEON(G0): [XvMC] Associated with GLAMOR Textured Video.
    [117928.612] (II) RADEON(G0): [XvMC] Extension initialized.
    [117928.612] (II) RADEON(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [117928.612] (II) intel(0): SNA initialized with Haswell (gen7.5, gt2) backend
    [117928.612] (==) intel(0): Backing store enabled
    [117928.612] (==) intel(0): Silken mouse enabled
    [117928.612] (II) intel(0): HW Cursor enabled
    [117928.612] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [117928.612] (==) intel(0): DPMS enabled
    [117928.612] (II) intel(0): [DRI2] Setup complete
    [117928.612] (II) intel(0): [DRI2] DRI driver: i965
    [117928.612] (II) intel(0): [DRI2] VDPAU driver: i965
    [117928.612] (II) intel(0): direct rendering: DRI2 enabled
    [117928.612] (II) intel(0): hardware support for Present enabled
    [117928.612] (==) intel(0): display hotplug detection enabled
    [117928.612] (--) RandR disabled
    [117928.624] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [117928.624] (II) AIGLX: enabled GLX_ARB_create_context
    [117928.624] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [117928.624] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [117928.624] (II) AIGLX: enabled GLX_INTEL_swap_event
    [117928.624] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [117928.624] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [117928.624] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [117928.624] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [117928.624] (II) AIGLX: enabled GLX_ARB_create_context_robustness
    [117928.624] (II) AIGLX: Loaded and initialized i965
    [117928.624] (II) GLX: Initialized DRI2 GL provider for screen 0
    [117928.638] (II) intel(0): switch to mode [email protected] on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
    [117928.648] (II) intel(0): Setting screen physical size to 361 x 203
    [117928.668] (II) config/udev: Adding input device Power Button (/dev/input/event6)
    [117928.669] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [117928.669] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [117928.669] (II) LoadModule: "evdev"
    [117928.669] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [117928.669] (II) Module evdev: vendor="X.Org Foundation"
    [117928.669] compiled for 1.16.0, module version = 2.9.0
    [117928.669] Module class: X.Org XInput Driver
    [117928.669] ABI class: X.Org XInput driver, version 21.0
    [117928.669] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 18 paused 0
    [117928.669] (II) Using input driver 'evdev' for 'Power Button'
    [117928.669] (**) Power Button: always reports core events
    [117928.669] (**) evdev: Power Button: Device: "/dev/input/event6"
    [117928.669] (--) evdev: Power Button: Vendor 0 Product 0x1
    [117928.669] (--) evdev: Power Button: Found keys
    [117928.669] (II) evdev: Power Button: Configuring as keyboard
    [117928.669] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input7/event6"
    [117928.669] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [117928.669] (**) Option "xkb_rules" "evdev"
    [117928.669] (**) Option "xkb_model" "pc104"
    [117928.669] (**) Option "xkb_layout" "it"
    [117928.683] (II) config/udev: Adding input device Video Bus (/dev/input/event13)
    [117928.683] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [117928.683] (**) Video Bus: Applying InputClass "Keyboard Defaults"
    [117928.683] (II) systemd-logind: got fd for /dev/input/event13 13:77 fd 19 paused 0
    [117928.683] (II) Using input driver 'evdev' for 'Video Bus'
    [117928.683] (**) Video Bus: always reports core events
    [117928.683] (**) evdev: Video Bus: Device: "/dev/input/event13"
    [117928.683] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [117928.683] (--) evdev: Video Bus: Found keys
    [117928.683] (II) evdev: Video Bus: Configuring as keyboard
    [117928.683] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input14/event13"
    [117928.683] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [117928.683] (**) Option "xkb_rules" "evdev"
    [117928.683] (**) Option "xkb_model" "pc104"
    [117928.683] (**) Option "xkb_layout" "it"
    [117928.684] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [117928.684] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [117928.684] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [117928.684] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 20 paused 0
    [117928.684] (II) Using input driver 'evdev' for 'Power Button'
    [117928.684] (**) Power Button: always reports core events
    [117928.684] (**) evdev: Power Button: Device: "/dev/input/event4"
    [117928.684] (--) evdev: Power Button: Vendor 0 Product 0x1
    [117928.684] (--) evdev: Power Button: Found keys
    [117928.684] (II) evdev: Power Button: Configuring as keyboard
    [117928.684] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input5/event4"
    [117928.684] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [117928.684] (**) Option "xkb_rules" "evdev"
    [117928.684] (**) Option "xkb_model" "pc104"
    [117928.684] (**) Option "xkb_layout" "it"
    [117928.684] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [117928.684] (II) No input driver specified, ignoring this device.
    [117928.684] (II) This device may have been added with another device file.
    [117928.684] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
    [117928.684] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [117928.684] (**) Sleep Button: Applying InputClass "Keyboard Defaults"
    [117928.685] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 21 paused 0
    [117928.685] (II) Using input driver 'evdev' for 'Sleep Button'
    [117928.685] (**) Sleep Button: always reports core events
    [117928.685] (**) evdev: Sleep Button: Device: "/dev/input/event5"
    [117928.685] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [117928.685] (--) evdev: Sleep Button: Found keys
    [117928.685] (II) evdev: Sleep Button: Configuring as keyboard
    [117928.685] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0E:00/input/input6/event5"
    [117928.685] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [117928.685] (**) Option "xkb_rules" "evdev"
    [117928.685] (**) Option "xkb_model" "pc104"
    [117928.685] (**) Option "xkb_layout" "it"
    [117928.685] (II) config/udev: Adding input device Video Bus (/dev/input/event12)
    [117928.685] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [117928.685] (**) Video Bus: Applying InputClass "Keyboard Defaults"
    [117928.685] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 22 paused 0
    [117928.685] (II) Using input driver 'evdev' for 'Video Bus'
    [117928.685] (**) Video Bus: always reports core events
    [117928.685] (**) evdev: Video Bus: Device: "/dev/input/event12"
    [117928.685] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [117928.685] (--) evdev: Video Bus: Found keys
    [117928.685] (II) evdev: Video Bus: Configuring as keyboard
    [117928.685] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:38/LNXVIDEO:00/input/input13/event12"
    [117928.685] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 10)
    [117928.685] (**) Option "xkb_rules" "evdev"
    [117928.685] (**) Option "xkb_model" "pc104"
    [117928.685] (**) Option "xkb_layout" "it"
    [117928.686] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event14)
    [117928.686] (II) No input driver specified, ignoring this device.
    [117928.686] (II) This device may have been added with another device file.
    [117928.686] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event15)
    [117928.686] (II) No input driver specified, ignoring this device.
    [117928.686] (II) This device may have been added with another device file.
    [117928.686] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event16)
    [117928.686] (II) No input driver specified, ignoring this device.
    [117928.686] (II) This device may have been added with another device file.
    [117928.686] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event1)
    [117928.686] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [117928.687] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 23 paused 0
    [117928.687] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [117928.687] (**) Logitech USB Receiver: always reports core events
    [117928.687] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event1"
    [117928.687] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc52f
    [117928.687] (--) evdev: Logitech USB Receiver: Found 20 mouse buttons
    [117928.687] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [117928.687] (--) evdev: Logitech USB Receiver: Found relative axes
    [117928.687] (--) evdev: Logitech USB Receiver: Found x and y relative axes
    [117928.687] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [117928.687] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [117928.687] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [117928.687] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [117928.687] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:046D:C52F.0001/input/input2/event1"
    [117928.687] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE, id 11)
    [117928.687] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [117928.687] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [117928.687] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [117928.687] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [117928.687] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [117928.687] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [117928.687] (II) No input driver specified, ignoring this device.
    [117928.687] (II) This device may have been added with another device file.
    [117928.687] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event2)
    [117928.687] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [117928.687] (**) Logitech USB Receiver: Applying InputClass "Keyboard Defaults"
    [117928.687] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 24 paused 0
    [117928.687] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [117928.687] (**) Logitech USB Receiver: always reports core events
    [117928.688] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event2"
    [117928.688] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc52f
    [117928.688] (--) evdev: Logitech USB Receiver: Found 1 mouse buttons
    [117928.688] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [117928.688] (--) evdev: Logitech USB Receiver: Found relative axes
    [117928.688] (II) evdev: Logitech USB Receiver: Forcing relative x/y axes to exist.
    [117928.688] (--) evdev: Logitech USB Receiver: Found absolute axes
    [117928.688] (II) evdev: Logitech USB Receiver: Forcing absolute x/y axes to exist.
    [117928.688] (--) evdev: Logitech USB Receiver: Found keys
    [117928.688] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [117928.688] (II) evdev: Logitech USB Receiver: Configuring as keyboard
    [117928.688] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [117928.688] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [117928.688] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [117928.688] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.1/0003:046D:C52F.0002/input/input3/event2"
    [117928.688] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 12)
    [117928.688] (**) Option "xkb_rules" "evdev"
    [117928.688] (**) Option "xkb_model" "pc104"
    [117928.688] (**) Option "xkb_layout" "it"
    [117928.688] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [117928.688] (WW) evdev: Logitech USB Receiver: ignoring absolute axes.
    [117928.688] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [117928.688] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [117928.688] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [117928.688] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [117928.688] (II) config/udev: Adding input device HD WebCam (/dev/input/event10)
    [117928.688] (**) HD WebCam: Applying InputClass "evdev keyboard catchall"
    [117928.688] (**) HD WebCam: Applying InputClass "Keyboard Defaults"
    [117928.688] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 25 paused 0
    [117928.688] (II) Using input driver 'evdev' for 'HD WebCam'
    [117928.688] (**) HD WebCam: always reports core events
    [117928.688] (**) evdev: HD WebCam: Device: "/dev/input/event10"
    [117928.688] (--) evdev: HD WebCam: Vendor 0x4f2 Product 0xb3f6
    [117928.688] (--) evdev: HD WebCam: Found keys
    [117928.688] (II) evdev: HD WebCam: Configuring as keyboard
    [117928.688] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input12/event10"
    [117928.688] (II) XINPUT: Adding extended input device "HD WebCam" (type: KEYBOARD, id 13)
    [117928.688] (**) Option "xkb_rules" "evdev"
    [117928.688] (**) Option "xkb_model" "pc104"
    [117928.688] (**) Option "xkb_layout" "it"
    [117928.689] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event17)
    [117928.689] (II) No input driver specified, ignoring this device.
    [117928.689] (II) This device may have been added with another device file.
    [117928.689] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event18)
    [117928.689] (II) No input driver specified, ignoring this device.
    [117928.689] (II) This device may have been added with another device file.
    [117928.689] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event19)
    [117928.689] (II) No input driver specified, ignoring this device.
    [117928.689] (II) This device may have been added with another device file.
    [117928.689] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [117928.689] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [117928.689] (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard Defaults"
    [117928.689] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 26 paused 0
    [117928.689] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [117928.689] (**) AT Translated Set 2 keyboard: always reports core events
    [117928.689] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [117928.689] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [117928.689] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [117928.689] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [117928.689] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [117928.689] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
    [117928.689] (**) Option "xkb_rules" "evdev"
    [117928.689] (**) Option "xkb_model" "pc104"
    [117928.689] (**) Option "xkb_layout" "it"
    [117928.690] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event11)
    [117928.690] (**) ETPS/2 Elantech Touchpad: Applying InputClass "evdev touchpad catchall"
    [117928.690] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
    [117928.690] (**) ETPS/2 Elantech Touchpad: Applying InputClass "Default clickpad buttons"
    [117928.690] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
    [117928.690] (**) ETPS/2 Elantech Touchpad: Applying InputClass "Default clickpad buttons"
    [117928.690] (II) LoadModule: "synaptics"
    [117928.690] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [117928.690] (II) Module synaptics: vendor="X.Org Foundation"
    [117928.690] compiled for 1.16.0, module version = 1.8.1
    [117928.690] Module class: X.Org XInput Driver
    [117928.690] ABI class: X.Org XInput driver, version 21.0
    [117928.690] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 27 paused 0
    [117928.690] (II) Using input driver 'synaptics' for 'ETPS/2 Elantech Touchpad'
    [117928.690] (**) ETPS/2 Elantech Touchpad: always reports core events
    [117928.690] (**) Option "Device" "/dev/input/event11"
    [117928.738] (--) synaptics: ETPS/2 Elantech Touchpad: x-axis range 0 - 2960 (res 0)
    [117928.738] (--) synaptics: ETPS/2 Elantech Touchpad: y-axis range 0 - 1480 (res 0)
    [117928.738] (--) synaptics: ETPS/2 Elantech Touchpad: pressure range 0 - 255
    [117928.738] (--) synaptics: ETPS/2 Elantech Touchpad: finger width range 0 - 15
    [117928.738] (--) synaptics: ETPS/2 Elantech Touchpad: buttons: left right double triple
    [117928.738] (--) synaptics: ETPS/2 Elantech Touchpad: Vendor 0x2 Product 0xe
    [117928.738] (**) Option "AreaLeftEdge" "600"
    [117928.738] (**) Option "AreaRightEdge" "2200"
    [117928.738] (**) Option "VertTwoFingerScroll" "on"
    [117928.738] (**) Option "HorizTwoFingerScroll" "on"
    [117928.738] (**) Option "TapButton1" "1"
    [117928.738] (**) Option "TapButton2" "2"
    [117928.738] (**) Option "TapButton3" "3"
    [117928.738] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [117928.738] (**) ETPS/2 Elantech Touchpad: always reports core events
    [117928.738] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input9/event11"
    [117928.738] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD, id 15)
    [117928.738] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MinSpeed is now constant deceleration 2.5
    [117928.738] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MaxSpeed is now 1.75
    [117928.738] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) AccelFactor is now 0.060
    [117928.738] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
    [117928.738] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 1
    [117928.738] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
    [117928.738] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
    [117928.738] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [117928.738] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse1)
    [117928.738] (**) ETPS/2 Elantech Touchpad: Ignoring device from InputClass "touchpad ignore duplicates"
    [117928.739] (II) config/udev: Adding input device PC Speaker (/dev/input/event7)
    [117928.739] (II) No input driver specified, ignoring this device.
    [117928.739] (II) This device may have been added with another device file.
    [117928.739] (II) config/udev: Adding input device Acer WMI hotkeys (/dev/input/event8)
    [117928.739] (**) Acer WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [117928.739] (**) Acer WMI hotkeys: Applying InputClass "Keyboard Defaults"
    [117928.739] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 28 paused 0
    [117928.739] (II) Using input driver 'evdev' for 'Acer WMI hotkeys'
    [117928.739] (**) Acer WMI hotkeys: always reports core events
    [117928.739] (**) evdev: Acer WMI hotkeys: Device: "/dev/input/event8"
    [117928.739] (--) evdev: Acer WMI hotkeys: Vendor 0 Product 0
    [117928.739] (--) evdev: Acer WMI hotkeys: Found keys
    [117928.739] (II) evdev: Acer WMI hotkeys: Configuring as keyboard
    [117928.739] (**) Option "config_info" "udev:/sys/devices/virtual/input/input10/event8"
    [117928.739] (II) XINPUT: Adding extended input device "Acer WMI hotkeys" (type: KEYBOARD, id 16)
    [117928.739] (**) Option "xkb_rules" "evdev"
    [117928.739] (**) Option "xkb_model" "pc104"
    [117928.739] (**) Option "xkb_layout" "it"
    [117928.739] (II) config/udev: Adding input device Acer BMA150 accelerometer (/dev/input/event9)
    [117928.739] (II) No input driver specified, ignoring this device.
    [117928.739] (II) This device may have been added with another device file.
    [117928.740] (II) config/udev: Adding input device Acer BMA150 accelerometer (/dev/input/js0)
    [117928.740] (II) No input driver specified, ignoring this device.
    [117928.740] (II) This device may have been added with another device file.
    [117928.828] (II) intel(0): EDID vendor "AUO", prod id 18668
    [117928.828] (II) intel(0): Printing DDC gathered Modelines:
    [117928.828] (II) intel(0): Modeline "1366x768"x0.0 76.30 1366 1404 1426 1592 768 771 777 798 -hsync -vsync (47.9 kHz eP)
    [120084.521] (EE)
    [120084.521] (EE) Backtrace:
    [120084.521] (EE) 0: /usr/bin/Xorg.bin (xorg_backtrace+0x56) [0x593d36]
    [120084.521] (EE) 1: /usr/bin/Xorg.bin (0x400000+0x197e89) [0x597e89]
    [120084.521] (EE) 2: /usr/lib/libc.so.6 (0x7f3abb0d9000+0x33b20) [0x7f3abb10cb20]
    [120084.521] (EE)
    [120084.521] (EE) Segmentation fault at address 0x0
    [120084.521] (EE)
    Fatal server error:
    [120084.521] (EE) Caught signal 11 (Segmentation fault). Server aborting
    [120084.521] (EE)
    [120084.521] (EE)
    Please consult the The X.Org Foundation support
    at [url]http://wiki.x.org[/url]
    for help.
    [120084.521] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [120084.521] (EE)
    [120084.521] (II) AIGLX: Suspending AIGLX clients for VT switch
    [120085.500] (EE) Server terminated with error (1). Closing log file.

  • Generating Constant Source for Channel Gain Measurement

    I need a contant source say a DC level which shall I transmit over a channel to get channel gain/ fading over few transmission blocks.
    I tried a naive approach of getting a constant by DC_m= m*sin(t)/sint(t) and sin(t)-sin(t) +m
    through follwing design.
    Though I can see a constant DC in waveform_graph 3 but when I receive the data from RX port of USRP RIO, which I expected to be a faded DC value, I am getting a sign wave whose frequency is dependent on the tone frequency of the Sin wave generator.
    I cannot explain this!!
    My purpose if to get channel gain between RX-TX pair and TX-Eavedropper pair. Do I need to implement dedicated channel sounder based on PN sequqnece correlator? or this approach of H_ab= Y/X shall work. I negated X as it would need perfect synchronization between RX-TX pair for channel gain estimation.
    Any suugestion on the anomaly? Or suggestion on implementing channel gain measurement using Comm suite.
     

    Hello Wired_,
    Can you please provide me with a little more information on how you are recording in the TX data? How are you demodulating the signal? Why are you expecting it to be a faded DC value? Which sine wave generator are you referring too? The carrier frequency or the waveform generator VI in LabVIEW?
    I would expect the output of the TX to be the carrier frequency tone, with an amplitude dependent on the DC level.
    If you have hardware specific questions, I recommend posting them to the SDR forum.
    Regards,

  • Massive IMAP problem, multiple iPhones - constant spinning wheel

    A friend has had problems using email on his iPhone since he got it, and now after a couple of months of no problems, mine has started doing the same thing.
    The problem started for him on a UK 1.1.2 firmware iPhone with an IMAP account. If you start from scratch, manually setup an IMAP account, it will connect and get your messages. However later, you will find that the iPhone email program is constantly showing the spinning wheel at the top of the screen (showing activity), not the symbol at the bottom of the screen. Worse, the battery rapidly runs down (because it is doing constant data transfers), and worse new emails do not reliably get through. This happens whether you are using GPRS, EDGE, or WiFi (does not make a difference). This problem still happens with 1.1.3 firmware. There is so much data transfer happening (or trying to happen) that the phone actually gets quite warm.
    This week after a couple of months of owning my own iPhone with 1.1.3 firmware has also started doing the same thing. My main IMAP account is on a totally different server, running a different server application to my friends. However it also seems to happen with GMail accounts (using IMAP).
    I am currently at home and I can see my WiFi (AirPort Extreme) base-station showing lots of activity and I know that no other WiFi devices are active so it is purely the iPhone. Turning off the email account stops the problem (and I can then see the WiFi activity stop as well) but that is hardly a solution. Also setting it to manual polling for email helps but again is not a proper solution. It is so bad that sending emails is very difficult as well.
    Even though at the iPhone end nothing seems to be coming through, one can see the iPhone as a connected user at the server end (I have access to the servers, obviously not for Gmail though).
    My friend has swapped his phone four times at the Apple Store and still has the problem, and as I said mine has started as well. Turning off and on does not help, resetting network settings does not help.
    Apple Mail on a Mac (running both Leopard and Tiger), and other IMAP clients have no problems with the same IMAP accounts (for both of us).
    Other Internet access like Web, Stock Widget, Weather Widget, even the iTunes WiFi store work fine. It is just email that is broken.

    Pdobry wrote:
    The problem is that Mail app in iPhone is trying to download message headers via FETCH command and does not handle properly response from IMAP server which does not support partial download of email headers. It starts asking for the headers in the infinite loop which quickly drains out the battery
    More recent testing by myself reveals it is getting stuck on some messages when doing the 'message peek' to get the summary of an email. It gets the subjects fine (as the first pass) but then gets stuck on some emails when doing the second pass to get the summary. Apple Mail on a Mac does not (as far as I am aware) do a message peek so does not have this problem.
    The two different makes of server I have seen this problem with do support this message peek command in that at least some of the time it is working with the iPhone.
    I was able to get a debug level log which shows entries like this
    \[02/Apr/2008 23:56:17\]\[48699904\] {imaps} Peek FETCH executed on message 0000ba58 in folder [email protected]/INBOX
    \[02/Apr/2008 23:56:17\]\[48699904\] {imaps} Sent 1 fetch responses
    \[02/Apr/2008 23:56:18\]\[48699904\] {imaps} Command 293 UID FETCH 47704 BODY.PEEK\[2.HEADER\]<1177.15207>
    \[02/Apr/2008 23:56:18\]\[48699904\] {imaps} Peek FETCH executed on message 0000ba58 in folder [email protected]/INBOX
    \[02/Apr/2008 23:56:18\]\[48699904\] {imaps} Sent 1 fetch responses
    \[02/Apr/2008 23:56:18\]\[48699904\] {imaps} Command 294 UID FETCH 47704 BODY.PEEK\[2.HEADER\]<1177.15207>
    The above shows two repetitions but it keeps on (and on, and on). Other occasions show this does work for other messages. If I deliberately arrange to get the iPhone to connect to get the latest messages I can see it get stuck on a particular message, and then even if I turn it off and back on and reconnect it will get stuck on the same message. If repeated on a later date then the contents of the inbox will have changed and the message it gets stuck on will be different.
    As it seems to be linked to specific messages it was not a surprise that when this is tried on a practically empty email account the problem does not occur.
    This has happened with multiple different makes of mail server (well at least two), multiple email accounts, multiple users, and multiple different iPhones (one person had his swapped four times). It does not happen with 'ordinary' IMAP client software, only with the iPhone.
    Even if one for arguments sake assumes the mail server is at fault and is sending the iPhone garbage, the iPhone should only try a single specific email a maximum number of times (for example five), and then give up. This would prevent it draining the battery so fast and trying to cook itself (by constantly running its transmitter).

Maybe you are looking for