How can I find a segment name from p1 and p2 value of v$session??

Hi, all.
A session is waiting with "gc cr request".
The pvalue of the session are as followings.
p1text p1 p2text p2 p3text p3
file# 15 block# 412 id# 33619969
I issued the following sql statement to find the segment name.
select segment_name
from dba_extents
where file_id = 15
and 412 between block_id and (block_id + blocks -1)
However, No row returned.
Is there any mistake??
Thanks and Regards.

Hi,
You will find what the wait means in the Oracle Reference manual.
http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/toc.htm
To find out what object P1 refers to:
select * from v$datafile where file# = file#;
To find the hot block within that object above do:
select name, kind from ext_to_obj_view
where file# = file#
and lowB <= block#
and highB >= block#;
to create a report an example change your variable to what you need
select
sess.username,
sess.sid,
se.event,
se.total_waits,
se.total_timeouts,
se.time_waited/100 time_waited,
se.average_wait
from v$session_event se, v$session sess
where event like '%buffer busy% <===== change to your choosing
and sess.sid = se.sid
and sess.username is not null
and se.total_waits > 10000
order by username, sid
hope this helps.
al

Similar Messages

  • How can you find out if another VI running on the same computer and how can you find out the name of that VI?

    Suppose that several VIs running simultaneously on the same computer. How can I find out the names of the running VIs, from another VI?
    If the already running VIs are clones of the same basic VI, open and run with the option "Prepare to call and forget", how can I find out the names and index of each clone? 

    I had an application where I spawned (= ran with Start Asynchronous Call) multiple (reentrant) copies of VIs, and would occasionally "lose control" of them.  I needed a way to find all VIs that were running "Top Level" and stop them (so I didn't have to log off from Windows).
    I used the Application Property "All VIs in Memory" to get an array of (wait for it ...) All VIs in Memory.  I took each name, opened a VI reference to it (simply wire the name string in, as the VI is, by definition, "in memory"), looked at its VI Execution State, and if it was Run Top Level, Invoked the FP.Close and Abort VI Methods.  [To prevent the VI that did all this from "committing Suicide", I compared the name string with the current Call Chain, and did nothing if there was a match].
    I think you could adopt this idea to do what you need.
    BS

  • How can I find my user name password as I only remember the administrator password for the MacBook?

    How can I find my user name password as I only remember my administrator password?I don't want to lose things or content.

    If you have only one account, then your admin password is your user password. If you use another account that is not an admin account, then log into your admin account from which you can change the password on your user account.
    Forgot Your Account Password
    For Snow Leopard and earlier with installer DVD
         Mac OS X 10.6- If you forget your administrator password,
         OS X- Changing or resetting an account password (Snow Leopard and earlier).
    For Snow Leopard and earlier without installer DVD
        How to reset your Mac OS X password without an installer disc | MacYourself
        Reset OS X Password Without an OS X CD — Tech News and Analysis
        How To Create A New Administrator Account - Hack Mac

  • How can I assign image file name from Main() class

    I am trying to create library class which will be accessed and used by different applications (with different image files to be assigned). So, what image file to call should be determined by and in the Main class.
    Here is the Main class
    import org.me.lib.MyJNIWindowClass;
    public class Main {
    public Main() {
    public static void main(String[] args) {
    MyJNIWindowClass mw = new MyJNIWindowClass();
    mw.s = "clock.gif";
    And here is the library class
    package org.me.lib;
    public class MyJNIWindowClass {
    public String s;
    ImageIcon image = new ImageIcon("C:/Documents and Settings/Administrator/Desktop/" + s);
    public MyJNIWindowClass() {
    JLabel jl = new JLabel(image);
    JFrame jf = new JFrame();
    jf.add(jl);
    jf.setVisible(true);
    jf.pack();
    I do understand that when I am making reference from main() method to MyJNIWindowClass() s first initialized to null and that is why clock could not be seen but how can I assign image file name from Main() class for library class without creating reference to Main() from MyJNIWindowClass()? As I said, I want this library class being accessed from different applications (means different Main() classes).
    Thank you.

    Your problem is one of timing. Consider this simple example.
    public class Example {
        public String s;
        private String message = "Hello, " + s;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example();
            ex.s = "world";
            System.out.println(ex.toString());
    }When this code is executed, the following happens in order:
    1. new Example() is executed, causing an object to constructed. In particular:
    2. field s is given value null (since no value is explicitly assigned.
    3. field message is given value "Hello, null"
    4. Back in method main, field s is now given value "world", but that
    doesn't change message.
    5. Finally, "Hello, null" is output.
    The following fixes the above example:
    public class Example {
        private String message;
        public Example(String name) {
            message = "Hello, " + name;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example("world");
            System.out.println(ex.toString());
    }

  • How can I transfer two user names from an iMac to a new macbook?

    How can I transfer two user names from an iMac to a new macbook?
    got a new laptop and need to transfer two usernames to it, complete with all documents help?

    Assuming you haven't already set up a user, the easiest way is to use the Setup Assistant during first boot of the new Mac, with the two Macs connected by firewire.
    You'll be prompted to migrate from a choice of sources - choose "from another Mac", select the catagories of data you want to transfer and follow the instructions.
    More info here, in Pondini's FAQ; http://pondini.org/OSX/SetupAsst.html

  • How-can-i-remove-my-skype-name-from-the-sign-in-sc...

    Guys this is absolute rubbish feature of the login application where people's login names get recorded in the dropdown menu. Is there any more permanent way of getting rid of this annoying privacy intrusive "feature"? I would like to have a profile with a username that is not going to appear at airports and my grandma's laptop after I log out of skype and no I do not want to go digging for app files to remove my entire history on each and every machine I use as suggested by your help files. Could you please advise if I'm missing something here?
    https://support.skype.com/en-gb/faq/FA11070/how-can-i-remove-my-skype-name-from-the-sign-in-screen-i...

    Unfortunately, the option to remove that feature is not available.  
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • How can i find my adminstrator-name and password?

    I remember my adminstrator-name and password, but when i write it, it won't let me in and change something. - I know my password 100%, but how can i find my adminstrator-name? PLEASE HELP ME!!!!
    I always have been in it all. I knew my password. I still know. It did not ask me about my adminstrator-name before, but now it does. How can i find my adminstator name?
    - I know i can reset it all with mac CD, but i don't want to delete all stuff in my mac. What shall i do?

    Hold command and s keys when booting the machine
    A long line of white type on a black screen appears, when it stops type
    ls /Users
    and press enter
    that's l as in Larry, s as in snake, space, slash Users
    a list of users will appear
    when done type exit and press enter

  • How can I find my IMEI number from icloud

    I have lost my iPhone and as I do not have a PC or Laptop I haven't backed it up to itunes. I have however, got an icloud account that it is backed up to. How can I find the IMEI number from icloud?

    See: http://support.apple.com/kb/HT4061
    and: http://support.apple.com/kb/HT4946

  • How can i fetch the city name from database according the state name

    If you have any example of Dyamic List box.
    How can i fetch the city name from database according the state name when i select the state name in a dynamic list box.
    Thanks

    When i run the this code it is giving the an exception
    org.apache.jasper.JasperException: javax.servlet.ServletException: javax.servlet.jsp.JspException: javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Can't instantiate class: 'com.mypackage.MyBean'.. class com.mypackage.MyBean : java.lang.NullPointerException
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:541)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:417)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
         org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
         org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandler.java:233)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:127)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:277)
    root cause
    javax.servlet.ServletException: javax.servlet.jsp.JspException: javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Can't instantiate class: 'com.mypackage.MyBean'.. class com.mypackage.MyBean : java.lang.NullPointerException
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:846)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779)
         org.apache.jsp.test_jsp._jspService(test_jsp.java:95)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
         org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
         org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandler.java:233)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:127)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:277)
    root cause
    javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Can't instantiate class: 'com.mypackage.MyBean'.. class com.mypackage.MyBean : java.lang.NullPointerException
         com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:190)
         com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:143)
         com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:406)
         javax.faces.webapp.UIComponentTag.createComponent(UIComponentTag.java:1019)
         javax.faces.webapp.UIComponentTag.createChild(UIComponentTag.java:1046)
         javax.faces.webapp.UIComponentTag.findComponent(UIComponentTag.java:761)
         javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:451)
         com.sun.faces.taglib.html_basic.SelectOneMenuTag.doStartTag(SelectOneMenuTag.java:487)
         org.apache.jsp.test_jsp._jspx_meth_h_005fselectOneMenu_005f0(test_jsp.java:259)
         org.apache.jsp.test_jsp._jspx_meth_h_005fpanelGroup_005f0(test_jsp.java:219)
         org.apache.jsp.test_jsp._jspx_meth_h_005fpanelGrid_005f0(test_jsp.java:189)
         org.apache.jsp.test_jsp._jspx_meth_h_005fform_005f0(test_jsp.java:160)
         org.apache.jsp.test_jsp._jspx_meth_f_005fview_005f0(test_jsp.java:127)
         org.apache.jsp.test_jsp._jspService(test_jsp.java:86)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
         org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
         org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandler.java:233)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:127)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:277)
    root cause
    javax.faces.FacesException: javax.faces.FacesException: Can't instantiate class: 'com.mypackage.MyBean'.. class com.mypackage.MyBean : java.lang.NullPointerException
         com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:292)
         com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:97)
         com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:145)
         com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:166)
         com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:263)
         com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:160)
         com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:143)
         com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:406)
         javax.faces.webapp.UIComponentTag.createComponent(UIComponentTag.java:1019)
         javax.faces.webapp.UIComponentTag.createChild(UIComponentTag.java:1046)
         javax.faces.webapp.UIComponentTag.findComponent(UIComponentTag.java:761)
         javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:451)
         com.sun.faces.taglib.html_basic.SelectOneMenuTag.doStartTag(SelectOneMenuTag.java:487)
         org.apache.jsp.test_jsp._jspx_meth_h_005fselectOneMenu_005f0(test_jsp.java:259)
         org.apache.jsp.test_jsp._jspx_meth_h_005fpanelGroup_005f0(test_jsp.java:219)
         org.apache.jsp.test_jsp._jspx_meth_h_005fpanelGrid_005f0(test_jsp.java:189)
         org.apache.jsp.test_jsp._jspx_meth_h_005fform_005f0(test_jsp.java:160)
         org.apache.jsp.test_jsp._jspx_meth_f_005fview_005f0(test_jsp.java:127)
         org.apache.jsp.test_jsp._jspService(test_jsp.java:86)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
         org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
         org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandler.java:233)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:127)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:277)
    root cause
    javax.faces.FacesException: Can't instantiate class: 'com.mypackage.MyBean'.. class com.mypackage.MyBean : java.lang.NullPointerException
         com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:229)
         com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:282)
         com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:97)
         com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:145)
         com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:166)
         com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:263)
         com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:160)
         com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:143)
         com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:406)
         javax.faces.webapp.UIComponentTag.createComponent(UIComponentTag.java:1019)
         javax.faces.webapp.UIComponentTag.createChild(UIComponentTag.java:1046)
         javax.faces.webapp.UIComponentTag.findComponent(UIComponentTag.java:761)
         javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:451)
         com.sun.faces.taglib.html_basic.SelectOneMenuTag.doStartTag(SelectOneMenuTag.java:487)
         org.apache.jsp.test_jsp._jspx_meth_h_005fselectOneMenu_005f0(test_jsp.java:259)
         org.apache.jsp.test_jsp._jspx_meth_h_005fpanelGroup_005f0(test_jsp.java:219)
         org.apache.jsp.test_jsp._jspx_meth_h_005fpanelGrid_005f0(test_jsp.java:189)
         org.apache.jsp.test_jsp._jspx_meth_h_005fform_005f0(test_jsp.java:160)
         org.apache.jsp.test_jsp._jspx_meth_f_005fview_005f0(test_jsp.java:127)
         org.apache.jsp.test_jsp._jspService(test_jsp.java:86)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
         org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
         org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandler.java:233)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:127)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:277)
    root cause
    java.lang.ClassNotFoundException: class com.mypackage.MyBean : java.lang.NullPointerException
         java.beans.Beans.instantiate(Unknown Source)
         java.beans.Beans.instantiate(Unknown Source)
         com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:223)
         com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:282)
         com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:97)
         com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:145)
         com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:166)
         com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:263)
         com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:160)
         com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:143)
         com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:406)
         javax.faces.webapp.UIComponentTag.createComponent(UIComponentTag.java:1019)
         javax.faces.webapp.UIComponentTag.createChild(UIComponentTag.java:1046)
         javax.faces.webapp.UIComponentTag.findComponent(UIComponentTag.java:761)
         javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:451)
         com.sun.faces.taglib.html_basic.SelectOneMenuTag.doStartTag(SelectOneMenuTag.java:487)
         org.apache.jsp.test_jsp._jspx_meth_h_005fselectOneMenu_005f0(test_jsp.java:259)
         org.apache.jsp.test_jsp._jspx_meth_h_005fpanelGroup_005f0(test_jsp.java:219)
         org.apache.jsp.test_jsp._jspx_meth_h_005fpanelGrid_005f0(test_jsp.java:189)
         org.apache.jsp.test_jsp._jspx_meth_h_005fform_005f0(test_jsp.java:160)
         org.apache.jsp.test_jsp._jspx_meth_f_005fview_005f0(test_jsp.java:127)
         org.apache.jsp.test_jsp._jspService(test_jsp.java:86)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
         org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
         org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandler.java:233)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:127)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:277)
    root cause
    java.lang.NullPointerException
         javax.faces.model.SelectItem.setValue(SelectItem.java:254)
         javax.faces.model.SelectItem.<init>(SelectItem.java:138)
         javax.faces.model.SelectItem.<init>(SelectItem.java:96)
         com.mypackage.MyBean.fillCountryItems(MyBean.java:80)
         com.mypackage.MyBean.<init>(MyBean.java:28)
         sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         java.lang.reflect.Constructor.newInstance(Unknown Source)
         java.lang.Class.newInstance0(Unknown Source)
         java.lang.Class.newInstance(Unknown Source)
         java.beans.Beans.instantiate(Unknown Source)
         java.beans.Beans.instantiate(Unknown Source)
         com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:223)
         com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:282)
         com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:97)
         com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:145)
         com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:166)
         com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:263)
         com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:160)
         com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:143)
         com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:406)
         javax.faces.webapp.UIComponentTag.createComponent(UIComponentTag.java:1019)
         javax.faces.webapp.UIComponentTag.createChild(UIComponentTag.java:1046)
         javax.faces.webapp.UIComponentTag.findComponent(UIComponentTag.java:761)
         javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:451)
         com.sun.faces.taglib.html_basic.SelectOneMenuTag.doStartTag(SelectOneMenuTag.java:487)
         org.apache.jsp.test_jsp._jspx_meth_h_005fselectOneMenu_005f0(test_jsp.java:259)
         org.apache.jsp.test_jsp._jspx_meth_h_005fpanelGroup_005f0(test_jsp.java:219)
         org.apache.jsp.test_jsp._jspx_meth_h_005fpanelGrid_005f0(test_jsp.java:189)
         org.apache.jsp.test_jsp._jspx_meth_h_005fform_005f0(test_jsp.java:160)
         org.apache.jsp.test_jsp._jspx_meth_f_005fview_005f0(test_jsp.java:127)
         org.apache.jsp.test_jsp._jspService(test_jsp.java:86)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
         org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
         org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandler.java:233)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:127)
         org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.java:277)

  • How can I find the dns names ?

    those what are made in the control panel...

    how can I find the dns names ?That is OS specific thus you must either use Runtime.exec() or use JNI to get to the names.
    If you search this forum you will find more specific suggestions on how to get them.

  • My macbook pro keeps freezing when I am on the internet. How can I find out what the issue is and fix it?

    my macbook pro keeps freezing when I am on the internet. How can I find out what the issue is and fix it?

    Here is mine, sorry if i included anything i wasnt supposed to!
    7/18/13 1:04:13.797 PM ReportCrash[340]: failed looking up LS service ( scCreateSystemService returned MACH_PORT_NULL, called from SetupCoreApplicationServicesCommunicationPort, so using client-side NULL calls.
    7/18/13 1:04:13.797 PM ReportCrash[340]: LaunchServices/5123589: Unable to lookup coreservices session port for session 0x186a0 uid=0 euid=0
    7/18/13 1:04:14.491 PM ReportCrash[340]: Saved crash report for PluginProcess[316] version 8536 (8536.30.1) to /Library/Logs/DiagnosticReports/PluginProcess_2013-07-18-130414_(REMOVED MY NAME).crash
    7/18/13 1:05:08.000 PM bootlog[0]: BOOT_TIME 1374170708 0
    Process:         PluginProcess [316]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcess
    Identifier:      PluginProcess
    Version:         8536 (8536.30.1)
    Code Type:       X86-64 (Native)
    Parent Process:  Safari [300]
    User ID:         501
    Date/Time:       2013-07-18 13:04:09.864 -0500
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 000000010e2de000-000000010e2df000 [    4K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcess
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff890f0d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff86251dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff862519ee _dispatch_mgr_thread + 54
    Thread 2:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 3:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 4:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 5:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 6:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 7:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 8:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 9:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 11:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 12:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 13:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 14:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 15:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff890ee686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff890edc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff86af5233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff86afa916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff86afa0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff90afe7ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.AppKit                        0x00007fff8be7c306 -[NSAnimation(NSInternal) _runBlocking] + 377
    7   com.apple.AppKit                        0x00007fff8be7c168 -[NSAnimation(NSInternal) _animationThread] + 65
    8   libdispatch.dylib                       0x00007fff86252f01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                       0x00007fff8624f0b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff862501fa _dispatch_worker_thread2 + 304
    11  libsystem_c.dylib                       0x00007fff851b6d0b _pthread_wqthread + 404
    12  libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 16:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff890ee602 _kernelrpc_mach_port_destroy_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff890ef464 mach_port_destroy + 22
    2   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e53b24 GhalInterface::deallocateHeap(void**) + 164
    3   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e53a68 GHAL3D::CPrivateResource::~CPrivateResource() + 56
    4   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e53a08 GHAL3D::CIndirectStateHeap::~CIndirectStateHeap() + 24
    5   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6d2ad GHAL3D::CIndirectStateHeap::Delete(GHAL3D::CIndirectStateHeap*&) + 29
    6   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6cf8c GHAL3D::CIndirectStateMemoryManager::~CIndirectStateMemoryManager() + 652
    7   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113f6fbc8 GHAL3D::CGen6IndirectStateMemoryManager::~CGen6IndirectStateMemoryManager() + 24
    8   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6ccad GHAL3D::CIndirectStateMemoryManager::Delete(GHAL3D::CIndirectStateMemoryManager *&) + 29
    9   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6cc6c GHAL3D::CStateProcessorCache::~CStateProcessorCache() + 28
    10  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113fe0c6e GHAL3D::CGen6StateProcessorCache::~CGen6StateProcessorCache() + 14
    11  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113fe0e4d GHAL3D::CGen6StateProcessorCache::Delete(GHAL3D::CGen6StateProcessorCache*&) + 29
    12  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113f5799b GHAL3D::CGen6PrivateStateProcessor::Finalize() + 139
    13  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6c3ba GHAL3D::CPrivateStateProcessor::Delete(GHAL3D::CPrivateStateProcessor*&) + 26
    14  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6bb97 GHAL3D::CContext::~CContext() + 55
    15  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6bb4d GHAL3D::CContext::Delete(GHAL3D::CContext*&) + 29
    16  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6b8a4 glrDestroyGHAL(GLDContextRec*) + 516
    17  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x00000001140adf88 glrTerminateContext + 1627
    18  libGPUSupport.dylib                     0x000000010f9d3fbd gldDestroyContext + 114
    19  GLEngine                                0x0000000113a258fd gliDestroyContext + 162
    20  com.apple.opengl                        0x00007fff8ce5f0a3 CGLReleaseContext + 190
    21  com.apple.QuartzCore                    0x00007fff85d473a2 CA::(anonymous namespace)::AsyncDeletion::callback(void*) + 122
    22  libdispatch.dylib                       0x00007fff8624f0b6 _dispatch_client_callout + 8
    23  libdispatch.dylib                       0x00007fff862501fa _dispatch_worker_thread2 + 304
    24  libsystem_c.dylib                       0x00007fff851b6d0b _pthread_wqthread + 404
    25  libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 18:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 19:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 20:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff890f0386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8523e800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff8523e717 usleep + 54
    3   com.apple.AppKit                        0x00007fff8c13f838 -[NSUIHeartBeat _heartBeatThread:] + 543
    4   com.apple.Foundation                    0x00007fff90af9562 __NSThread__main__ + 1345
    5   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000001  rbx: 0x0000000000000000  rcx: 0x00007fff890f053e  rdx: 0x0000000000000000
      rdi: 0x00000001125b33ec  rsi: 0x0000000000000001  rbp: 0x0000000000000000  rsp: 0x124782f000000000
       r8: 0xffff8047bfbfadaf   r9: 0x000000000000003f  r10: 0x00007fff890f1342  r11: 0x0000000000000246
      r12: 0x0000000000000001  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x4d55545800000000
      rip: 0x0000000000000000  rfl: 0x0000000000010202  cr2: 0x0000000000000000
    Logical CPU: 0
    Binary Images:
           0x10e2de000 -        0x10e2defff  com.apple.WebKit.PluginProcess (8536 - 8536.30.1) <A72AA77A-B8D0-359F-AD62-C201663A5340> /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcess
           0x10e2e3000 -        0x10e2e4fff  PluginProcessShim.dylib (7536.30.1) <3A07CA89-E38A-3445-AA26-05B2F437C153> /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcessShim.dylib
           0x10f9ae000 -        0x10f9b2ff7 +com.macromedia.Flash Player.plugin (11.8.800.94 - 11.8.800.94) <8AB5EF31-4EF9-29E1-9A89-1D693E50EF2E> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
           0x10f9b7000 -        0x10f9bcfff  com.apple.agl (3.2.1 - AGL-3.2.1) <F3FD497C-AEB8-35CB-92D4-1669B941435F> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10f9c3000 -        0x10f9c8fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <586F677E-D0F8-33B2-B6ED-41ED81C9EED9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10f9d1000 -        0x10f9defff  libGPUSupport.dylib (8.9.2) <0D32763C-7F3D-3FDB-9EDB-760BB7AFFA04> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10f9e5000 -        0x10f9eefe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x110b72000 -        0x112474ff7 +com.macromedia.FlashPlayer-10.6.plugin (11.8.800.94 - 11.8.800.94) <C2E6FDA9-5084-7801-3C01-184940681DAF> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
           0x113a10000 -        0x113bcefff  GLEngine (8.9.2) <420E03C3-B91D-33C7-A1C4-BE60A1544971> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x113c05000 -        0x113d75fff  libGLProgrammability.dylib (8.9.2) <83DBCC22-F711-3F9D-B622-6DE5D9DD90AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x113dad000 -        0x11416aff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.12.47 - 8.1.2) <41C027A9-3329-340E-995A-6B66C54B7DAD> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
           0x11429a000 -        0x1142c5fff  GLRendererFloat (8.9.2) <18D6F0AD-C5F1-3E8F-89C2-89426A3D6FE4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
        0x7fff6dede000 -     0x7fff6df1293f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff849e5000 -     0x7fff84ae3fff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff84ae4000 -     0x7fff84b78ff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff84b79000 -     0x7fff84b82ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff84bc2000 -     0x7fff84bc5ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff84bc6000 -     0x7fff84bddfff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff84bde000 -     0x7fff84beafff  libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff84bed000 -     0x7fff84cbfff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff84cce000 -     0x7fff84cebff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff84cec000 -     0x7fff84d11ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff84dcb000 -     0x7fff84deaff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff84deb000 -     0x7fff84df0fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff84dfa000 -     0x7fff84e51ff7  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
        0x7fff84e52000 -     0x7fff84e53fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff84e54000 -     0x7fff84e58fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff84e59000 -     0x7fff85170ff7  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
        0x7fff85171000 -     0x7fff8519dff7  libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff851a0000 -     0x7fff8526cff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8526d000 -     0x7fff85bfd4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff85bfe000 -     0x7fff85c9cff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff85c9d000 -     0x7fff85e4bfff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff85e4c000 -     0x7fff85e78fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8624d000 -     0x7fff86262ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff86263000 -     0x7fff86263fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff862d5000 -     0x7fff862dbff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff862dc000 -     0x7fff862dcffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8633a000 -     0x7fff8633efff  libCGXType.A.dylib (332) <17C8DD17-B3CB-3633-B252-C368AE51204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8633f000 -     0x7fff86341fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff86342000 -     0x7fff863c1ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff863c2000 -     0x7fff863d7fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff863de000 -     0x7fff863defff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8643a000 -     0x7fff8644efff  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
        0x7fff86477000 -     0x7fff86485fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff86486000 -     0x7fff86537fff  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
        0x7fff86538000 -     0x7fff865b9fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff865ba000 -     0x7fff8668dff7  com.apple.DiscRecording (7.0 - 7000.2.4) <E5F3F320-1049-32D8-8189-916EF5C40A1A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8668e000 -     0x7fff86783fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff867df000 -     0x7fff86800fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff86801000 -     0x7fff8683efef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8683f000 -     0x7fff86841ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff86842000 -     0x7fff86847fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff86848000 -     0x7fff86895fff  com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff868f6000 -     0x7fff868f7ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff869fb000 -     0x7fff86a1dff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff86a1e000 -     0x7fff86ac4ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff86ac5000 -     0x7fff86cafff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff86cb0000 -     0x7fff86cb0fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff86f27000 -     0x7fff86f41fff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff86f42000 -     0x7fff86faaff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff86fab000 -     0x7fff86facfff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff86fad000 -     0x7fff86fbfff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff87007000 -     0x7fff87008fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff87277000 -     0x7fff872c3ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff872c4000 -     0x7fff872c7fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8735f000 -     0x7fff873b0ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff873b1000 -     0x7fff8740dff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff874eb000 -     0x7fff874f2fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff87515000 -     0x7fff87564ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff87565000 -     0x7fff8767efff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8767f000 -     0x7fff876c2ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff876c3000 -     0x7fff876e2ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8779c000 -     0x7fff8779dff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff8779e000 -     0x7fff877a4fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff87801000 -     0x7fff879edff7  com.apple.WebKit2 (8536 - 8536.30.1) <5A3C2412-FF47-3160-9634-32222C98D887> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff879ee000 -     0x7fff879eefff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff879ef000 -     0x7fff87af1fff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff87af2000 -     0x7fff87b2dfff  com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff87b68000 -     0x7fff87b8ffff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff87b90000 -     0x7fff87b94ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff87b95000 -     0x7fff87bc6ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff87bc7000 -     0x7fff87bf2fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff87bf3000 -     0x7fff87bf5fff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff87c46000 -     0x7fff87e46fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff87e47000 -     0x7fff87e49fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff87e4a000 -     0x7fff87e84ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff87e85000 -     0x7fff87e85fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff88155000 -     0x7fff88160ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff88169000 -     0x7fff8817ffff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff88181000 -     0x7fff881c0ff7  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
        0x7fff881c1000 -     0x7fff885defff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff885df000 -     0x7fff88750ff7  com.apple.QTKit (7.7.1 - 2599.31) <1CBAB8B9-E335-33E3-B442-60105D265CB7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8879b000 -     0x7fff887a9ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff887aa000 -     0x7fff887b8ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff887b9000 -     0x7fff887e7ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff88890000 -     0x7fff88992fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff88993000 -     0x7fff889c9fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff889ca000 -     0x7fff889d6fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff88a5a000 -     0x7fff88a69ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff88fda000 -     0x7fff890b4fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff890b5000 -     0x7fff890ddfff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff890de000 -     0x7fff890f9ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
        0x7fff89c55000 -     0x7fff89ca0fff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff89cad000 -     0x7fff89cb1fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff89cb2000 -     0x7fff89d15ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff89d16000 -     0x7fff89d40ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff89d41000 -     0x7fff89d58fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff89d59000 -     0x7fff89df4fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff89e87000 -     0x7fff89e8fff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff89e90000 -     0x7fff89ee9ff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff89eea000 -     0x7fff8a004fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8a005000 -     0x7fff8a2a0ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8a2a1000 -     0x7fff8a572ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8a573000 -     0x7fff8a581fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8a582000 -     0x7fff8a60fff7  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
        0x7fff8a610000 -     0x7fff8a665ff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8a666000 -     0x7fff8a7c4fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8a800000 -     0x7fff8aab7ff7  com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8aaec000 -     0x7fff8aaecfff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8aaed000 -     0x7fff8aba0ff7  com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8accc000 -     0x7fff8acf3ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8acf4000 -     0x7fff8ad38fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
        0x7fff8ad39000 -     0x7fff8ad44fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8ad45000 -     0x7fff8adc5ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8adce000 -     0x7fff8add0ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8add1000 -     0x7fff8add2ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff8add8000 -     0x7fff8adfaff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff8adfb000 -     0x7fff8ae02fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8afa1000 -     0x7fff8afb4ff7  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
        0x7fff8b029000 -     0x7fff8b126fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff8b155000 -     0x7fff8b1b4fff  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
        0x7fff8b21d000 -     0x7fff8b279fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8b27a000 -     0x7fff8b39292f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8b393000 -     0x7fff8bb3afff  com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8bb3b000 -     0x7fff8bb3cff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8bb3d000 -     0x7fff8bc48fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8bcb8000 -     0x7fff8bd07fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8bd3a000 -     0x7fff8bd7dff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8bdb3000 -     0x7fff8bdc0fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8be05000 -     0x7fff8ca32fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8ca33000 -     0x7fff8ca82ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff8ca83000 -     0x7fff8cbd5fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8ce5a000 -     0x7fff8ce69fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8ce6a000 -     0x7fff8cf8afff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8cf8b000 -     0x7fff8cf90fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8cf91000 -     0x7fff8cfbffff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8cfec000 -     0x7fff8d428fef  com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8d436000 -     0x7fff8d48dff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8d48e000 -     0x7fff8d553ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8d56f000 -     0x7fff8d966fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8d967000 -     0x7fff8d9e9ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8d9ea000 -     0x7fff8d9f7ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8d9f8000 -     0x7fff8d9f8fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8d9f9000 -     0x7fff8dd29fff  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
        0x7fff8dd33000 -     0x7fff8dd5ffff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8dd63000 -     0x7fff8ddbdfff  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
        0x7fff8de4c000 -     0x7fff8de53fff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8de57000 -     0x7fff8e08cff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8e09b000 -     0x7fff8e33fff7  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
        0x7fff8e34c000 -     0x7fff8e409ff7  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
        0x7fff8e5d1000 -     0x7fff8e66bfff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8e66c000 -     0x7fff8e6b6ff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8e708000 -     0x7fff8e70bfff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8e70c000 -     0x7fff8e71fff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff8e723000 -     0x7fff8e779fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e77a000 -     0x7fff8e785ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8e786000 -     0x7fff8e797ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff8e798000 -     0x7fff8e800fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8e801000 -     0x7fff8e99cfef  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
        0x7fff8e99d000 -     0x7fff8e9beff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8e9bf000 -     0x7fff8eabcff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8eb11000 -     0x7fff8eb7eff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8eb7f000 -     0x7fff8eb89fff  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
        0x7fff8eb8a000 -     0x7fff8ee39fff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8ee3a000 -     0x7fff8ee3efff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8ee78000 -     0x7fff8eeb8ff7  com.apple.MediaKit (14 - 687) <8A

  • I had water damage to my iphone5 when I was deployed w/ the military overseas. How can I find out what saved to icloud and how to see where my photos are. I don't know when it was able to back up as wi fi was pretty sketchy. please advise. thx in advance

    I had water damage to my iphone5 when I was deployed w/ the military overseas. How can I find out what saved to icloud and how to see where my photos are. I don't know when it was able to back up as wi fi was pretty sketchy. please advise. thx in advance
    My iphone is toast, I know I checked on icloud and see my emails from the day before it happened. Can I see when and what my phone backed up through itunes or icloud?
    Please please help i am lost.

    This was EXACTLY what I needed about the purchases I made from my device. However, is there a way to re-download other ones you've made from a computer? Because I realized some of them were not just purchased from my device.
    This is a picture of what it looks like now:
    http://tinypic.com/r/107quxu/7
    As you can see, the stuff circled in red doesn't give me an option to download from Cloud Beta because it already says "downloaded".
    any way to get around that?

  • How can i find my iphone in my house and its off

    how can i find my iphone in my house and its off

    You go from room to room and look for it if it is turned off. Without power, you cannot use find my phone to send a sound to it.

  • How can i delete my gmail account from mail and add aol, how can i delete my gmail account from mail and add aol, how can i delete my gmail account from mail and add aol

    how can i delete my gmail account from mail and add aol, how can i delete my gmail account from mail and add aol, how can i delete my gmail account from mail and add aol

    Welcome to the Apple Support Communities
    To delete a mail account in Mail, open Mail, and go to Mail menu > Preferences > Accounts. Then, select the account you want to remove and press the - button.
    Then, press the + button to add the AOL mail account

  • How can you pull in pdf's from iBooks and bring them into the Box app?

    How can you pull in pdf's from iBooks and bring them into the Box app?

    That sounds great, but I'm lost.
    I followed these steps:
    1) Open your PDF (in Adobe Acrobat Pro)
    2) Chose print
    The print/printer options pop-up will show.
    3) In the printer section, do not use your normal printer, a printer named Adobe PDF should be an option. Chose it.
    4) Under the "Page handling" section, change the Page Scaling drop-down menu to "Multiple pages per sheet".
    It works fine, but it looses all of the font information and the search no longer works. How can you do it and save the font info, so the search tool continues to operate.
    Am I missing anything?

Maybe you are looking for

  • IPhone 5s decrease memory after updating to iOS 8.3

    I notice a decrease on my iPhone 5s 16GB memory from: 16GB to 12GB after downloading the latest iOS 8.3 update. I though I have so much stuff on the phone so I decided to delete all content and reinstall the software to factory settings. No luck, my

  • Don't Understand Wireless connection

    If anyone can give me expert advice it would be greatly appreciated. I just received my new macbook but i don't know how to connect to the internet wirelessly? Do i need to buy an airport express or w/e it is? I connected to the internet by using my

  • Passing datacell value

    On clicking any data cell i want to capture that event and i want to pass that datacell value on mouse click event to store it in some variable and want to do some calculation on that value and want to display that calculation in the crosstab. pls. c

  • Raw converter CS5

    Is there a converter for raw images from Olympus OMD EM-10? I have CS5 and I can't open them on my mac.

  • No stereo mix for iq520 need help

    need stereo mix for iq520 . win 7