Query on Thread

Hi ,
I have a query on Thread in Java.
In the class Thread there is a method named start(), which when called , invokes another method run().Then why we do not call the method run() directly ,instead of calling start() ?
Regards.
Ayan

run() runs in the thread it was called from. So if you want another thread, you need to call start(). but if you want to run another thread's run() in your thread, by all means call run()

Similar Messages

  • Parallel query worker thread was involved in a deadlock

    Hi,
        We are getting deadlock issue in MSSQL 2012 enterprise edition. By enabling the trace we could find the MORE number messages as below: 
    "parallel query worker thread was involved in a deadlock"
    Along with this there are some other entries with dead lock information ( chain, graph) . 
    Please suggest.
    Thank you 

    OP, I think that article posted by Saeid is exactly about your situation, although SQL2012 might have changed the message slightly.
    What the article says is bad news - you have done nothing wrong, yet SQL Server is messed up.  The only "fix" recommended is eliminating parallelism by using a hint "option (maxdop 1)" at the end of your query.  This should do the trick, but may
    run more slowly.
    You can try to reduce the odds of it happening by adding indexes.  Actually, ANY change to your plan or data model may make just enough changes to come up with another plan that does NOT get these self-deadlocks.  Any query that is more efficient,
    should reduce the odds of a deadlock.
    You can also try to analyze the deadlock as you would any deadlock, it may suggest another way to write the query. 
    Josh

  • Query on thread safety

    Hi everybody
    i have a query relating to thread safety.When we say that Vector is thread safe or synchronized and Arraylist is not synchronized,what does that really mean.if possible can you provide me with a piece of code to clear the above query.
    Also can you tell me in which situations i should use a Vector & Arraylist in my code.
    regards
    kvikram

    i have a query relating to thread safety.When we say
    that Vector is thread safe or synchronized and
    Arraylist is not synchronized,what does that really
    mean.You have two or more theads accessing data. At least one of those is modifying the data. That is the problem.
    >
    Also can you tell me in which situations i should use
    a Vector & Arraylist in my code.You create your code in the context in which it exists.
    If you are using threads then the data that is accessible to more than one thread must be thread safe it that is a problem. Vector and ArrayList are classes and not solutions to that problem.

  • Query on  Thread.setDaemon method......

    I have a small conceptual problem.
    I wrote a small program which starts a thread
    from it's main method and marks it as Daemon.
    The Thread actually starts an infinite loop.
    Inside the run method of another Thread I start another Thread
    which is also an infinite loop. I mark it as non-daemon(although I don't need to as default is daemon).
    But when I ran the program I found that the program terminates
    after some time. As What I know about threads it should not have stopped
    becz. a non daemon thread was running. Plz. explain it.
    Both the Classes are paster below.
    Nimesh
    /*Class::Test 1*/
    public class Test1 implements Runnable{
    private static Test2 test2=null;
    private static Thread thread2=null;
    public static void main(String args[]){
    Test1 test2=new Test1();
    Thread thread1=new Thread(test2);
    thread1.setDaemon(true);
    thread1.start();
    public void run(){
    test2=new Test2();
    thread2=new Thread(test2);
    thread2.setPriority(Thread.NORM_PRIORITY );
    thread2.setDaemon(false);
    thread2.start();
    System.out.println("Got here");
    while(true){
    func1();
    public void func1() {
    System.out.println("In Thread 1");
    /*Class: Test1*/
    public class Test2 implements Runnable{
    public void run(){
    while(true){
    func1();
    public void func1(){
    System.out.println("In Thread2");

    I think that you have two problems
    1) there is a chance that the second thread would not have started, because i think the start method does not actually garuantee that the second thread is actually started when the method returns. If you want to garuantee that the second thread has started you need to wait on some synchronized block of code in thread one after you have called the start method for thread two. Then thread two needs to call a notify method in its run method.
    2) Your main method is exiting before all the threads are starting, i would put a sleep of say 1ms to let the other threads start or a syncrhonized block.

  • Is it possible to query a thread in order to see what is on it?

    I have a class which spawned a separate thread for itself to run on (from behind the scenes- I did not create a separate thread myself) but I'm not sure it is actually running on that thread. It seems like it is running on the main thread due to the erratic problems I am having. Is there any way to find out what is actually being 'handled' by a particular thread? Thanks

    Thanks, all. I have in fact called start(), not run() - but it was definitely worth asking... I really haven't needed to pay that much attention to threads before.
    The thread in question is a Java Sequencer thread, which plays a midi sequence. Hence the importance for proper timing. I have used the profiler in NetBeans to see what threads are running, and I do in fact have a Java Sequencer thread, but it is reportedly sleeping while the program runs. The midi sequence plays with imperfect timing, as if is being played by the Swing thread, or that it is played by the Java Sequencer thread, but at a lower priority than that of the GUI thread.
    So to be clear, what I really am trying to do is to find out if my midi sequence is actually being played by the Java Sequencer thread (which seems to be spawned in relation to the code: sequencer = MidiSystem.getSequencer()).
    I tried the NetBeans debugger and I wasn't to get information on the threads other than their names (OK, I am probably a newbie), so I'll try a little more from that angle.
    I hope this isn't bad form...but I posted a vaguely similar question on the java.sound forum, and (ultimately) had this suggestion:
    "If you created your own class that extended sequencer, you'd be able to do "Thread.currentThread()" to get the thread it's running on...and I think that's going to be the trick."
    If I do this then I could increase that threads priority, and see if it helps.
    If I discover anything interesting, I'll post the findings.
    Thanks again, Scott

  • Multi-threading problem

    Hello everybody,
    I am having a problem using OCCI and threads.
    First I have Oracle RAC, I launched 5 threads from my application to do some query each thread has its own parameters to the same query but all are accessing the same table which is created with nolog option.
    The problem is the application always crashes whenever the threads are all at the same point of getting result set and specifcally at next() .
    I am suspecting that result set returned is null or paralle execution of the query has problem.
    P.S.: I have a connection pool which I use to get connection for each thread separately. The environment object is created with Object I tried to create the environment with Multithreaded_mutexed | object but it crashes while executing the app.
    Can anybody help ?

    Are you creating the environment as shown below?
    Environment *env = Environment::createEnvironment(Environment::Mode((Environment::OBJECT|Environment::THREADED_MUTEXED)));                                                                                                                                                                                                                                                                                                                                                       

  • Why a thread can not be restarted?????

    Hi,
    I have a thread and I started it by claling thread.start() and some where in my code i want to say thread.start(), which jvm won't allow me to do so... could u please reason me elaborately?????????
    Thanks
    Sato.

    Essentially once a Thread has been started it cannot be started again regardless of its current running state.
    Calling start on a started Thread makes no sense. Neither does calling start on a Thread that has finished make sense although for less obvious reasons.
    You can query a Thread to see if it is still active (has been started and not yet completed) via the isAlive() method.
    You can then query the Thread you want to start with code like this
    if(!myThread.isAlive()) {
        myThread.start();
    }This code works fine when the Thread is still running however what happens when the Thread has run to completion?
    Well it is often best to offer more complete state information about your Thread class...
    class MyThread extends Thread {
        boolean hasRun;
        public MyThread() {
            this.hasRun = false;
        public void start() {
            super.start();
            this.hasRun = true;
        public boolean hasRun() {
            return this.hasRun;
        public void run() {
    if(!myThread.isAlive() && !myThread.hasRun()) {
        myThread.start();
    }In this way you can not only see if instances of your Thread class are currently active but also if they have completed.
    As to the rest of you posters, why pick on him like that? If you don't know the answers then don't post anything.

  • Need to generate XML report  (when user clicks the button)from Application Express 4.0.0.00.46

    I am new to Apex so I invoke all the APEX GURUS to help me !!!
    Here are details.
    When the user hits a button from APEX page he can download an XML report
    here is the parameterized SQL query:

    Duplicate thread: https://community.oracle.com/message/11325665

  • Creation of  maintenance order

    Dear Gurus;
    I am working on a scenario where, the PRT (equipment) used in production has to under go Usage Decision, after EVERY 2000 produced units. If usage decision is Yes; system should automatically create maintenance (refurbishment) order for this PRT.
    How do I do it? Pls. guide.
    Thanks & Regards
    Hemant

    Hi,
        I have tried the same. I want to know the parameters used for that formula. Also let me know the formula completely. I could create the Measurement document. But counter reading has not updated. I think the parameters for that formula might be wrong.
    My formula is SAP_11 * SAP_15.
    SAP_11 field name is SPLIM (Operation Splits)
    SAP_15 field name is MGVGW (PRT qty).
    Is that formula correct or else whats the wrong in this. Please help me.
    Regards,
    Maheswaran.
    Maheswaran,
    This is an old thread and is marked answered. Please open a new thread for your specific query.
    Thread now locked.
    -Paul
    Edited by: Paul Meehan on Sep 4, 2009 10:24 AM

  • Crash during spotlight indexing - Mountain Lion

    Macbook Pro
    Late 2011
    Mountain Lion
    500GB SSD (replaced original 750GB)
    1TB (replaced faulty optical drive with OWC data doubler)
    16GB ram (2x OWC 8GB)
    Over the last couple of months I've been plagued with crashes and kernal panics that, after time will result in my hdd failing and having to be reformatted and OS X reinstalled. The first time it happened I took my macbook into the genius bar as I had never encountered this problem before and they said one of the disks was faulty but they couldn't tell me which and recommended reformat (the drives were only a few weeks old) which I did and backed up as much data as I could. I only reformatted my boot disk (SSD) as I figured it was a OS issue After a reinstall of Mountain Lion it ran smooth for a bit until it happened again, I thought perhaps I had installed the SSD incorrect and got it damaged with ESD so I had it replaced under warranty.
    After a fresh install of OS X and all my apps it started happenning again almost straight away. This time I did a bit of digging into why it was crashing and learned how to read crash and panic reports and started uninstalling apps that were near or at the top of the threads before time of crash. After doing this it ran well with no hiccups until this morning it crashed while spotlight was indexing and i was also analysing some songs in Mixed in Key. MIK is fairly resource hungry but has never caused a crash before. After crashing and restarting the grey screen appeared with a loading bar which reaches about 40% and the macbook shuts down it does not reboot. Running disk utility and trying to repair the disk failed.I tried plugging in my external drive with OS X installed on it so i can access the files on the faulty drive, but as the drive had been unmounted and wouldn't mount for some reason I could not access my hdd to read the crash log. I ended up finding software that allowed me to read files on an unmounted drive and here are the 2 crash logs leading up to it.
    I cannot understand what the problem was so I thought i'd post my question here with everyone else's and hope someone can help me. Sorry for the long winded explaination I just thought I would give information leading up to it. Hopefully it is a particular app causing the problem and not a hardware fault, but seeing as its been ongoing and i've replaced the SSD hdd once already i think i can rule it out. Perhaps it is a faulty logic board as i've read can also be an issue. Any help is appreciated.
    Here are the 2 crash reports:
    Process:         mds [15388]
    Path:            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Support/mds
    Identifier:      mds
    Version:         707.12
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [1]
    User ID:         0
    Date/Time:       2014-02-09 16:07:30.703 +0800
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Crashed Thread:  4  Dispatch queue: <MDSImporterProxy 0x7feaa5c0f510 shutdown:NO got shutdown notification:NO>
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000080000000000
    VM Regions Near 0x80000000000:
        MALLOC_LARGE (reserved 000000013075e000-000000013092f000 [ 1860K] rw-/rwx SM=NUL  reserved VM address space (unallocated)
    -->
        MALLOC_TINY            00007fea93400000-00007fea93600000 [ 2048K] rw-/rwx SM=PRV 
    Application Specific Information:
    objc_msgSend() selector name: hash
    [0x107d51000](Warning) IndexPath in void _SIPreHeatPermissions(SIRef, RLEOIDArrayRef, SIUserCtxRef, void (*)(void *), void *):pre-heat 82750 items exceeded limit, falling back to default
    Initializing
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff920af686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff920aec42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff89e4e233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff89e53916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff89e530e2 CFRunLoopRunSpecific + 290
    5   mds                                     0x00000001073bd474 0x1073af000 + 58484
    6   libdyld.dylib                           0x00007fff8ea2a7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff920b1d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8db32dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8db329ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff920b1ffa read + 10
    1   mds                                     0x00000001073b870d 0x1073af000 + 38669
    2   libsystem_c.dylib                       0x00007fff8d6bb772 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8d6a81a1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 4 Crashed:: Dispatch queue: <MDSImporterProxy 0x7feaa5c0f510 shutdown:NO got shutdown notification:NO>
    0   libobjc.A.dylib                         0x00007fff8b8cc24c objc_msgSend + 12
    1   com.apple.CoreFoundation                0x00007fff89f4012d -[__NSDictionaryM objectForKey:] + 77
    2   com.apple.CoreFoundation                0x00007fff89ec2f1c -[NSDictionary __apply:context:] + 204
    3   com.apple.CoreFoundation                0x00007fff89e4e2dc CFDictionaryApplyFunction + 92
    4   com.apple.CoreFoundation                0x00007fff89e4f09d __CFPropertyListIsValidAux + 349
    5   com.apple.CoreFoundation                0x00007fff89e6edd7 __CFPropertyListIsDictPlistAux + 247
    6   com.apple.CoreFoundation                0x00007fff89ec2f2f -[NSDictionary __apply:context:] + 223
    7   com.apple.CoreFoundation                0x00007fff89e4e2dc CFDictionaryApplyFunction + 92
    8   com.apple.CoreFoundation                0x00007fff89e4f09d __CFPropertyListIsValidAux + 349
    9   com.apple.CoreFoundation                0x00007fff89e6edd7 __CFPropertyListIsDictPlistAux + 247
    10  com.apple.CoreFoundation                0x00007fff89ec2f2f -[NSDictionary __apply:context:] + 223
    11  com.apple.CoreFoundation                0x00007fff89e4e2dc CFDictionaryApplyFunction + 92
    12  com.apple.CoreFoundation                0x00007fff89e4f09d __CFPropertyListIsValidAux + 349
    13  com.apple.CoreFoundation                0x00007fff89e4ee2c CFPropertyListCreateData + 140
    14  com.apple.Foundation                    0x00007fff87153b52 +[NSPropertyListSerialization dataWithPropertyList:format:options:error:] + 37
    15  mds                                     0x000000010746e6ae 0x1073af000 + 784046
    16  mds                                     0x00000001074668db 0x1073af000 + 751835
    17  com.apple.Metadata                      0x00007fff91ff2bc6 mach_msg_dispatch + 156
    18  mds                                     0x00000001074097fb 0x1073af000 + 370683
    19  libsystem_kernel.dylib                  0x00007fff920af223 mach_msg_server_once + 387
    20  mds                                     0x00000001074095e1 0x1073af000 + 370145
    21  libdispatch.dylib                       0x00007fff8db300b6 _dispatch_client_callout + 8
    22  libdispatch.dylib                       0x00007fff8db3229b _dispatch_source_invoke + 691
    23  libdispatch.dylib                       0x00007fff8db31305 _dispatch_queue_invoke + 72
    24  libdispatch.dylib                       0x00007fff8db31448 _dispatch_queue_drain + 180
    25  libdispatch.dylib                       0x00007fff8db312f1 _dispatch_queue_invoke + 52
    26  libdispatch.dylib                       0x00007fff8db311c3 _dispatch_worker_thread2 + 249
    27  libsystem_c.dylib                       0x00007fff8d6bdcdb _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x00007feaa4a4b400  rbx: 0x00007feaacb70150  rcx: 0x00007fff76119e20  rdx: 0x0000080000000000
      rdi: 0x0000080000000000  rsi: 0x00007fff90bd3691  rbp: 0x0000000110bb1c10  rsp: 0x0000000110bb1bc8
       r8: 0x0000000000000023   r9: 0x00007feaa423ee13  r10: 0x00007feaa423ee13  r11: 0x00007feaa423ee11
      r12: 0x000000000000043f  r13: 0x0000000000000010  r14: 0x00000000000001a5  r15: 0x0000080000000000
      rip: 0x00007fff8b8cc24c  rfl: 0x0000000000010246  cr2: 0x0000080000000000
    Logical CPU: 4
    Binary Images:
           0x1073af000 -        0x1074cefff  mds (707.12) <72984FB4-5955-3336-9DF3-C079D3126DEF> /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
           0x107526000 -        0x1076f5fff  com.apple.spotlight.index (10.7.0 - 707.12) <FD63669B-3D65-34E5-A48A-BED4933FCD79> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/Spotlight Index
           0x107759000 -        0x10775fff7  com.apple.MDSChannel (1.2 - 1.2) <05A6F55A-8197-316A-A127-DE6528F9B291> /System/Library/PrivateFrameworks/MDSChannel.framework/Versions/A/MDSChannel
           0x107766000 -        0x10776afff  com.apple.ServerInformation (1.2 - 1) <5AC80E5E-3B55-3784-854D-1D49A874E775> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
           0x107773000 -        0x1077ebfff  com.apple.DCERPC (1.5 - 53.1.1) <25F4A15A-5252-3C70-A1D0-8145357F78B8> /System/Library/PrivateFrameworks/DCERPC.framework/Versions/A/DCERPC
           0x107814000 -        0x10782dff7  com.apple.SMBClient (1.8 - 1.8) <CCEABA2F-2F88-3CF1-B39E-5D92DE47BACF> /System/Library/PrivateFrameworks/SMBClient.framework/Versions/A/SMBClient
           0x114935000 -        0x114a4efff  libmecab.1.0.0.dylib (359.70) <6A697F27-0296-3BEF-BBCE-D96471D5FE32> /usr/lib/libmecab.1.0.0.dylib
           0x117703000 -        0x117708ff7  libgermantok.dylib (7) <B98522FA-23D1-351E-9F25-5AAF58FD862D> /usr/lib/libgermantok.dylib
        0x7fff66faf000 -     0x7fff66fe394f  dyld (210.2.3) <8958FE97-5830-3928-BC38-23136E7D3783> /usr/lib/dyld
        0x7fff85729000 -     0x7fff85751fff  libJPEG.dylib (851) <64A3EB03-34FB-308C-817B-6106D1F4D80F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff857f7000 -     0x7fff85910fff  com.apple.ImageIO.framework (3.2.2 - 851) <6552C673-9F29-3B31-A12E-C4391A950965> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff85911000 -     0x7fff8591ffff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff85a3d000 -     0x7fff85a81fff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
        0x7fff85a82000 -     0x7fff85a89fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff85a8a000 -     0x7fff85b3bfff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff85db8000 -     0x7fff85dc4fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff85e0e000 -     0x7fff85e1cfff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff85e1f000 -     0x7fff85e24fff  com.apple.OpenDirectory (10.8 - 151.10) <51E52779-4F5A-36B5-9297-67138547DCA9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85e25000 -     0x7fff85e2eff7  com.apple.CommerceCore (1.0 - 26.2) <AF35874A-6FA7-328E-BE30-8BBEF0B741A8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff85e2f000 -     0x7fff85e31fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff86213000 -     0x7fff862d8ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff862d9000 -     0x7fff866f6fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff866f7000 -     0x7fff86a27fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff86a28000 -     0x7fff86a3bff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff86f44000 -     0x7fff86fdefff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff87010000 -     0x7fff8701dfff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8704b000 -     0x7fff8709aff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8709b000 -     0x7fff8709efff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8709f000 -     0x7fff873fefff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff873ff000 -     0x7fff87400fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff874fc000 -     0x7fff8751eff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8751f000 -     0x7fff87562ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff879c8000 -     0x7fff879ceff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff87a1f000 -     0x7fff87b1cfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff87b1d000 -     0x7fff87b3fff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff87b40000 -     0x7fff87b4afff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff87e8e000 -     0x7fff87faefff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff87fbb000 -     0x7fff87fbcff7  libSystem.B.dylib (169.3) <DF030DDB-DF22-3769-A8CD-9806DDB84008> /usr/lib/libSystem.B.dylib
        0x7fff87fbd000 -     0x7fff87ff3fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff88366000 -     0x7fff88438ff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff88439000 -     0x7fff8843bfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8843c000 -     0x7fff88465fff  libsandbox.1.dylib (220.3) <410BC7E1-24A4-3E5A-ACCF-2F444DC82814> /usr/lib/libsandbox.1.dylib
        0x7fff88466000 -     0x7fff8847dfff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8847e000 -     0x7fff88875fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff88876000 -     0x7fff88878fff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff88879000 -     0x7fff8887aff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8887b000 -     0x7fff888c5ff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff888c6000 -     0x7fff888cafff  libGIF.dylib (851) <AD40D084-6E34-38CD-967D-705F94B188DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88929000 -     0x7fff8892dfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88d57000 -     0x7fff88d7cff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff88dc1000 -     0x7fff88e7eff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff88ecc000 -     0x7fff88eccfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff88ecd000 -     0x7fff88ed5fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff88f21000 -     0x7fff88f42ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff88f43000 -     0x7fff88f94ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff89023000 -     0x7fff891befef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff891bf000 -     0x7fff891bffff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff891c0000 -     0x7fff891c8ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff891d6000 -     0x7fff89219ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff89226000 -     0x7fff89231fff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89232000 -     0x7fff89295fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff89296000 -     0x7fff89323ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff89341000 -     0x7fff89341fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8937d000 -     0x7fff893d7ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8950f000 -     0x7fff8951cfff  com.apple.KerberosHelper (4.0 - 1.0) <6815439D-1A03-3251-99FE-CC24CF4C93C5> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff89527000 -     0x7fff8952bff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8952c000 -     0x7fff89761ff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff89762000 -     0x7fff89763ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff89764000 -     0x7fff8978ffff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8979d000 -     0x7fff897b4fff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff897b5000 -     0x7fff897ebfff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff897ec000 -     0x7fff897f1fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff89862000 -     0x7fff898b1ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff89999000 -     0x7fff899f8fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff899f9000 -     0x7fff89a0ffff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff89ae5000 -     0x7fff89b67ff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff89b68000 -     0x7fff89b68ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff89b69000 -     0x7fff89ba6fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff89e1d000 -     0x7fff89e1dfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff89e1e000 -     0x7fff8a008ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8a009000 -     0x7fff8a088ff7  com.apple.securityfoundation (6.0 - 55115.4) <9291CE2A-37D9-39DF-956E-7B2650A9F3B0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8a09d000 -     0x7fff8aa2d627  com.apple.CoreGraphics (1.600.0 - 333.1) <C085C074-7260-3C3D-90C6-A65D3CB2BD41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8aa32000 -     0x7fff8aa63ff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8b050000 -     0x7fff8b051ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8b0a1000 -     0x7fff8b2a1fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff8b2cf000 -     0x7fff8b2effff  libPng.dylib (851) <3466F35C-EC1A-3D1A-80DC-175857FA19D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8b2f0000 -     0x7fff8b2fbfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8b2fc000 -     0x7fff8b30bfff  com.apple.opengl (1.8.10 - 1.8.10) <AD49CF56-B7C1-3598-8610-58532FC41345> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b30c000 -     0x7fff8b361ff7  libTIFF.dylib (851) <7706BB07-E7E8-38BE-A5F0-D8B63E3B9283> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b362000 -     0x7fff8b368fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8b369000 -     0x7fff8b369fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8b36a000 -     0x7fff8b444fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8b8ba000 -     0x7fff8b8c5ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8b8c6000 -     0x7fff8b9de92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8ba47000 -     0x7fff8bb49fff  libJP2.dylib (851) <26FFBDBF-9CCE-33D7-A45B-0A31C98DA37E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8ce27000 -     0x7fff8ce28fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8ce29000 -     0x7fff8ce38ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8ce39000 -     0x7fff8ce67ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8ce74000 -     0x7fff8cea2fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8ced2000 -     0x7fff8ced7fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8cfbd000 -     0x7fff8d03dff7  com.apple.ApplicationServices.ATS (332 - 341.1) <39B53565-FA31-3F61-B090-C787C983142E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8d0d3000 -     0x7fff8d13bff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8d13c000 -     0x7fff8d1e2ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <E91B0882-E75C-30E9-8DCD-7A0EEE4405CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8d1e3000 -     0x7fff8d202ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8d251000 -     0x7fff8d257fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d258000 -     0x7fff8d2c6ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8d2c9000 -     0x7fff8d315ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff8d316000 -     0x7fff8d413ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8d414000 -     0x7fff8d46efff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8d46f000 -     0x7fff8d4cbff7  com.apple.Symbolication (1.3 - 93) <84D69A46-BB0A-3DBE-ABC2-B767F61EC221> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8d4cc000 -     0x7fff8d4d0fff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
        0x7fff8d4d1000 -     0x7fff8d623fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8d628000 -     0x7fff8d691fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff8d6a7000 -     0x7fff8d773ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
        0x7fff8d7d4000 -     0x7fff8d7fbff7  com.apple.PerformanceAnalysis (1.16 - 16) <96A89CD5-16E9-37CA-8740-22B5DB5A4679> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8d7fc000 -     0x7fff8d81dfff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8d911000 -     0x7fff8dabffff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8dac0000 -     0x7fff8db2dff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8db2e000 -     0x7fff8db43ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8dc49000 -     0x7fff8dce4fff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8dcfb000 -     0x7fff8dcfffff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8deb2000 -     0x7fff8ded1ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8e194000 -     0x7fff8e194fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8e240000 -     0x7fff8e24dfff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8e24e000 -     0x7fff8e4f2ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8e8fd000 -     0x7fff8e953fff  com.apple.HIServices (1.20 - 417) <BCD36950-013F-35C2-918E-05A93A47BE8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e989000 -     0x7fff8ea27ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8ea28000 -     0x7fff8ea2bff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8ea2c000 -     0x7fff8ea2cfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8eaf6000 -     0x7fff8eafdfff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8eb03000 -     0x7fff8eb04fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8f9c4000 -     0x7fff8f9d1ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f9d2000 -     0x7fff8fce9ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8fcea000 -     0x7fff8fe70fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8fe71000 -     0x7fff8fe74fff  libRadiance.dylib (851) <C317B2C7-CA3A-329F-B6DC-7CC33FE08C81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8feb2000 -     0x7fff8fec9fff  com.apple.CFOpenDirectory (10.8 - 151.10) <D01120CC-16E0-372C-825B-B3AB510A8916> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8feca000 -     0x7fff8ffd5fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8ffd6000 -     0x7fff9014bff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff9014c000 -     0x7fff90241fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff90242000 -     0x7fff90250ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff90251000 -     0x7fff90253ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff90254000 -     0x7fff90e81fff  com.apple.AppKit (6.8 - 1187.40) <F12CF463-6F88-32ED-9EBA-0FA2AD3CF576> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff911d1000 -     0x7fff911fbff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff911fc000 -     0x7fff91200fff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff91201000 -     0x7fff91258ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff912af000 -     0x7fff91580ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff91581000 -     0x7fff91594ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff915e9000 -     0x7fff91628ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff91629000 -     0x7fff91650fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff916f1000 -     0x7fff916ffff7  libkxld.dylib (2050.48.12) <B8F7ED1F-CF84-3777-9183-0A1C513DF81F> /usr/lib/system/libkxld.dylib
        0x7fff91700000 -     0x7fff91707fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff91f4a000 -     0x7fff91fb2fff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff91fb6000 -     0x7fff91ff0ff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff91ff1000 -     0x7fff92072fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff92073000 -     0x7fff92087fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff9209f000 -     0x7fff920baff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
        0x7fff92116000 -     0x7fff92128ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 484738
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=147.8M resident=96.4M(65%) swapped_out_or_unallocated=51.5M(35%)
    Writable regions: Total=514.9M written=166.9M(32%) resident=169.4M(33%) swapped_out=0K(0%) unallocated=345.5M(67%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CoreServices                       4648K
    MALLOC                            402.1M
    MALLOC guard page                    96K
    MALLOC_LARGE (reserved)            2504K        reserved VM address space (unallocated)
    Mach message                         12K
    Memory tag=240                        8K
    Memory tag=241                     2004K
    Memory tag=243                     42.0M
    Memory tag=243 (reserved)          18.0M        reserved VM address space (unallocated)
    Memory tag=244                     9856K
    Memory tag=246                     6144K
    Memory tag=246 (reserved)          8192K        reserved VM address space (unallocated)
    Memory tag=247                     10.0M
    Memory tag=255                     1056K
    STACK GUARD                        56.0M
    Stack                              12.6M
    VM_ALLOCATE                         544K
    __DATA                             10.9M
    __IMAGE                             528K
    __LINKEDIT                         52.8M
    __TEXT                             95.1M
    __UNICODE                           544K
    mapped file                       341.3M
    shared memory                      1580K
    ===========                      =======
    TOTAL                               1.1G
    TOTAL, minus reserved VM space      1.0G

    CRASH REPORT 2:
    Process:         mds [81]
    Path:            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Support/mds
    Identifier:      mds
    Version:         707.12
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [1]
    User ID:         0
    Date/Time:       2014-02-09 15:40:55.323 +0800
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Sleep/Wake UUID: B6983286-619D-417B-B50C-CEC79537537A
    Crashed Thread:  6  Dispatch queue: com.apple.metadata.spotlightindex
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000056fa1c864
    VM Regions Near 0x56fa1c864:
        MALLOC_LARGE (reused)  000000013dfb2000-000000013e93c000 [ 9768K] rw-/rwx SM=PRV 
    -->
        MALLOC_TINY            00007fda33400000-00007fda33700000 [ 3072K] rw-/rwx SM=PRV 
    Application Specific Information:
    [0x1048a1000](Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    [0x1048a1000](Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    [0x10427b000](Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    Initializing
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff920af686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff920aec42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff89e4e233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff89e53916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff89e530e2 CFRunLoopRunSpecific + 290
    5   mds                                     0x00000001039f0474 0x1039e2000 + 58484
    6   libdyld.dylib                           0x00007fff8ea2a7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff920b1d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8db32dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8db329ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff920b1ffa read + 10
    1   mds                                     0x00000001039eb70d 0x1039e2000 + 38669
    2   libsystem_c.dylib                       0x00007fff8d6bb772 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8d6a81a1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 6 Crashed:: Dispatch queue: com.apple.metadata.spotlightindex
    0   com.apple.spotlight.index               0x0000000103bd45e0 getContentTokensCallback + 704
    1   com.apple.spotlight.index               0x0000000103bf4afc _CITokenizerGetTokens + 2316
    2   com.apple.spotlight.index               0x0000000103bf4cbe CITokenizerGetTokens + 78
    3   com.apple.spotlight.index               0x0000000103bd32bb invertValueToUpdateSet + 1083
    4   com.apple.spotlight.index               0x0000000103bd2c1a termUpdateSetProcessFields + 1338
    5   com.apple.spotlight.index               0x0000000103bd2de2 TermUpdateSetAddDocumentInfo + 178
    6   com.apple.spotlight.index               0x0000000103bc1a3f setDocumentAttributes + 2623
    7   com.apple.spotlight.index               0x0000000103baefbc _CIUpdateContent + 548
    8   com.apple.spotlight.index               0x0000000103c292af si_writeBackAndIndex + 2956
    9   com.apple.spotlight.index               0x0000000103b81df9 setAttributes + 6480
    10  com.apple.spotlight.index               0x0000000103b6cdd3 runLoop + 51
    11  com.apple.spotlight.index               0x0000000103b954a1 work_fun + 662
    12  libdispatch.dylib                       0x00007fff8db300b6 _dispatch_client_callout + 8
    13  libdispatch.dylib                       0x00007fff8db3147f _dispatch_queue_drain + 235
    14  libdispatch.dylib                       0x00007fff8db312f1 _dispatch_queue_invoke + 52
    15  libdispatch.dylib                       0x00007fff8db31448 _dispatch_queue_drain + 180
    16  libdispatch.dylib                       0x00007fff8db312f1 _dispatch_queue_invoke + 52
    17  libdispatch.dylib                       0x00007fff8db31448 _dispatch_queue_drain + 180
    18  libdispatch.dylib                       0x00007fff8db312f1 _dispatch_queue_invoke + 52
    19  libdispatch.dylib                       0x00007fff8db311c3 _dispatch_worker_thread2 + 249
    20  libsystem_c.dylib                       0x00007fff8d6bdcdb _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff920b16d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6bdf1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6bdce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d6a8191 start_wqthread + 13
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000010c55  rbx: 0x00000000000000e3  rcx: 0x00000000000007b1  rdx: 0x000000056fa1c860
      rdi: 0x0000000133157000  rsi: 0x0000000087918b0c  rbp: 0x0000000105d3f290  rsp: 0x0000000105d3ed90
       r8: 0x000000011090df24   r9: 0x00000000000035a0  r10: 0x0000000000000000  r11: 0x0000000000000001
      r12: 0x00000001124a860c  r13: 0x00007fda434123e0  r14: 0x00007fda43412350  r15: 0x000000011090df28
      rip: 0x0000000103bd45e0  rfl: 0x0000000000010206  cr2: 0x000000056fa1c864
    Logical CPU: 4
    Binary Images:
           0x1039e2000 -        0x103b01fff  mds (707.12) <72984FB4-5955-3336-9DF3-C079D3126DEF> /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
           0x103b55000 -        0x103d24fff  com.apple.spotlight.index (10.7.0 - 707.12) <FD63669B-3D65-34E5-A48A-BED4933FCD79> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/Spotlight Index
           0x103d81000 -        0x103d87ff7  com.apple.MDSChannel (1.2 - 1.2) <05A6F55A-8197-316A-A127-DE6528F9B291> /System/Library/PrivateFrameworks/MDSChannel.framework/Versions/A/MDSChannel
           0x103d95000 -        0x103d99fff  com.apple.ServerInformation (1.2 - 1) <5AC80E5E-3B55-3784-854D-1D49A874E775> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
           0x103da4000 -        0x103e1cfff  com.apple.DCERPC (1.5 - 53.1.1) <25F4A15A-5252-3C70-A1D0-8145357F78B8> /System/Library/PrivateFrameworks/DCERPC.framework/Versions/A/DCERPC
           0x103e47000 -        0x103e60ff7  com.apple.SMBClient (1.8 - 1.8) <CCEABA2F-2F88-3CF1-B39E-5D92DE47BACF> /System/Library/PrivateFrameworks/SMBClient.framework/Versions/A/SMBClient
           0x10763a000 -        0x10763fff7  libgermantok.dylib (7) <B98522FA-23D1-351E-9F25-5AAF58FD862D> /usr/lib/libgermantok.dylib
           0x1140e9000 -        0x114202fff  libmecab.1.0.0.dylib (359.70) <6A697F27-0296-3BEF-BBCE-D96471D5FE32> /usr/lib/libmecab.1.0.0.dylib
        0x7fff635e2000 -     0x7fff6361694f  dyld (210.2.3) <8958FE97-5830-3928-BC38-23136E7D3783> /usr/lib/dyld
        0x7fff85729000 -     0x7fff85751fff  libJPEG.dylib (851) <64A3EB03-34FB-308C-817B-6106D1F4D80F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff857f7000 -     0x7fff85910fff  com.apple.ImageIO.framework (3.2.2 - 851) <6552C673-9F29-3B31-A12E-C4391A950965> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff85911000 -     0x7fff8591ffff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff85a3d000 -     0x7fff85a81fff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
        0x7fff85a82000 -     0x7fff85a89fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff85a8a000 -     0x7fff85b3bfff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff85db8000 -     0x7fff85dc4fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff85e0e000 -     0x7fff85e1cfff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff85e1f000 -     0x7fff85e24fff  com.apple.OpenDirectory (10.8 - 151.10) <51E52779-4F5A-36B5-9297-67138547DCA9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85e25000 -     0x7fff85e2eff7  com.apple.CommerceCore (1.0 - 26.2) <AF35874A-6FA7-328E-BE30-8BBEF0B741A8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff85e2f000 -     0x7fff85e31fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff86213000 -     0x7fff862d8ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff862d9000 -     0x7fff866f6fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff866f7000 -     0x7fff86a27fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff86a28000 -     0x7fff86a3bff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff86f44000 -     0x7fff86fdefff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff87010000 -     0x7fff8701dfff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8704b000 -     0x7fff8709aff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8709b000 -     0x7fff8709efff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8709f000 -     0x7fff873fefff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff873ff000 -     0x7fff87400fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff874fc000 -     0x7fff8751eff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8751f000 -     0x7fff87562ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff879c8000 -     0x7fff879ceff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff87a1f000 -     0x7fff87b1cfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff87b1d000 -     0x7fff87b3fff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff87b40000 -     0x7fff87b4afff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff87e8e000 -     0x7fff87faefff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff87fbb000 -     0x7fff87fbcff7  libSystem.B.dylib (169.3) <DF030DDB-DF22-3769-A8CD-9806DDB84008> /usr/lib/libSystem.B.dylib
        0x7fff87fbd000 -     0x7fff87ff3fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff88366000 -     0x7fff88438ff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff88439000 -     0x7fff8843bfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8843c000 -     0x7fff88465fff  libsandbox.1.dylib (220.3) <410BC7E1-24A4-3E5A-ACCF-2F444DC82814> /usr/lib/libsandbox.1.dylib
        0x7fff88466000 -     0x7fff8847dfff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8847e000 -     0x7fff88875fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff88876000 -     0x7fff88878fff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff88879000 -     0x7fff8887aff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8887b000 -     0x7fff888c5ff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff888c6000 -     0x7fff888cafff  libGIF.dylib (851) <AD40D084-6E34-38CD-967D-705F94B188DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88929000 -     0x7fff8892dfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88d57000 -     0x7fff88d7cff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff88dc1000 -     0x7fff88e7eff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff88ecc000 -     0x7fff88eccfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff88ecd000 -     0x7fff88ed5fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff88f21000 -     0x7fff88f42ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff88f43000 -     0x7fff88f94ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff89023000 -     0x7fff891befef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff891bf000 -     0x7fff891bffff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff891c0000 -     0x7fff891c8ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff891d6000 -     0x7fff89219ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff89226000 -     0x7fff89231fff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89232000 -     0x7fff89295fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff89296000 -     0x7fff89323ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff89341000 -     0x7fff89341fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8937d000 -     0x7fff893d7ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8950f000 -     0x7fff8951cfff  com.apple.KerberosHelper (4.0 - 1.0) <6815439D-1A03-3251-99FE-CC24CF4C93C5> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff89527000 -     0x7fff8952bff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8952c000 -     0x7fff89761ff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff89762000 -     0x7fff89763ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff89764000 -     0x7fff8978ffff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8979d000 -     0x7fff897b4fff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff897b5000 -     0x7fff897ebfff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff897ec000 -     0x7fff897f1fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff89862000 -     0x7fff898b1ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff89999000 -     0x7fff899f8fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff899f9000 -     0x7fff89a0ffff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff89ae5000 -     0x7fff89b67ff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff89b68000 -     0x7fff89b68ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff89b69000 -     0x7fff89ba6fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff89e1d000 -     0x7fff89e1dfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff89e1e000 -     0x7fff8a008ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8a009000 -     0x7fff8a088ff7  com.apple.securityfoundation (6.0 - 55115.4) <9291CE2A-37D9-39DF-956E-7B2650A9F3B0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8a09d000 -     0x7fff8aa2d627  com.apple.CoreGraphics (1.600.0 - 333.1) <C085C074-7260-3C3D-90C6-A65D3CB2BD41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8aa32000 -     0x7fff8aa63ff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8b050000 -     0x7fff8b051ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8b0a1000 -     0x7fff8b2a1fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff8b2cf000 -     0x7fff8b2effff  libPng.dylib (851) <3466F35C-EC1A-3D1A-80DC-175857FA19D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8b2f0000 -     0x7fff8b2fbfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8b2fc000 -     0x7fff8b30bfff  com.apple.opengl (1.8.10 - 1.8.10) <AD49CF56-B7C1-3598-8610-58532FC41345> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b30c000 -     0x7fff8b361ff7  libTIFF.dylib (851) <7706BB07-E7E8-38BE-A5F0-D8B63E3B9283> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b362000 -     0x7fff8b368fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8b369000 -     0x7fff8b369fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8b36a000 -     0x7fff8b444fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8b8ba000 -     0x7fff8b8c5ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8b8c6000 -     0x7fff8b9de92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8ba47000 -     0x7fff8bb49fff  libJP2.dylib (851) <26FFBDBF-9CCE-33D7-A45B-0A31C98DA37E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8ce27000 -     0x7fff8ce28fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8ce29000 -     0x7fff8ce38ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8ce39000 -     0x7fff8ce67ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8ce74000 -     0x7fff8cea2fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8ced2000 -     0x7fff8ced7fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8cfbd000 -     0x7fff8d03dff7  com.apple.ApplicationServices.ATS (332 - 341.1) <39B53565-FA31-3F61-B090-C787C983142E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8d0d3000 -     0x7fff8d13bff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8d13c000 -     0x7fff8d1e2ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <E91B0882-E75C-30E9-8DCD-7A0EEE4405CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8d1e3000 -     0x7fff8d202ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8d251000 -     0x7fff8d257fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d258000 -     0x7fff8d2c6ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8d2c9000 -     0x7fff8d315ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff8d316000 -     0x7fff8d413ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8d414000 -     0x7fff8d46efff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8d46f000 -     0x7fff8d4cbff7  com.apple.Symbolication (1.3 - 93) <84D69A46-BB0A-3DBE-ABC2-B767F61EC221> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8d4cc000 -     0x7fff8d4d0fff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
        0x7fff8d4d1000 -     0x7fff8d623fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8d628000 -     0x7fff8d691fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff8d6a7000 -     0x7fff8d773ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
        0x7fff8d7d4000 -     0x7fff8d7fbff7  com.apple.PerformanceAnalysis (1.16 - 16) <96A89CD5-16E9-37CA-8740-22B5DB5A4679> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8d7fc000 -     0x7fff8d81dfff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8d911000 -     0x7fff8dabffff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8dac0000 -     0x7fff8db2dff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8db2e000 -     0x7fff8db43ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8dc49000 -     0x7fff8dce4fff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8dcfb000 -     0x7fff8dcfffff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8deb2000 -     0x7fff8ded1ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8e194000 -     0x7fff8e194fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8e240000 -     0x7fff8e24dfff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8e24e000 -     0x7fff8e4f2ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8e8fd000 -     0x7fff8e953fff  com.apple.HIServices (1.20 - 417) <BCD36950-013F-35C2-918E-05A93A47BE8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e989000 -     0x7fff8ea27ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8ea28000 -     0x7fff8ea2bff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8ea2c000 -     0x7fff8ea2cfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8eaf6000 -     0x7fff8eafdfff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8eb03000 -     0x7fff8eb04fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8f9c4000 -     0x7fff8f9d1ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f9d2000 -     0x7fff8fce9ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8fcea000 -     0x7fff8fe70fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8fe71000 -     0x7fff8fe74fff  libRadiance.dylib (851) <C317B2C7-CA3A-329F-B6DC-7CC33FE08C81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8feb2000 -     0x7fff8fec9fff  com.apple.CFOpenDirectory (10.8 - 151.10) <D01120CC-16E0-372C-825B-B3AB510A8916> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8feca000 -     0x7fff8ffd5fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8ffd6000 -     0x7fff9014bff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff9014c000 -     0x7fff90241fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff90242000 -     0x7fff90250ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff90251000 -     0x7fff90253ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff90254000 -     0x7fff90e81fff  com.apple.AppKit (6.8 - 1187.40) <F12CF463-6F88-32ED-9EBA-0FA2AD3CF576> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff911d1000 -     0x7fff911fbff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff911fc000 -     0x7fff91200fff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff91201000 -     0x7fff91258ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff912af000 -     0x7fff91580ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff91581000 -     0x7fff91594ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff915e9000 -     0x7fff91628ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff91629000 -     0x7fff91650fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff916f1000 -     0x7fff916ffff7  libkxld.dylib (2050.48.12) <B8F7ED1F-CF84-3777-9183-0A1C513DF81F> /usr/lib/system/libkxld.dylib
        0x7fff91700000 -     0x7fff91707fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff91f4a000 -     0x7fff91fb2fff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff91fb6000 -     0x7fff91ff0ff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff91ff1000 -     0x7fff92072fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff92073000 -     0x7fff92087fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff9209f000 -     0x7fff920baff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
        0x7fff92116000 -     0x7fff92128ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3748
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 484622
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=147.8M resident=96.2M(65%) swapped_out_or_unallocated=51.6M(35%)
    Writable regions: Total=635.0M written=249.4M(39%) resident=261.7M(41%) swapped_out=0K(0%) unallocated=373.3M(59%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CoreServices                       9296K
    MALLOC                            520.4M
    MALLOC guard page                    96K
    Memory tag=240                       12K
    Memory tag=241                      392K
    Memory tag=243                     36.0M
    Memory tag=243 (reserved)          12.0M        reserved VM address space (unallocated)
    Memory tag=244                     7680K
    Memory tag=246                     4096K
    Memory tag=246 (reserved)          8192K        reserved VM address space (unallocated)
    Memory tag=247                     17.0M
    Memory tag=255                     16.6M
    STACK GUARD                        56.0M
    Stack                              12.1M
    VM_ALLOCATE                         544K
    __DATA                             10.9M
    __IMAGE                             528K
    __LINKEDIT                         52.8M
    __TEXT                             95.1M
    __UNICODE                           544K
    mapped file                       360.6M
    shared memory                      1756K
    ===========                      =======
    TOTAL                               1.2G
    TOTAL, minus reserved VM space      1.2G

  • Task Form not appearing in the WorkList application

    Hi,
    I tried creating a task form in a very simple composite. I created task forms (both manual and auto-generated). However, the worklist app does not show any task form whenever a task appears in the inbox.
    In addition, i see the following error during deployment. Is this the reason for the problem ? If yes how to solve it.. any help will be appreciated...
    Unable to Encrypt data.
    Check installation/post-installation steps for errors. Check for errors during SOA server startup.
    ORABPEL-35010
    Unable to Encrypt data.
    Unable to Encrypt data.
    Check installation/post-installation steps for errors. Check for errors during SOA server startup.
         at oracle.bpel.services.common.util.EncryptionService.encrypt(EncryptionService.java:58)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.encryptString(VerificationService.java:2207)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.createTokenFromMap(VerificationService.java:1965)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getInternalContextToken(VerificationService.java:380)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getInternalContext(VerificationService.java:407)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.<clinit>(VerificationService.java:344)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread$1.run(TaskFlowDeployerThread.java:318)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread.getInternalWorkflowContext(TaskFlowDeployerThread.java:311)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread.registerTaskFlowWithTask(TaskFlowDeployerThread.java:232)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread.run(TaskFlowDeployerThread.java:113)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: java.security.AccessControlException: access denied (oracle.security.jps.service.credstore.CredentialAccessPermission context=SYSTEM,mapName=BPM-CRYPTO,keyName=BPM-CRYPTO read)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)
         at java.security.AccessController.checkPermission(AccessController.java:546)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:350)
         at oracle.security.jps.util.JpsAuth$Diagnostic.checkPermission(JpsAuth.java:271)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$6.checkPermission(JpsAuth.java:374)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:410)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:432)
         at oracle.security.jps.internal.credstore.util.CsfUtil.checkPermission(CsfUtil.java:562)
         at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.getCredential(SspCredentialStore.java:405)
         at oracle.bpel.services.common.util.CSFStore$1.run(CSFStore.java:234)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.bpel.services.common.util.CSFStore.getCredentialInfo(CSFStore.java:227)
         at oracle.bpel.services.common.util.EncryptionService.getKey(EncryptionService.java:132)
         at oracle.bpel.services.common.util.EncryptionService.encrypt(EncryptionService.java:54)
         ... 11 more
    [2010-04-07T16:45:43.628-06:00] [soa_server1] [ERROR] [] [oracle.soa.services.workflow.verification] [tid: Thread-280] [ecid: 0000IVQSpFF5qY3Lzm1FiW1BjECU0000AU,0] [APP: TaskDet] <.> bootstrup error: Unable to Encrypt data.[[
    Unable to Encrypt data.
    Check installation/post-installation steps for errors. Check for errors during SOA server startup.
    [2010-04-07T16:45:43.706-06:00] [soa_server1] [ERROR] [] [oracle.soa.services.workflow.verification] [tid: Thread-280] [ecid: 0000IVQSpFF5qY3Lzm1FiW1BjECU0000AU,0] [APP: TaskDet] <.> createInternalWorkflowContext: access error: access denied (oracle.security.jps.JpsPermission VerificationService.createInternalWorkflowContext)
    [2010-04-07T16:45:43.706-06:00] [soa_server1] [ERROR] [] [oracle.soa.services.workflow.query] [tid: Thread-280] [ecid: 0000IVQSpFF5qY3Lzm1FiW1BjECU0000AU,0] [APP: TaskDet] <.> Access to internal workflow context is denied.[[
    Requested access to internal workflow context is not allowed according to security policy.
    Ensure that correct security policy is used. If the error persists, contact Oracle Support Services.
    ORABPEL-30515
    Access to internal workflow context is denied.
    Requested access to internal workflow context is not allowed according to security policy.
    Ensure that correct security policy is used. If the error persists, contact Oracle Support Services.
         at oracle.bpel.services.workflow.verification.impl.VerificationService.createTaskDisplayInternalWorkflowContext(VerificationService.java:1019)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread$1.run(TaskFlowDeployerThread.java:318)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread.getInternalWorkflowContext(TaskFlowDeployerThread.java:311)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread.registerTaskFlowWithTask(TaskFlowDeployerThread.java:232)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread.run(TaskFlowDeployerThread.java:113)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: java.security.AccessControlException: access denied (oracle.security.jps.JpsPermission VerificationService.createInternalWorkflowContext)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)
         at java.security.AccessController.checkPermission(AccessController.java:546)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:350)
         at oracle.security.jps.util.JpsAuth$Diagnostic.checkPermission(JpsAuth.java:271)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$6.checkPermission(JpsAuth.java:374)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:410)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:432)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.createTaskDisplayInternalWorkflowContext(VerificationService.java:1012)
         ... 6 more
    [2010-04-07T16:45:43.738-06:00] [soa_server1] [ERROR] [] [oracle.soa.services.workflow.worklist] [tid: Thread-280] [ecid: 0000IVQSpFF5qY3Lzm1FiW1BjECU0000AU,0] [APP: TaskDet] <oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread.run> java.lang.Exception: ORABPEL-30515[[
    Access to internal workflow context is denied.
    Requested access to internal workflow context is not allowed according to security policy.
    Ensure that correct security policy is used. If the error persists, contact Oracle Support Services.
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread.registerTaskFlowWithTask(TaskFlowDeployerThread.java:285)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread.run(TaskFlowDeployerThread.java:113)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: ORABPEL-30515
    Access to internal workflow context is denied.
    Requested access to internal workflow context is not allowed according to security policy.
    Ensure that correct security policy is used. If the error persists, contact Oracle Support Services.
         at oracle.bpel.services.workflow.verification.impl.VerificationService.createTaskDisplayInternalWorkflowContext(VerificationService.java:1019)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread$1.run(TaskFlowDeployerThread.java:318)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread.getInternalWorkflowContext(TaskFlowDeployerThread.java:311)
         at oracle.bpel.services.workflow.client.worklist.servlet.TaskFlowDeployerThread.registerTaskFlowWithTask(TaskFlowDeployerThread.java:232)
         ... 2 more
    Caused by: java.security.AccessControlException: access denied (oracle.security.jps.JpsPermission VerificationService.createInternalWorkflowContext)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)
         at java.security.AccessController.checkPermission(AccessController.java:546)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:350)
         at oracle.security.jps.util.JpsAuth$Diagnostic.checkPermission(JpsAuth.java:271)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$6.checkPermission(JpsAuth.java:374)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:410)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:432)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.createTaskDisplayInternalWorkflowContext(VerificationService.java:1012)
         ... 6 more
    Edited by: user9138987 on Apr 7, 2010 5:18 PM

    SOA server installation and/or configuration seems to be the problem. I deployed the same compostie in a different "working" soa-server and it seems to work. But why the soa_server is bad is important to determine. Any suggestions welcome...
    Edited by: user9138987 on Apr 8, 2010 10:17 AM

  • Hi there, When I am forwarding a message in Thunderbird, I get a whole lot of unwanted message data @ the top of each forwarded message. How do I get rid of it?

    I want to be able to forward messages WITHOUT all of this information sitting at the top of each message.
    -------- Original Message --------
    From: - Wed Jul 02 16:02:43 2014
    X-Account-Key: account1
    X-UIDL: GmailId146f53cb7b1eb504
    X-Mozilla-Status: 0011
    X-Mozilla-Status2: 00000000
    X-Mozilla-Keys:
    Delivered-To: [email protected]
    Received: by 10.58.234.98 with SMTP id ud2csp249792vec; Tue, 1 Jul 2014 21:02:16 -0700 (PDT)
    X-Received: by 10.66.226.172 with SMTP id rt12mr1046210pac.101.1404273735957; Tue, 01 Jul 2014 21:02:15 -0700 (PDT)
    Return-Path: <[email protected]>
    Received: from mailak.datacom.co.nz (mx03.datacom.co.nz. [202.175.132.5]) by mx.google.com with ESMTPS id wk8si28988621pab.59.2014.07.01.21.02.14 for <[email protected]> (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 01 Jul 2014 21:02:15 -0700 (PDT)
    Received-SPF: none (google.com: [email protected] does not designate permitted sender hosts) client-ip=202.175.132.5;
    Authentication-Results: mx.google.com; spf=neutral (google.com: [email protected] does not designate permitted sender hosts) [email protected]
    Received: from DNZSERVEX1.dnzservices.co.nz (Not Verified[202.175.131.70]) by mailak.datacom.co.nz with ESMTP Gateway id <B53b384440002>; Wed, 02 Jul 2014 16:02:12 +1200
    Received: from DNZSERVEX1.dnzservices.co.nz ([202.175.131.70]) by DNZSERVEX1.dnzservices.co.nz ([202.175.131.70]) with mapi; Wed, 2 Jul 2014 15:59:40 +1200
    From: Canon Orders <[email protected]>
    To: 'Browns Bay Photo & Digital' <[email protected]>
    Date: Wed, 2 Jul 2014 15:59:41 +1200
    Subject: RE: Query | ASAP
    Thread-Topic: Query | ASAP
    Thread-Index: Ac+VqgyW2Vahp62RS86K3r0Ls7Szew==
    Message-ID: <[email protected]es.co.nz>
    Accept-Language: en-US, en-NZ
    Content-Language: en-US
    X-MS-Has-Attach:
    X-MS-TNEF-Correlator:
    acceptlanguage: en-US, en-NZ
    Content-Type: multipart/alternative; boundary="_000_8424F635E837A047A9FEF132ADAF1E070302564B8020DNZSERVEX1d_"
    MIME-Version: 1.0
    Cheers!

    From the Menu Bar select '''View-Headers-Normal'''
    No menu bar? press the alt key.

  • V$archived_log and gv$archived_log

    2 node RAC on 10.2.0.4
    Archived Logs stored in Local file systems of each node (not in ASM)
    To determine the amount of redo generated on each nodes I googled and got the below query.
    SELECT ROUND(SUM(blocks*block_size)/1024/1024/1024) arc_size,
    TRUNC(first_time) arc_date
    FROM v$archived_log
    WHERE dest_id=1
    GROUP BY TRUNC(first_time)
    ORDER BY 2 DESCWhen i checked the actual size of archive logs on each nodes, i realized that the below query is returning the sum of archive logs of both nodes.(accurately though)
    When i queried gv$archived_log, it returns
    Size of archive logs from both nodes multiplied by 2 (inaccurate)Why can't v$archived_log just show the archivelog size of its own instance? Are there any other RAC related v$views which behaves similarly ?
    Edited by: Herbaceous on May 26, 2011 8:13 AM

    Hi,
    Why can't v$archived_log just show the archivelog size of its own instance? Are there any other RAC related v$views which behaves similarly ?To understand It we need understand the difference between instance and database. An database (files) can be opened by many instances.
    Database:
    CONTROLFILE
    DATAFILE
    ONLINELOG
    ARCHIVELOG
    SPFILE
    Instances:
    PARAMETERS
    MEMORY STRUCTURE
    The fact that each instance have its own REDO/UNDO, but not mean they are part only of the instance (nodes).
    So, archivelog doesn't have your own instance (node), but it's generate by one of instances and belong to database. So, it's recommended place archivelogs on a shared disk, such as ONLINELOGS.
    You not need gv$ to query databases files, because it's the same on all instances.
    gv$controlfile = (v$controlfile * qtd instances)
    gv$datafile = (v$datafile * qtd instances)
    gv$log = (v$log * qtd instances)
    gv$archive_log = (v$archive_log * qtd instances)
    So, I recommend you running your query specifying THREAD#, but the values can be inaccurate because THREAD# 2 can archive REDO of THREAD# 1.
    Also you can use this query to estimate archivelogs size by THREAD.
    SELECT distinct(to_char((bytes*0.000001),'9990.999')) size_mb FROM v$log;
      column ord     noprint
       column date_   heading 'Date'         format A15
       column no      heading '#Arch files'  format 9999999
       column no_size heading 'Size Mb'      format 9999999
       compute avg of no      on report
       compute avg of no_size on report
       break on report
       select MAX(first_time) ord, to_char(first_time,'DD-MON-YYYY') date_,
              count(recid) no, count(recid) *  <logfile_size> no_size
       from v$log_history
       group by to_char(first_time,'DD-MON-YYYY') ,THREAD#
       order by ord
       clear breaks
       clear computes
       clear columnsSee this tech note on MOS:
    *Determine How Much Disk Space is Needed for the Archive Files [ID 122555.1]*
    Regards,
    Levi Pereira
    Edited by: Levi Pereira on May 26, 2011 4:49 PM

  • How To Adjust the a Pool's MaxPoolSize in resource xml DD.

    For registering a JDBC data source via the XML resouce descriptor, is
    there a way to specify pooling properties (e.g. MaxPoolSize)?
    We typically use iasdeploy to register data sources and have
    restrictions about using iAS admin ui. So if there is a way to adjust
    pool properties via the command line I would love to know how.
    Perhaps, .reg file like you can do for Windows NT? Can you do this with
    kregedit? Is there another method for adjust a key in iAS registry?
    Thanks in advance.
    Fred Welland
    [email protected]
    Intelix inc.

    You can see the "Re:DB query logging" thread posted by Jee Chung. That may
    help you.
    "The Wellands" <[email protected]> wrote in message
    news:[email protected]..
    For registering a JDBC data source via the XML resouce descriptor, is
    there a way to specify pooling properties (e.g. MaxPoolSize)?
    We typically use iasdeploy to register data sources and have
    restrictions about using iAS admin ui. So if there is a way to adjust
    pool properties via the command line I would love to know how.
    Perhaps, .reg file like you can do for Windows NT? Can you do this with
    kregedit? Is there another method for adjust a key in iAS registry?
    Thanks in advance.
    Fred Welland
    [email protected]
    Intelix inc.

  • Different heading label based on the value!

    i have IR report  ...
    sl no
    street
    Ph
    notes
    this label never
    to show here!
    dynamic label
    (ASIA)
    (EUROPE)
    1
    2 nd st
    96541
    notes 1
    ASIA
    INDIA
    2
    2nd st
    65841
    notes 2
    EUROPE
    UK
    3
    2nd
    5648
    note 3
    EUROPE
    GERMANY
    i have condition when the user logged from region wise,the region value should goes to label in Dynamic label as HEADING! how its possible?
    Thanx,
    Ram.

    Ramani_vadakadu wrote:
    Yes i did the  validation based on the LOV to affect &ITEM_LABEL ! how can use this validation in pre-validation? please login and do the sample one based on the value(real data means my 1st query in thread)!
    https://apex.oracle.com/pls/apex/f?p=29288:1:9453626954797:::::
    Wks:ram_r&d
    user/password: aramani/apex
    I have no idea what you mean. There is no validation involved. Not only did I never mention validation, you are claiming that you "did the validation", yet there is no validation on your page at all. I suspect that you are using the term "validation" in a very different way from its APEX-specific meaning.
    The component that is required in this case is a page computation with a Before Header computation point.

Maybe you are looking for