Why using RSPO_*_SPOOLREQUEST fm (open, write, close) instead of ABAP WRITE

I just discovered the RSPO_OPEN_SPOOLREQUEST, RSPO_WRITE_SPOOLREQUEST, and RSPO_CLOSE_SPOOLREQUEST function modules (in this thread : Re: Sending attachment using class cl_document_bcs as PDF, and in many threads in the forum).
But what is the interest of using them, as we have the same thing with ABAP statements? (NEW-PAGE, WRITE, etc.)
(I searched the forum but found no explanation)
I'll be glad to hear your point of view.
Thx

Hello Bertrand,
But NEW PAGE PRINT ON ... WRITE ... NEW PAGE PRINT OFF also does the same thing And i feel Sandra has a very valid point.
@Sandra: You must have seen many function module freaks who need to select data from some DB table using FM Also i will like to add: NEW PAGE PRINT ON without the specifying the print PARAMETERS gives a warning during syntax check. If you add the print params i donot think we have any probs.
Anyways good observation.
Cheers,
Suhas

Similar Messages

  • I would like to use the windows explorer open dialog box instead of the adobe open dialog box. How can I change that?

    I would like to use the windows explorer open dialog box instead of the adobe open dialog box. How can I change that?

    The top screenshot is the Windows Open dialog box. All File > Open... commands in all Windows programs bring it up.   Try File > Open in Notepad for example.
    It belongs to Windows not Adobe. You cannot change this because there is no such thing as an Adobe Open dialog box.
    The bottom screenshot is Windows Explorer. It is Windows' OS File Browser, not an Open dialog.  It is not called up by Photoshop or any Windows program.
    You have to click on "My Computer" or a Folder icon to get to it. You can double-click a psd, jpeg or other image file in the Explorer window so that it opens in Photoshop.
    There is Adobe Bridge and Minibridge   Alt + Ctrl + O or File > Browse in Bridge

  • Why SAP has taken Java for their development instead of ABAP completely

    Hi
    I am Neelima, new to SAP and abap,
    Can u please explain
    Why SAP has taken Java for their development instead of ABAP completely
    Thanks in advance
    Regards,
    Neelima

    Hi Neelima ,
      Answer to Q . Why SAP has taken Java for their development instead of ABAP completely ?
      First of all in my view SAP has not taken Java as Such instead of ABAP .
      But you nowdays whole lot of java is coming in SAP by doors of SAP NetWeaver .
    Now why they choosed java only <b> IN MY VIEW</b>
    1)     Java is open source so SAP in tie up with SUN can develop SAP specific API’s and that’s what happenings . In Net Weaver Developer studio (NDS of SAP like eclipe of Java ) we use packages ,classes , methods for SAP.
    2)     In my view Java is rocking in Web world , Every single popular product ( like IBM MQ series , Oracle Apps ) is making use Java for making things web based .
    So why not SAP .
    3)     Now data ultimately data is getting saved in XML . And java is best to deal with that . In SAP also Idoc data is stored in XML and so same data can be used anywhere inspite of Platform , technology .
    4)     Java has much established base of web Solution , Web services .They have got beautiful architecture so that Best Web sevices can be developed with EJB (Enter prise java beans  ) , sturts  and all .
    5)     Now It’s time for SAP to be Mobile Enabled .i.e. to Run SAP over PDA , Blackberry .Such solutions possible with SAP + Java combination .Java provides that framework to understand Mobile OS platform.
    6)     Another thing now Its time of EAI (Enterprise Application Integration) . Integration is future . Multiple product integrated and used togetherly , exchanges data. Take case SAP’s message goes to Sieble , people soft .For this Java + XML is best suied as both product understand it .
    Utimately SAP is Using java to provide Best Web ERP solutions
    But it does not mean ABAP is not there. With webDynpro ABAP  you can do every thing that WD java does . In fact incase if you have existing ABAP recourses then use WD ABAP for developing web services in SAP. In uses OO ABAP as base programming language .
    Please refer to this link
    IS Webdynpro for ABAP/JAVA is same?
    so hope your question is cleared
    Cheers
    <b>Parry</b>

  • Using Runtime exec() to open and close process like java or javac

    Hi, I m a student who is learning IT and is wondering if
    Runtime exec() can run and stop commands like java and javac?
    Can someone post the code to do so here?Thank you

    Well, Here is my complete code:
    import java.util.*;
    import java.io.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    class StreamGobbler extends Thread
    InputStream is;
    String type;
    StreamGobbler(InputStream is, String type)
    this.is = is;
    this.type = type;
    public void run()
    try
    InputStreamReader isr = new InputStreamReader(is);
    BufferedReader br = new BufferedReader(isr);
    String line=null;
    while ( (line = br.readLine()) != null)
    System.out.println(type + ">" + line);
    } catch (IOException ioe)
    ioe.printStackTrace();
    class Program implements Runnable
         Process proc;
    String args[];
         String[] cmd = new String[4];
         boolean isGone=false;
         public Program(String args[])
              this.args=args;
         public void run()
              if (isGone==true)
                   try
                        Runtime.getRuntime().exec(cmd).destroy();
                   catch(IOException e)
                        System.out.println("Error: "+e.toString());
                   System.out.println("User abort");
         public void start(String args[])
              if (args.length < 1)
    System.out.println("USAGE: java GoodWindowsExec <cmd>");
    System.exit(1);
    try
    String osName = System.getProperty("os.name" );
    if( osName.equals( "Windows NT" ) )
    cmd[0] = "cmd.exe" ;
    cmd[1] = "/C" ;
    cmd[3] = args[0];
    else if( osName.equals( "Windows 95" ) ||osName.equals( "Windows 98" ))
    cmd[0] = "command.com" ;
    cmd[1] = "/C" ;
    cmd[2] = args[0];
                        cmd[3]=args[1];
    Runtime rt = Runtime.getRuntime();
    // System.out.println("Execing " + cmd[0] + " " + cmd[1]
    // + " " + cmd[2]+" "+args[1]);                                    
    proc = rt.exec(cmd);
    // any error message?
    StreamGobbler errorGobbler = new
    StreamGobbler(proc.getErrorStream(), "ERROR");
    // any output?
    StreamGobbler outputGobbler = new
    StreamGobbler(proc.getInputStream(), "OUTPUT");
    // kick them off
    errorGobbler.start();
    outputGobbler.start();
    // any error???
    // int exitVal = proc.waitFor();
    //System.out.println("ExitValue: " + exitVal);
    } catch (Throwable t)
    t.printStackTrace();
         public void destroy()
              isGone=true;
    class test1 implements ActionListener
         String s[]={"c:\\jdk1.3\\bin\\java.exe","ContactProcessor1"};
         GUI g=new GUI();
              Program p=new Program(s);
         public test1()
              //didnt work
              g.getStart().addActionListener(this);
              g.getStop().addActionListener(this);
              g.show();
         public void actionPerformed(ActionEvent e)
              if (e.getSource()==g.getStart())
                   p.start(s);
                   p.run();
              if (e.getSource()==g.getStop())
                   p.destroy();
                   p.run();
         public static void main(String args[])
              test1 t = new test1();
    class GUI extends JFrame
         JButton start;
         JButton stop;
         public GUI()
              super();
              getContentPane().setLayout(new FlowLayout());
              start=new JButton("start");
              stop=new JButton("stop");
              getContentPane().add(start);
              getContentPane().add(stop);
              setSize(100,100);
         public JButton getStart()
              return start;
         public JButton getStop()
              return stop;
    }

  • Tried uninstalling but it wont fully uninstall yet i cant use it, but it opens PDF files instead of PDF looking regular

    I had the trial version and went to uninstall it off of my computer once i decided i wouodnt be using it,
    It says thats its still installed on my computer and then when i go to hit uninstall again it wont do it. It runs an error.
    I notice that when I try to save thngs as PDF that is the default program that it goes to but then there is no way for my to be able to open it since the program isnt really installed on my computer.
    I also tried running the cleaner tool to no avail.
    How do I get it competely off my computer?

    HI,
    Please use Adobe Cleaner tool to uninstall the application completely.
    Here is the link: http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    -Pragya

  • Why are my PDF's opening in Preview instead of Adobe?

    My previous iBook opened up my PDF's in Adobe. But my MacBook purchased Nov 2012 is opening up PDF's in Preview. How can I get them to open in Adobe?

    Thank you, this only works until system shut down, and on re-start, Preview is again mysteriously the default viewer for PDF's... I can repeat this "Get Info, Change All" sequence, but every time I restart the computer?  Seem odd... Any suggestions?  Thanks!

  • Software issue iphone 4s:Apps open and close by themselves almost as if someone is pressing the buttons, anyone have this issue?

    Recieved my 3rd iphone  4s due to battery issues and got another dud. While in use, the apps  will open and close on there own, email will get deleted while I'm reading them or archived. while looking through my contacts directory, the phone will select a contact creating an outbound call. This is frustrating. Any one else have this issue?

    Hi Ralph9430,
    I've tried this numerous times and have the same issue. I've even restored the phone to factory settings and removed everything and problem persists.
    Cheers

  • How do I open and close VIs from within a VI?

    Ladies and gentlemen,
    I would like to use a VI to open and close other VIs based on user input.  Example:  The first VI will have text that reads:  "Does the car have heated mirrors?"  There will be two buttons: one for "YES" and the other for "NO."
    If the user hits the "NO" button, the current VI will close and a similar VI will open that asks the user the next question, "Are the mirrors lighted?" "YES" or "NO..."
    If the user hits the "YES" button, the current VI will close and another will open that will tell the user to "Activate the heated mirrors" and press a button that will say "NEXT."  At that point, that VI will close, and in two minutes another VI will open and ask the user "Is the driver's side mirror hot?" with another set of "Yes" or "No" buttons.  If the user presses "YES" we will have verified that the heated driver's side mirror is working properly and store that information somewhere .  If the user presses "NO", the VI will close and another VI will open with some kind of repair instruction and a button that says "RETEST" that will rerun the heated mirror test when repairs are completed.
    During the two minutes we are waiting for the mirrors to heat up the program should move on to the next question: "Are the mirrors lighted?" "YES" or "NO..."
    Does anyone know how to manipulate VIs in this way?  Please help!
    Drew

    Instead of opening and closing vi's, just create one main vi with a state machine architecture.  Search for examples on state machines to get a basic understanding of them.  This is pretty complex so I have written an example of how this could be accomplished.  The trick part was the 2 minute timer (my vi is set for 5 seconds for quick testing).  Each state produces a question, and depending on the answer, the next state is inserted into a queue.  You can add more states for more questions and answers.  Notice that the boolean buttons can be hidden if you just want to show one button (like Next) instead of two buttons (Yes and No).  Study the vi and let me know if you have questions.
    - tbob
    Inventor of the WORM Global
    Attachments:
    Q&A.vi ‏166 KB

  • When to open and close database connection

    im trying to connect to a oracle database using servlets
    when should i open and close the connection
    it works fine when i do both in the doPost() method
    but when i tried to open connection in init() methd .. it doesnt seem to work
    what should i do...
    the connection is initialised in the init() method but is null in the doPost() method

    " im trying to connect to a oracle database using servlets
    when should i open and close the connection
    it works fine when i do both in the doPost() method
    but when i tried to open connection in init() methd .. it doesnt seem to work
    what should i do...
    the connection is initialised in the init() method but is null in the doPost() method"
    1:
    without seeing the code i would say the the connection is null
    because you are storing it as a servlet class variable which is
    not thread safe.
    2:
    The best way to do it using connection pooling
    detailed docs on the tomcat website
    3:
    if you are not using connection pooling, then
    open and close the connection in the do* method
    or
    use init() to place the connection in the servletconfig
    and close in destroy() and use synching to access

  • Why use finally block

    why use finnaly block when we can close the resources after the try cath method has executed

    The real reason is that you don't usually catch all exceptions (and you shouldn't). The code shown doesn't catch Errors for example, yet you would always want the resources allocated in the method to be released regardless of any exceptions that are thrown, not just the ones you catch yourself.

  • Why should you explicitly open and close shared variable connections?

    I'm looking into switching over from the old Datasocket API to the new Shared Variable API for programmatic access to shared variables, and I noticed that LV doesn't seem to have any problems executing Shared Variable Reads & Writes without first opening the connection explicitly. That is, I can just drop in a shared varaible Read VI, wire a constant to the refnum input, and it will work. I'm wondering, then, what benefits are offered by explicitly opening the conenction ahead of time...?
    I guess I could see some cases where you want to open all necessary connections in an initialization state of a top-level state machine, particularly if you want to use the "Open & Verify Connection"---so you could jump straight to an error case if any connections fail. But other than that, why else might one want to explicitly open the connections.
    And, along those lines, are there any problems with implicitly opening the connections? One reason why I am hesitant to open them explicitly is because for one of our applications, we need to be able to dynamically switch from one variable to another at runtime. It would be nice to just switch the variable refnum (wired to the input of the Read function), without having to manually close out the old connection and open a new one. A quick prototype of this seems to work. But am I shooting myself in the foot by doing so?
    Thanks in advance.

    I'd expect there's a very small number of people at NI that would know the answer to the detail you're asking for.  But, let's try to extrapolate from this rather old post to see if we can understand what they're forming their impression on.
    The shared variable has to have some sort of reference going on in the background.  It looks like they're calling this a connection.  It's how LabVIEW knows where to find this variable on the network.  We can also see this reference certainly exists if we're opening/closing the reference in the explicit method.  You see the connection as just a string referencing the variable by URL.  This "reference" has to be stored somewhere.  No matter how we're looking at this, we're aware there's a reference of some sort stored. 
    Now, we'd want to look at what would cause this reference to go away.  If you open/close explicitly, it's easy to see it goes away at the close.  If it's implicit, when would it make sense to close it out?  The VI can't be expected to guess where it's done being referenced and close it out.  This puts us into a situation where the soonest it could close is when the VI ends.  From my experience, references tend to be wiped when you close out LabVIEW.  It's this kind of idea that makes the FGV possible.  I wouldn't be surprised by Morgan's claim here.
    If we look at scalability, you're talking about two different topics.  You're talking about adding an extra open, close, read, etc rather than just a few wires.  That certainly would look a mess.  In terms of the dynamic swap that was being discussed, we wouldn't be adding all of those.  The concern would be if enough connections were opened it'd start to behave similar to a memory leak.  This could be something that works with a smaller number of variables.  If you continue to scale, it becomes problematic.  This is why they suggest it's not scalable. 
    To your questions:
    Does LV allocate some kind of session in memory using that string as a lookup?
    It would HAVE to allocate some memory to hold that string.  Otherwise, it'd be pointless to even have the reference. 
    Does it reuse that session if other parts of the application reference the same variable, or does it create a unique session for each referencing call to "Read Variable.vi"?
    I would expect this to be "it depends."  With the implicit method, I would expect it to open a new reference in each point it isn't wired.  This is similar to int x,y = 5;  x and y share the same value but are their own unique memory location.  If you wire the reference to the other points, it should use the same reference.  This would make more sense to me than the program seeking out any other potential usage of the variable in the application to see if there's already a reference open.  I could be wrong, though.
    And what resources does this "connection" actually represent?
    At best, this is just the string.  At worst, it's the string and the TCP socket.  I'd lean towards the first.  Opening and closing sockets should be relatively easy in most applications.  But, it also wouldn't surprise me if it holds the socket.
    I'm sure others have a better understanding than I do.  But, that's what I'd expect for anything you've asked.

  • Why would Siri open and close randomly?

    My iPhone 5 displays the oddest and most erratic behavior and I cannot figure out why!  Hopefully someone here can head me in the right direction!
    A few times a week, Siri will pop up with her "What can I help you with" window.  I'll close it and it will reopen again.  Sometimes it even causes other apps to open.  Open and close.  Over and over.  It happens randomly or at least I cannot see the common denominator anyway.   I use a bumper with my phone but it does not cover or even touch the screen button.  
    Any ideas?
    Thanks for the help!
    Peter

    It is possible that you are pressing the home button while the phone is in your pocket. If this is not the case then plug your phone into your computer and use iTunes to restore your phone. Also restore as a new iPhone not from backup.

  • After i update to 10.6.8, why safari, app store and dashbord always close unexpectedly when i open it

    after i update to 10.6.8, why safari, app store and dashbord always close unexpectedly when i open it ?
    this is the log for safari
    Process:         Safari [551]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.3 (6533.21.1)
    Build Info:      WebBrowser-75332101~6
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [86]
    Date/Time:       2011-07-12 09:42:31.917 +0700
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          13615 sec
    Crashes Since Last Report:           237
    Per-App Interval Since Last Report:  1323 sec
    Per-App Crashes Since Last Report:   55
    Anonymous UUID:                      DE637EF1-55B5-4BC9-9DC6-7B3E7F8EE9F5
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000020
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.WebCore                 0x00007fff834fef34 WebCore::reportException(JSC::ExecState*, JSC::JSValue) + 52
    1   com.apple.WebCore                 0x00007fff83438caa WebCore::JSEventListener::handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*) + 2202
    2   com.apple.WebCore                 0x00007fff83a65ad0 WebCore::EventTarget::fireEventListeners(WebCore::Event*, WebCore::EventTargetData*, ***::Vector<WebCore::RegisteredEventListener, 1ul>&) + 240
    3   com.apple.WebCore                 0x00007fff832e1bf2 WebCore::EventTarget::fireEventListeners(WebCore::Event*) + 146
    4   com.apple.WebCore                 0x00007fff832e187b WebCore::Node::dispatchGenericEvent(***::PassRefPtr<WebCore::Event>) + 1243
    5   com.apple.WebCore                 0x00007fff832e1271 WebCore::Node::dispatchEvent(***::PassRefPtr<WebCore::Event>) + 241
    6   com.apple.WebCore                 0x00007fff83430a96 WebCore::HTMLImageLoader::dispatchLoadEvent() + 262
    7   com.apple.WebCore                 0x00007fff83348f7d WebCore::ImageEventSender::dispatchPendingEvents() + 221
    8   com.apple.WebCore                 0x00007fff8336c687 WebCore::ThreadTimers::sharedTimerFiredInternal() + 151
    9   com.apple.WebCore                 0x00007fff83c13765 WebCore::timerFired(__CFRunLoopTimer*, void*) + 53
    10  com.apple.CoreFoundation          0x00007fff82d74be8 __CFRunLoopRun + 6488
    11  com.apple.CoreFoundation          0x00007fff82d72dbf CFRunLoopRunSpecific + 575
    12  com.apple.HIToolbox               0x00007fff8935d74e RunCurrentEventLoopInMode + 333
    13  com.apple.HIToolbox               0x00007fff8935d553 ReceiveNextEventCommon + 310
    14  com.apple.HIToolbox               0x00007fff8935d40c BlockUntilNextEventMatchingListInMode + 59
    15  com.apple.AppKit                  0x00007fff87ba0eb2 _DPSNextEvent + 708
    16  com.apple.AppKit                  0x00007fff87ba0801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    17  com.apple.Safari                  0x0000000100015ffa 0x100000000 + 90106
    18  com.apple.AppKit                  0x00007fff87b6668f -[NSApplication run] + 395
    19  com.apple.AppKit                  0x00007fff87b5f3b0 NSApplicationMain + 364
    20  com.apple.Safari                  0x0000000100009f1c 0x100000000 + 40732
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff88b5fc0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff88b61add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff88b617b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff88b612de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff88b60c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff88b60aa5 start_wqthread + 13
    Thread 2:  WebCore: IconDatabase
    0   libSystem.B.dylib                 0x00007fff88b81a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff88b85881 _pthread_cond_wait + 1286
    2   com.apple.WebCore                 0x00007fff8327d199 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3   com.apple.WebCore                 0x00007fff8327929c WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 3:  Safari: CertRevocationChecker
    0   libSystem.B.dylib                 0x00007fff88b46d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff88b473ed mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff82d73932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff82d72dbf CFRunLoopRunSpecific + 575
    4   com.apple.Safari                  0x000000010002f5c9 0x100000000 + 193993
    5   com.apple.Safari                  0x000000010002f559 0x100000000 + 193881
    6   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff88b46d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff88b473ed mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff82d73932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff82d72dbf CFRunLoopRunSpecific + 575
    4   com.apple.Foundation              0x00007fff88f6d23f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation              0x00007fff88eee204 __NSThread__main__ + 1429
    6   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 5:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                 0x00007fff88b46d7a mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff88b473ed mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff82d73932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff82d72dbf CFRunLoopRunSpecific + 575
    4   com.apple.Safari                  0x000000010002f5c9 0x100000000 + 193993
    5   com.apple.Safari                  0x000000010002f559 0x100000000 + 193881
    6   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 6:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x00007fff88b8a932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x00007fff82d95498 __CFSocketManager + 824
    2   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    3   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                 0x00007fff88b60a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff88b60e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff88b60aa5 start_wqthread + 13
    Thread 8:
    0   libSystem.B.dylib                 0x00007fff88b5fc0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff88b9e9fa _mdns_query_mDNSResponder + 1133
    2   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    3   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    4   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    5   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    6   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    7   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                 0x00007fff88b5fc0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff88b9e9fa _mdns_query_mDNSResponder + 1133
    2   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    3   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    4   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    5   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    6   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    7   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                 0x00007fff88b5fc0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff88b9e9fa _mdns_query_mDNSResponder + 1133
    2   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    3   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    4   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    5   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    6   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    7   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                 0x00007fff88b5fc0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff88b9e9fa _mdns_query_mDNSResponder + 1133
    2   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    3   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    4   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    5   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    6   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    7   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                 0x00007fff88b46dc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff88b4c40d pthread_mutex_lock + 469
    2   libSystem.B.dylib                 0x00007fff88b9ea1f _mdns_query_mDNSResponder + 1170
    3   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    4   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    5   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    6   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    7   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    8   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                 0x00007fff88b5fc0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff88b9e9fa _mdns_query_mDNSResponder + 1133
    2   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    3   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    4   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    5   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    6   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    7   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                 0x00007fff88b46db6 semaphore_wait_trap + 10
    1   libSystem.B.dylib                 0x00007fff88b4c3e4 pthread_mutex_lock + 428
    2   libSystem.B.dylib                 0x00007fff88b9ed61 _mdns_query_mDNSResponder + 2004
    3   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    4   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    5   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    6   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    7   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    8   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                 0x00007fff88b46dc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff88b4c40d pthread_mutex_lock + 469
    2   libSystem.B.dylib                 0x00007fff88b9ed61 _mdns_query_mDNSResponder + 2004
    3   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    4   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    5   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    6   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    7   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    8   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                 0x00007fff88b5fc0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff88b9e9fa _mdns_query_mDNSResponder + 1133
    2   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    3   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    4   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    5   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    6   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    7   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                 0x00007fff88b46dc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff88b4c40d pthread_mutex_lock + 469
    2   libSystem.B.dylib                 0x00007fff88b9ea1f _mdns_query_mDNSResponder + 1170
    3   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    4   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    5   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    6   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    7   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    8   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                 0x00007fff88b4c417 pthread_mutex_lock + 479
    1   libSystem.B.dylib                 0x00007fff88b9ea1f _mdns_query_mDNSResponder + 1170
    2   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    3   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    4   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    5   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    6   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    7   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                 0x00007fff88b46dc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff88b4c40d pthread_mutex_lock + 469
    2   libSystem.B.dylib                 0x00007fff88b9ea1f _mdns_query_mDNSResponder + 1170
    3   libSystem.B.dylib                 0x00007fff88b9dc61 _mdns_search + 1152
    4   libSystem.B.dylib                 0x00007fff88b9cffc _mdns_addrinfo + 754
    5   libSystem.B.dylib                 0x00007fff88b9c059 search_addrinfo + 146
    6   libSystem.B.dylib                 0x00007fff88b9ba7a si_addrinfo + 1349
    7   libSystem.B.dylib                 0x00007fff88bb2dc7 si_async_launchpad + 94
    8   libSystem.B.dylib                 0x00007fff88b7ffd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff88b7fe89 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000001c  rbx: 0x00007fff5fbfe5d0  rcx: 0x0000000114628a50  rdx: 0x0000000100d4c100
      rdi: 0x000000011464cac0  rsi: 0x000000011464cac0  rbp: 0x00007fff5fbfe470  rsp: 0x00007fff5fbfe2c0
       r8: 0x0000000000000001   r9: 0x000000011719b800  r10: 0x0000000000000038  r11: 0x00002dda42627524
      r12: 0x0000000116e26a20  r13: 0x0000000100d4c100  r14: 0x0000000114628a88  r15: 0x0000000102d4d1c0
      rip: 0x00007fff834fef34  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Binary Images:
           0x100000000 -        0x1006afff7  com.apple.Safari 5.0.3 (6533.21.1) <09261F3D-C3EC-A309-83F4-DC49CC549176> /Applications/Safari.app/Contents/MacOS/Safari
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <DB8B8AB0-0C97-B51C-BE8B-B79895735A33> /usr/lib/dyld
        0x7fff8005d000 -     0x7fff8009efef  com.apple.CoreMedia 0.484.52 (484.52) <3F868AF8-1089-10C3-DCEB-565690FD9742> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8009f000 -     0x7fff8011bff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff801e8000 -     0x7fff801f3fff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff802b2000 -     0x7fff802b4fff  com.apple.print.framework.Print 6.1 (237.1) <87A5BEEC-2D37-5CB7-8B13-7B605397573F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff802b5000 -     0x7fff80326ff7  com.apple.AppleVAFramework 4.10.26 (4.10.26) <28C1B366-DF2B-111B-1863-0713B105D930> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff80327000 -     0x7fff80368fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff80369000 -     0x7fff8037eff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <59D9E83D-3131-91F4-E3E2-02047F55917F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8037f000 -     0x7fff80396fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff80397000 -     0x7fff803b8fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9B7AEE96-D18E-5ECF-9837-BD5CFD397831> /usr/lib/libresolv.9.dylib
        0x7fff803c0000 -     0x7fff80649ff7  com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff806a4000 -     0x7fff80721fef  com.apple.backup.framework 1.2.2 (1.2.2) <BB72F0C7-20E2-76DC-6764-5B93A7AC0EB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff80722000 -     0x7fff80771ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <066A477D-C16C-A6FD-718F-0CE8D39807DE> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff80772000 -     0x7fff80773ff7  com.apple.TrustEvaluationAgent 1.1 (1) <A91CE5B9-3C63-5F8C-5052-95CCAB866F72> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff80774000 -     0x7fff8077ffff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff80780000 -     0x7fff80854fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff80855000 -     0x7fff808daff7  com.apple.print.framework.PrintCore 6.3 (312.7) <F00C561F-D38B-8785-5218-1A0C3BA61177> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff808db000 -     0x7fff80947fe7  com.apple.CorePDF 1.4 (1.4) <06AE6D85-64C7-F9CC-D001-BD8BAE31B6D2> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff80948000 -     0x7fff80993fef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff80a22000 -     0x7fff80abcfe7  com.apple.ApplicationServices.ATS 275.16 (???) <4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff80ac3000 -     0x7fff80adeff7  com.apple.openscripting 1.3.1 (???) <DC329CD4-1159-A40A-A769-70CAA70F601A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff80adf000 -     0x7fff80b41fe7  com.apple.datadetectorscore 2.0 (80.7) <A73D45FA-8957-6616-3776-593BE2927455> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff80b42000 -     0x7fff80c4cff7  com.apple.MeshKitIO 1.1 (49.2) <D7227401-9DC9-C2CB-C83B-C2B10C61D4E4> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff80c4d000 -     0x7fff80c58ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <C359B93B-CC9B-FC0B-959E-FB10674103A7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff80c59000 -     0x7fff80c59ff7  com.apple.CoreServices 44 (44) <616722B1-5E79-DCCF-BF5E-0DD5802CCBD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff80c5a000 -     0x7fff80ca3fef  libGLU.dylib ??? (???) <1C050088-4AB2-2BC2-62E6-C969F925A945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff80ca4000 -     0x7fff80d65fef  com.apple.ColorSync 4.6.6 (4.6.6) <BB2C5813-C61D-3CBA-A8F7-0E59E46EBEE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff80d66000 -     0x7fff80e4bfef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff80e4c000 -     0x7fff80e62fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff80e88000 -     0x7fff80e94fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <A21B7E3A-1EDD-7684-ACC1-72587034A020> /usr/lib/libbz2.1.0.dylib
        0x7fff80e95000 -     0x7fff80ea6fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <CF1D9C05-8D77-0FFE-38E8-63D8A23E92E1> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff80ecf000 -     0x7fff80ed1fff  libRadiance.dylib ??? (???) <76C1B129-6F25-E43C-1498-B1B88B37163B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff80ed2000 -     0x7fff80efdff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff80f48000 -     0x7fff80fe8fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff80fe9000 -     0x7fff80ffdff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <574C1BE0-5E5E-CCAF-06F8-92A69CB2892D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff80ffe000 -     0x7fff8103ffef  com.apple.QD 3.36 (???) <04F03722-91CA-6858-55A4-54D7F29789A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff81040000 -     0x7fff81067ff7  libJPEG.dylib ??? (???) <B9AA5816-8CCB-AFCB-61FD-3820C6E8219D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff81068000 -     0x7fff8117ffef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <EF023D83-F9E9-834E-64C1-B2E26151F63B> /usr/lib/libxml2.2.dylib
        0x7fff81180000 -     0x7fff81191fff  SyndicationUI ??? (???) <53514778-2D8E-0638-6A5A-776F31681E51> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff81192000 -     0x7fff811fafff  com.apple.MeshKitRuntime 1.1 (49.2) <A490FE03-313D-1317-A9B8-25EF75CB1A81> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff811fb000 -     0x7fff81214fff  com.apple.CFOpenDirectory 10.6 (10.6) <11FAE9D5-6BD2-D302-96B0-2E135049CAA7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff81215000 -     0x7fff81215ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff81293000 -     0x7fff812c9ff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff812ca000 -     0x7fff812cbfff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <EC039008-5367-090D-51FD-EA4D2623671A> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff812cc000 -     0x7fff81535fff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff81536000 -     0x7fff8153cff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <FD5CF2E6-E5FF-1E2A-37E0-304722DA15E1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8153d000 -     0x7fff81584ff7  com.apple.coreui 2 (114) <31118426-355F-206A-65AB-CCA2D2D3EBD7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff81585000 -     0x7fff815c2ff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff815c3000 -     0x7fff81645fff  com.apple.QuickLookUIFramework 2.3 (327.6) <8BAA8E90-D3EB-A783-B3CF-501BBF793892> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff81687000 -     0x7fff81694fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff81695000 -     0x7fff816c8ff7  libTrueTypeScaler.dylib ??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff816c9000 -     0x7fff81758fff  com.apple.PDFKit 2.5.1 (2.5.1) <C0E3AE4B-E71A-16D8-0D51-FB7D3E3AD793> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff81759000 -     0x7fff81c5fff7  com.apple.VideoToolbox 0.484.52 (484.52) <FA1B8197-8F5F-73CB-A9A1-49E0FB49CF51> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff81c60000 -     0x7fff8235cff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8235d000 -     0x7fff8235dff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8235e000 -     0x7fff8251cfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff8251d000 -     0x7fff8251eff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <53299948-2554-0F8F-7501-04B34E49F6CF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8251f000 -     0x7fff8256efef  libTIFF.dylib ??? (???) <5DE9F066-9B64-CBE4-976A-CC7B8DD3C31A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8256f000 -     0x7fff82572ff7  com.apple.securityhi 4.0 (36638) <4497AC9D-4AD5-5155-B8B8-D47E694613A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff82770000 -     0x7fff82770ff7  com.apple.ApplicationServices 38 (38) <0E2FC75E-2BE2-D04D-CA78-76E38A89DD30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff82771000 -     0x7fff82777ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff829c2000 -     0x7fff829c2ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff829c3000 -     0x7fff829c6fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff82aa0000 -     0x7fff82addfff  com.apple.LDAPFramework 2.0 (120.1) <E5FA9339-4812-E8FE-C366-EE3DC975DBC6> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff82b36000 -     0x7fff82b45fff  com.apple.NetFS 3.2.2 (3.2.2) <84419796-36C9-DDCF-5FD1-0C96499EB63E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff82b46000 -     0x7fff82b83ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff82bd4000 -     0x7fff82ceefef  libGLProgrammability.dylib ??? (???) <8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff82cef000 -     0x7fff82d17fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <6B8C5FB6-FE6F-3345-0441-BED51E815379> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff82d18000 -     0x7fff82d26ff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff82d27000 -     0x7fff82e9efe7  com.apple.CoreFoundation 6.6.5 (550.43) <31A1C118-AD96-0A11-8BDF-BD55B9940EDC> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff82f66000 -     0x7fff82f8bff7  com.apple.CoreVideo 1.6.2 (45.6) <31802A1C-81BC-33F8-D5C8-39A793D4D926> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83072000 -     0x7fff83260fef  com.apple.JavaScriptCore 6533.19 (6533.19.1) <493CE301-005E-94B3-9306-922DA36357FF> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff83277000 -     0x7fff83ef2fef  com.apple.WebCore 6533.21 (6533.21.1) <15CE3700-C6DC-7F94-5394-4CF78040A40D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff83ef3000 -     0x7fff83f24fff  libGLImage.dylib ??? (???) <7F102A07-E4FB-9F52-B2F6-4E2D2383CA13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83f55000 -     0x7fff8418ffef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff84190000 -     0x7fff84194ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8419a000 -     0x7fff84250ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff8437f000 -     0x7fff84383ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff84384000 -     0x7fff84439fe7  com.apple.ink.framework 1.3.3 (107) <A68339AA-909D-E46C-35C0-72808EE3D043> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff84456000 -     0x7fff844b6fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff846b6000 -     0x7fff84826fff  com.apple.QTKit 7.7 (1783) <DE8DB97C-C058-B40C-492B-D652A30CF571> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff84827000 -     0x7fff85031fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff85032000 -     0x7fff85075ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff850a0000 -     0x7fff854e7fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff854e8000 -     0x7fff8581cfef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8581d000 -     0x7fff85823ff7  IOSurface ??? (???) <27E523B3-6BE6-7D7D-5002-2A0E7ED2DB3D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff85824000 -     0x7fff8586bfff  com.apple.QuickLookFramework 2.3 (327.6) <115BCFBD-8BC8-9E9D-BE04-2EC05EF78CC0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8586c000 -     0x7fff859a1fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <E5D7DBDB-6DDF-E6F9-C71C-86F4520EE5A3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff859a2000 -     0x7fff85a7fff7  com.apple.vImage 4.1 (4.1) <A0DE28F5-7B45-D268-0497-C79A826C8E53> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff85ab8000 -     0x7fff85e55fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff85f23000 -     0x7fff85f66fef  libtidy.A.dylib ??? (???) <C32D1061-EF58-9DE1-6D6E-1286E58B83EB> /usr/lib/libtidy.A.dylib
        0x7fff866fc000 -     0x7fff86746ff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff86ae0000 -     0x7fff86ba1fff  libFontParser.dylib ??? (???) <A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff86bdf000 -     0x7fff86c27ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff86c28000 -     0x7fff86ca7fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff86cd9000 -     0x7fff86d25fff  libauto.dylib ??? (???) <328CCF97-091D-C529-E576-C78583445711> /usr/lib/libauto.dylib
        0x7fff86d26000 -     0x7fff86d2dfff  com.apple.OpenDirectory 10.6 (10.6) <13CECF72-D84B-2A88-CB0C-2092FDF0DB5D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff86d2e000 -     0x7fff86d40fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <30FE378B-99FE-8C7C-06D0-A3AA0A0A70D4> /usr/lib/libsasl2.2.dylib
        0x7fff86d41000 -     0x7fff87184fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff871a0000 -     0x7fff871b4fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff871b5000 -     0x7fff87241fef  SecurityFoundation ??? (???) <92FAC546-34A0-E65F-05DE-8883D7FECBA4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff87242000 -     0x7fff87251fef  com.apple.opengl 1.6.13 (1.6.13) <516098B3-4517-8A55-64BB-195CDAA5334D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff87252000 -     0x7fff87272ff7  com.apple.DirectoryService.Framework 3.6 (621.11) <36051318-BDA1-E5D6-9751-055A10170980> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff87273000 -     0x7fff87392fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff87393000 -     0x7fff873e6ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff873e7000 -     0x7fff8740afff  com.apple.opencl 12.3.6 (12.3.6) <534AD81C-32AB-4C9A-5E0E-D6C6E77FA946> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8740b000 -     0x7fff87488fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff875fb000 -     0x7fff87618ff7  libPng.dylib ??? (???) <4815A8F2-24A0-E783-8A5A-7B4959F562D7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8768b000 -     0x7fff87809ff7  com.apple.WebKit 6533.21 (6533.21.1) <C89E93DE-3BFD-2E7A-2A49-356885FA1CDE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8780a000 -     0x7fff87932ff7  com.apple.MediaToolbox 0.484.52 (484.52) <F03DAC32-79DB-EA5A-9B8D-CB288AF91A56> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff87933000 -     0x7fff87a71fff  com.apple.CoreData 102.1 (251) <96C5E9A6-C28C-E9CC-A0DB-27801A22A49F> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff87a72000 -     0x7fff87b02fff  com.apple.SearchKit 1.3.0 (1.3.0) <45BA1053-9196-3C2F-2421-AFF5E09627CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff87b03000 -     0x7fff87b19fef  libbsm.0.dylib ??? (???) <0321D32C-9FE1-3919-E03E-2530A0C1191B> /usr/lib/libbsm.0.dylib
        0x7fff87b5c000 -     0x7fff87b5cff7  com.apple.Carbon 150 (152) <F31CA1DA-A54B-FEDC-2101-5E902A36DA6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff87b5d000 -     0x7fff88557ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff88558000 -     0x7fff88716ff7  com.apple.ImageIO.framework 3.0.4 (3.0.4) <6212CA66-7B18-2AED-6AA8-45185F5D9A03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff88717000 -     0x7fff8871aff7  libCoreVMClient.dylib ??? (???) <E03D7C81-A3DA-D44A-A88A-DDBB98AF910B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8875f000 -     0x7fff88770ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <5BAFAE5C-2307-C27B-464D-582A10A6990B> /usr/lib/libz.1.dylib
        0x7fff88771000 -     0x7fff887baff7  com.apple.securityinterface 4.0.1 (40418) <1C1BD8E9-F128-CE8C-0C20-F29882B8AC32> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff887bb000 -     0x7fff88800fff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff88801000 -     0x7fff8883aff7  com.apple.MeshKit 1.1 (49.2) <B85DDDC7-4053-4DB8-E1B5-AA0CBD4CDD1C> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff8883b000 -     0x7fff8883cfff  liblangid.dylib ??? (???) <D0666597-B331-C43C-67BB-F2E754079A7A> /usr/lib/liblangid.dylib
        0x7fff8883d000 -     0x7fff88842fff  libGFXShared.dylib ??? (???) <1D0D3531-9561-632C-D620-1A8652BEF5BC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff88843000 -     0x7fff88848fff  libGIF.dylib ??? (???) <95443F88-7D4C-1DEE-A323-A70F7A1B4B0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88849000 -     0x7fff88a8bfe7  com.apple.AddressBook.framework 5.0.4 (883) <2192ED27-0C79-748F-E590-E1D08845A0D5> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff88a8c000 -     0x7fff88b45fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <E8FFCEA1-3BE3-F0C9-07EA-C37678C4D2F5> /usr/lib/libsqlite3.dylib
        0x7fff88b46000 -     0x7fff88d07fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff88d08000 -     0x7fff88d72fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <7BD7F19B-ACD4-186C-B42D-4DEBA6795628> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff88d73000 -     0x7fff88e30fff  com.apple.CoreServices.OSServices 359 (359) <E8336204-1ACB-D433-D569-2CAA22A88F65> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff88e33000 -     0x7fff88e42fff  libxar.1.dylib ??? (???) <D599B824-2CD1-879B-8468-CF0C85EF3BA5> /usr/lib/libxar.1.dylib
        0x7fff88e4b000 -     0x7fff88e86fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff88e9b000 -     0x7fff88e9bff7  com.apple.quartzframework 1.5 (1.5) <FA660AAC-70CD-7EA2-5DF1-A8724D8F4B1B> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff88e9c000 -     0x7fff88ea1ff7  com.apple.CommonPanels 1.2.4 (91) <8B088D78-E508-6622-E477-E34C22CF2F67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff88ea2000 -     0x7fff88edcfff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
        0x7fff88edd000 -     0x7fff8915ffe7  com.apple.Foundation 6.6.7 (751.62) <6F2A5BBF-6990-D561-2928-AD61E94036D9> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff89160000 -     0x7fff89160ff7  com.apple.Cocoa 6.6 (???) <C69E895A-1C66-3DA9-5F63-8BE85DB9C4E1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff89161000 -     0x7fff891dfff7  com.apple.CoreText 151.10 (???) <54961997-55D8-DC0F-2634-674E452D5A8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff892d9000 -     0x7fff8932eff7  com.apple.framework.familycontrols 2.0.2 (2020) <1E8D193F-3236-59AB-2242-14AD94128E81> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8932f000 -     0x7fff8962dfff  com.apple.HIToolbox 1.6.5 (???) <98FCEA0D-FA33-E859-B39C-2C1F59F9E22D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8962e000 -     0x7fff89638fff  com.apple.DisplayServicesFW 2.3.3 (289) <97F62F36-964A-3E17-2A26-A0EEF63F4BDE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff89639000 -     0x7fff896e9fff  edu.mit.Kerberos 6.5.11 (6.5.11) <CDA011E3-18C9-1573-3A31-497404CD6675> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff89729000 -     0x7fff89758fff  com.apple.quartzfilters 1.6.0 (1.6.0) <52D41730-D485-A7AE-4937-FE37FC732F65> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff89759000 -     0x7fff8985dfff  com.apple.PubSub 1.0.5 (65.20) <8517E609-C5B9-F2C7-8FE1-8A79B28F070D> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff89867000 -     0x7fff8986dfff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: MacBookPro8,1, BootROM MBP81.0047.B04, 2 processors, Intel Core i5, 2.3 GHz, 4 GB, SMC 1.68f96
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: HUAWEIMobile-Modem, PPP (PPPSerial), ppp0
    Serial ATA Device: Hitachi HTS545032B9A302, 298.09 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: HUAWEI Mobile, 0x12d1  (Huawei Technologies Co., Ltd.), 0x1001, 0xfa130000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0245, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 7
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

      Version:         5.0.3 (6533.21.1)
    You are running an outdated version of Safari.
    Click your Apple menu / Software Update...
    If the combo didn't reinstall Safari, use Pacifist to extract the Safari app.

  • I have adobe acrobat 11 reader writer I want to use the pointer symbol on full screen instead of the hand, iwas able to do it on adobe 10 also when in full screen i can't open attachments unless i right click and open it then it boots me out of full scree

    I have adobe acrobat 11 reader writer I want to use the pointer symbol on full screen instead of the hand, iwas able to do it on adobe 10 also when in full screen i can't open attachments unless i right click and open it then it boots me out of full screen is there any way i can click on the attacment without going out of full screen

    I don't know why the change, but the pointer appears in the same way as it does on the main screen, not a pointer. There does not appear to be anyway to change it. You may want to submit a comment to the Features Requests: Acrobat Feature Requests. I also submitted this as a bug.
    As a clarification, your "adobe acrobat 11 reader writer" is not informative. There is Acrobat 11 and Reader 11. Writer is not a product as such. So you have referred to Acrobat in a contradictory manner. In the future, please just indicate Acrobat 11 or Adobe Acrobat 11.

  • Why does closed documents always open up again when I use the program

    Why is it that recently opened documents always opens up whenever I reopen the program to access other files?  The previous opened file will always reopen again automatically whenever I access the program to open other files.  This has happened after I upgraged to 10.7 and, so far, occurs in Preview and Pages.  I've not used other applications so I don't know if it happens with those as well, i.e., Numbers, etc.  Any help with debugging this would be appreciated.

    Mate - it's not a bug... it's a feature called Resume.
    In essence, if you don't close a window before you quit the program, you will get that window back again when you next open the program.
    You can change this behaviour in System Preferences. Click on General and untick "Restore windows when quitting and re-opening apps".

Maybe you are looking for

  • Apex 4.1 different font text in Reports Region and Interactive reporting

    Hi everybody, In my APEX 4.1 page, I have two regions using the same ''Reports region" Template but font text are different. Why The first region is an interactive reporting. The second it's a report. I know that each one has his own data for sure bu

  • A problem to have a secure link to itunes store

    hi guys i have a problem with my iphone 3gs i just unlocked my thru at&t but in order to complete the process i have to restore my phone i did resore it like few times and just keep stucking at the activation point and everytime i connect it to the i

  • Accidentally deleted mail app: How do I get it back?

    Today I somehow managed to delete my mail app -- it's totally gone. I can't find a way to get it back. Anyone know how I can reinstall it? I tried a fresh reinstall but it seems to remember my last setting with it gone. I have an iPhone 4.

  • Mq3_6-plt-win.zip seems to be corrupt

    Hi, I am trying to install the latest Sun Java System Message Queue 3 2005Q1 Platform Edition on Windows XP. The installation crashes with complaining about a missing JaxRPC.cab. A brief check confirms it does not exist in the zip file. Any help? Tha

  • How to use the ph:placeholder tag propery  (wlportal 4) ?

    hi, I created a placeholder with the help of ebcc. Next I loaded data into cloudscape database. This data is a pure html file. It contains Meta Tags like productCategory for example. My placeholder queries for this meta tag. But eveytime it gets the