Please Help !  Exception in closing resultset,statement.

In an application developed on , i am closing the resultsets and statements in finally block as
finally {
     if (resultset != null) resultset .close();
     if (statement != null) statement.close();
the above block does not take care of exceptions that might arise while closing resultset/statement. Please help with this:
what the conditions exceptions may arise in closing resultset/statements.
when does the garbage collector free such resources and what are the implications of not catching exception while closing - can this cause database handle leaks.
Please help!

I don't know what exceptions might occur, but since the close() method can throw SQLException, your program has to catch it. Maybe if you close twice, the second time will throw an exception? Anyway, it doesn't really matter, you still have to write a try-catch around it. What you do there is up to you -- you could ignore it (which is what I do) or you could end the program with a message.
When does the garbage collector free those resources? The garbage collector only frees memory. Nothing else. And the garbage collector will free a ResultSet object only when there are no references to it anywhere in your program. That doesn't mean just in code that you wrote, but anywhere in code that's running in your program. For example, the Statement object that produced the ResultSet might hold a reference to it. However, the API documentation for ResultSet does say that when the garbage collector does free a ResultSet object, it will automatically close it.
However, the best practice is to close ResultSet and Statement objects when you are finished with them, and not rely on garbage collection to clean up after you.

Similar Messages

  • Please help: Exception when deploying ADF Web app to AS 10.1.3

    Hi everyone, I hope someone could help me with this.
    I'm using JDeveloper 10.3.2.0.4066. Oracle AS is 10.1.3.
    The application works fine on the embedded OC4J, but when deployed to Oracle AS I get the following 500 Internal server error:
    oracle.jbo.JboException: JBO-25222: Unable to create application module.     at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:155)     at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80)     at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2431)     at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536)     at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2047)     at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1913)     at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2756)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:426)     at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:258)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:397)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:392)     at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1550)     at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1408)     at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:99)     at oracle.adf.model.BindingContext.get(BindingContext.java:465)     at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280)     at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248)     at oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383)     at oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:127)     at oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:60)     at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87)     at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51)     at oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(DCIteratorBindingDef.java:277)     at oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:296)     at oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:425)     at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54)     at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:44)     at oracle.adf.model.BindingContext.get(BindingContext.java:491)     at oracle.adf.model.BindingContext.findBindingContainer(BindingContext.java:327)     at oracle.adf.model.BindingContext.findBindingContainerByPath(BindingContext.java:641)     at oracle.adf.model.servlet.ADFBindingFilter.isPageViewable(ADFBindingFilter.java:532)     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:301)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##javax.naming.NamingException [Root exception is java.lang.ClassCastException: com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication]     at oracle.jbo.server.InitialContextImpl.createJboHome(InitialContextImpl.java:59)     at oracle.jbo.common.JboInitialContext.lookup(JboInitialContext.java:77)     at javax.naming.InitialContext.lookup(InitialContext.java:351)     at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:136)     at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80)     at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2431)     at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536)     at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2047)     at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1913)     at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2756)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:426)     at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:258)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:397)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:392)     at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1550)     at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1408)     at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:99)     at oracle.adf.model.BindingContext.get(BindingContext.java:465)     at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280)     at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248)     at oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383)     at oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:127)     at oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:60)     at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87)     at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51)     at oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(DCIteratorBindingDef.java:277)     at oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:296)     at oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:425)     at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54)     at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:44)     at oracle.adf.model.BindingContext.get(BindingContext.java:491)     at oracle.adf.model.BindingContext.findBindingContainer(BindingContext.java:327)     at oracle.adf.model.BindingContext.findBindingContainerByPath(BindingContext.java:641)     at oracle.adf.model.servlet.ADFBindingFilter.isPageViewable(ADFBindingFilter.java:532)     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:301)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)Caused by: java.lang.ClassCastException: com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication     at oracle.jbo.common.PropertyManager.loadStaticEnvironmentFromProperties(PropertyManager.java:392)     at oracle.jbo.common.PropertyManager.loadProperties(PropertyManager.java:223)     at oracle.jbo.server.SessionImpl.init(SessionImpl.java:136)     at oracle.jbo.server.ApplicationModuleHomeImpl.createSession(ApplicationModuleHomeImpl.java:110)     at oracle.jbo.server.ApplicationModuleHomeImpl.<init>(ApplicationModuleHomeImpl.java:47)     at oracle.jbo.server.InitialContextImpl.createJboHome(InitialContextImpl.java:51)     ... 43 more
    I see that I have a ClassCastException but I don't know anything about this class.
    I did not find any other thread related to this.
    Could someone please help me?
    Thank you.

    Hi I am afraid I do have similar problem in production now. We just upgrade app server from 10.1.3.0 to 10.1.3.1 plus ADF Runtime libraries 10.1.3.2 plus one-off patch (bug 4398431) for JDBC Driver (fixing deadlock in java threads related to JDBC pooling)
    Any hint what might be a issue. I suspect it might be related to jbo.timetolive because first occurence of this message is about 1 hour after restart of application server and we are using default BC configuration jbo.timetolive= 1hour
    After that we see folowing error messga in application.log
    JBO-30003: The application pool (aacp.wpailin.bc.PailinAppModuleLocal) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-25222: Unable to create application module.
    at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
    at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:419)
    at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1536)
    at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1396)
    at oracle.adf.model.BindingContext.beginRequest(BindingContext.java:683)
    at oracle.adf.model.BindingRequestHandler.invokeBeginRequest(BindingRequestHandler.java:346)
    at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:166)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:161)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-25222: Unable to create application module.
    at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
    at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:419)
    at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1536)
    at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1396)
    at oracle.adf.model.BindingContext.beginRequest(BindingContext.java:683)
    at oracle.adf.model.BindingRequestHandler.invokeBeginRequest(BindingRequestHandler.java:346)
    at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:166)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:161)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)

  • Please Help: Trouble with nested CASE statement and comparing dates

    Please tell me why the query below is always returning the bold null even when the start_date of OLD is greater than or equal to the start_date of NEW.
    What I want to do is get the difference of the start_dates of two statuses ( Start_date of OLD - Start_date of NEW) if
    1. end_date of NEW is not null
    2. start_date of OLD is greater than start_date of NEW
    else return null.
    select id,
    case when max(end_date) keep (dense_rank last order by decode(request_wflow_status,'New',1,0),start_date) is null then
    null
    else
              case when max(decode(status,'OLD',start_date,null)) > max(decode(status,'NEW',start_date,null))
              then max(decode(status,'OLD',start_date,null)) - max(decode(status,'NEW',start_date,null))
    else
    null
    end
    end result
    from cc_request_status where id =1
    group by id;

    Avinash,
    Thank you for your help.. Here is a more description of my problem..
    Here is a sample of data I have for a table with four columns (id,status,start_date,end_date)
    What I need to do is to get difference of the start dates of the maximum available dates, if data is valid. The pseducode is as follows:
    IF end_date of New status is null
    THEN return null
    ELSE
    IF start_date of old >= start_date of new
    THEN return (start_date of old - start_date of new)
    ELSE return null
    I used the following query but always return the bold null
    select id,
    (case when max(end_date) keep (dense_rank last order by decode(status,'new',1,0),start_date) is null then
    null
    else
              (case when max(decode(status,'old',start_date,null)) >=
              max(decode(status,'new',start_date,null))
              then max(decode(status,'old',start_date,null)) - max(decode(status,'new',start_date,null))
    else
    null
    end)
    end) result
    from tbl where id =1
    Based on the below sample, I expected to get the following result; 14-Mar-07 - 16-Feb-07 which is the difference of the maximum start_dates of the two statuses. However the query is not working.. Please help me.. Thank you..
    Id    Status    start_date      end_date
    1     new      03-Feb-07      07-Feb-07
    1     new      16-Feb-07      21-Feb-07
    1     old      '10-Mar-07      12-Mar-07
    1     old      '14-Mar-07      16-Mar-07

  • Please help.  Error closing FileDescriptors

    I realize this is a frequently visited problem but I've yet to find a solution in the archives.
    I'm using a app that utilizes RMI to access and edit remote files. To do this, I've written a Remote object that has the ability to read all requested files and then return a collection of file information objects that contain the current contents of the files. The information objects are serializable and do not contain any references to the the actual file (just copies of its contents).
    After running the the app for a while i get the following errors.
    On linux and j2sdk1.4.1_01:
    FileNotFoundException( Too many open files )
    From some tips found in older archives i tried running
    "ulimit -n 1048576" before starting the app
    however this only delays the problem.
    On Windows and j2sdk1.4.1:
    "The process cannot access the file because it is being used by another process"
    It appears as though the files are not being closed after being parsed. The code looks something like this:
    File file = null;
    try {
    file = new File( filename );
    // do the parsing
    catch ( Exception e ) {
    finally {
    file = null;
    System.gc();
    Anyone have any ideas? Thanks in advance.

    Have you tried inserting file.close() ?

  • Please help --Error in insert into Statement

    Error in insert into statement while connecting to ms-access.
    import java.sql.*;
    public class stupid8
         public stupid8()
              try{
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection con=DriverManager.getConnection("jdbc:odbc:Driver={MicroSoft Access Driver (*.mdb)};"+"DBQ=d:/Servlet/registration.mdb");
                   PreparedStatement s=con.prepareStatement("insert into Deposit (username,date,amount) values(?,?,?)");
                   s.setString(1,"username");
                   s.setString(2,"date");
                   s.setString(3,"amount");
                   s.executeUpdate();
                   System.out.println("Success");
              catch(Exception e)
                   System.out.println("Error: "+e);
         public static void main(String args[])
              new stupid8();
    }

    My first guess is that the database is objecting to the use of "date" as a column name; "date" is often a reserved word in databases.
    It would be less of a guess if you posted the actual error message.

  • Please help with a closed caption or subs solution!

    Hi all,
    I have been reading up on the various methods of including cc or subs with QT movies but am still a bit stumped as to the best solution for my situation.
    We have a desktop application that allows customers to purchase educational videos through branded client catalogs. The videos are downloaded to the customer's Mac or PC and then play back, within our program, utilizing QT player (and we also have the option to switch to MPlayer for older PCs).
    Our clients have begun asking if they can also offer alternate versions of their videos with subtitles in various languages. My first thought was this would be a snap, just by adding properly-named and formatted .srt files to the proper directories, and while it seems like this will work if they are using MPlayer, the vast majority of our customers are using QT. Is there a type of text file we can have our clients supply us with that will work automatically in this sense? If not, is there any sort of command-line client we might be able to use to quickly and easily mux mp4 files with cc or subs?
    The key here is simplicity, and ideally we would really like to not have to have multiple versions of the mp4s themselves, just having various cc or sub txt files would make everything so much easier!
    Is this possible? Am I totally missing an obvious solution?
    Thanks so much for any help you can offer!
    Best,
    Jeff

    http://www.macosxhints.com/article.php?story=20071103080237904
    http://forums.macrumors.com/showthread.php?t=282408
    NicePlayer mentions subtitle support in the help menu

  • Please HELP exception from EXTPROC.EXE

    guys...
    whenver i run extproc it gives Exception and Dr Watson reports it as access violation...what to do..??????

    How is AccountHome defined? Is it a concrete class or a variable? How is it initialized?

  • Please help me to close the IF blocks.

    HI EXperts,
    Please help me on closing the IF blocks properly in the below procedure.
    CREATE OR REPLACE PROCEDURE sums_proc
                    Id INTEGER,
      mtrname VARCHAR2
                    mtrtype INTEGER,  
    AS
    state  VARCHAR2(10);
    accesslevel INTEGER;
    asts NUMBER;
    mtrtypesql LONG;
    sumsql LONG;
    BEGIN 
    SELECT st_name INTO state FROM states_info WHERE st_name  = 'KARNATAKA';
    SELECT acc_level INTO accesslevel FROM level_table WHERE level_id  = 4;
    IF (accesslevel = 4) THEN 
    BEGIN 
    asts :=4;
    END; 
    ELSIF (accesslevel = 3)  THEN
    BEGIN 
    IF (OBJECT_ID('CANN_TABLE') IS NOT NULL)  THEN
    BEGIN 
    EXECUTE IMMEDIATE 'DROP TABLE CANN_TABLE'; 
    END;
    EXECUTE IMMEDIATE 'CREATE TABLE CANN_TABLE'; 
    END;
    ELSE
    BEGIN  
    IF OBJECT_ID('MANN_TABLE') IS NOT NULL  THEN
    BEGIN 
    EXECUTE IMMEDIATE 'DROP TABLE MANN_TABLE'; 
    END;
    EXECUTE IMMEDIATE 'CREATE TABLE MANN_TABLE';
    END; 
    IF (mtrname IS NULL OR mtrname = '')  THEN
    mtrname := ''; 
    ELSE 
    mtrname := 'DEFAULT';
    IF (mtrtype > 2) THEN
    mtrtypesql := ' AND (mtr = 1) ' ; 
    ELSE  
    mtrtypesql := ' AND (mtr = 2) '; 
    END IF;
    IF (mtrtype = 1) THEN 
    BEGIN 
    mtrtypesql := 'SELECT SUM(amount) as amount FROM sales_table WHERE sales_type=''SALES''||mtrtypesql'; 
    END; 
    ELSIF (mtrtype = 2)
    mtrtypesql := 'SELECT SUM(amount) as amount FROM margin_table WHERE margin_type=''MARGIN''||mtrtypesql';  
    END; 
    IF (mtrtype = 4  OR mtrtype = 3) THEN
    BEGIN  
    mtrtypesql := 'SELECT SUM(amount) as amount FROM margin_table WHERE margin_type=''MARGIN''||mtrtypesql';
    END; 
    ELSIF (mtrtype = 10 OR mtrtype = 15) THEN
    BEGIN    
    mtrtypesql := 'SELECT SUM(amount) as amount FROM revenue_table WHERE revenue_type=''REVENUE''||mtrtypesql';
    END;        
    ELSE 
    BEGIN 
    mtrtypesql := 'SELECT SUM(amount) as amount FROM revenue_table WHERE all_type=''ALL''||mtrtypesql';
    END;
    sumsql := ' SELECT SUM(amount) FROM salesum_table';
    EXECUTE IMMEDIATE mtrtypesql || ' UNION all ' ||sumsql ;
    IF OBJECT_ID('CANN_TABLE') IS NOT NULL THEN
    BEGIN 
    EXECUTE IMMEDIATE 'DROP TABLE CANN_TABLE'; 
    END;
    END IF; 
    IF OBJECT_ID('MANN_TABLE') IS NOT NULL  THEN
    BEGIN 
    EXECUTE IMMEDIATE  'DROP TABLE MANN_TABLE'; 
    END;
    END;
    Please help me.
    Thanks.

    Hi,
    Thanks for your help.
    Please help on the error.
    ORA-24338: statement handle not executed
    CREATE OR REPLACE PROCEDURE sums_proc(
        p_Id      INTEGER,
        mtrname VARCHAR2 mtrtype INTEGER,
        P_out OUT SYS_REFCURSOR
    AS
      state       VARCHAR2(10);
      accesslevel INTEGER;
      asts        NUMBER;
      countval   NUMBER :=0;
      mtrtypesql LONG;
      sumsql LONG;
      v_query LONG;
      BEGIN
      SELECT st_name INTO state FROM states_info WHERE st_name = 'KARNATAKA';
      SELECT COUNT(*) INTO countval FROM  level_table WHERE level_id = p_id;
    IF countval = 0 THEN
    RETURN;
        ELSE
            SELECT access_id INTO accesslevel  level_table WHERE level_id = p_id;
        IF (NVL(accesslevel, 0) = 0)  THEN
        RETURN;
        END IF;
    END IF;
      IF (accesslevel = 4) THEN
      asts :=4;
      ELSIF (accesslevel = 3) THEN
        IF (OBJECT_ID('CANN_TABLE') IS NOT NULL) THEN   EXECUTE IMMEDIATE 'DROP TABLE CANN_TABLE';
         ELSE EXECUTE IMMEDIATE 'CREATE TABLE CANN_TABLE(SM NUMBER)';
        END IF;
      ELSE
       IF OBJECT_ID('MANN_TABLE') IS NOT NULL THEN   EXECUTE IMMEDIATE 'DROP TABLE MANN_TABLE';
        ELSE  EXECUTE IMMEDIATE 'CREATE TABLE MANN_TABLE(SM NUMBER)';
       END IF;
       IF (mtrname IS NULL OR mtrname = '') THEN  mtrname := '';
       ELSE
          mtrname      := 'DEFAULT';
         IF (mtrtype   > 2) THEN
            mtrtypesql := ' AND (mtr = 1) ' ;
          ELSE
            mtrtypesql := ' AND (mtr = 2) ';
         END IF;
         IF (mtrtype = 1) THEN
            mtrtypesql := 'SELECT SUM(amount) as amount FROM sales_table WHERE sales_type=''SALES'''||mtrtypesql;
          ELSIF (mtrtype = 2)
            mtrtypesql := 'SELECT SUM(amount) as amount FROM margin_table WHERE margin_type=''MARGIN'''||mtrtypesql;
          ELSIF (mtrtype = 4 OR mtrtype = 3) THEN
              mtrtypesql := 'SELECT SUM(amount) as amount FROM margin_table WHERE margin_type=''MARGIN'''||mtrtypesql;
          ELSIF (mtrtype = 10 OR mtrtype = 15) THEN
              mtrtypesql := 'SELECT SUM(amount) as amount FROM revenue_table WHERE revenue_type=''REVENUE'''||mtrtypesql;
          ELSE
              mtrtypesql := 'SELECT SUM(amount) as amount FROM revenue_table WHERE all_type=''ALL'''||mtrtypesql;
          END IF;
          sumsql := ' SELECT SUM(amount) FROM salesum_table';
          v_query :=||mtrtypesql || ' UNION all ' ||sumsql ||';
          OPEN P_out FOR v_query;
          COMMIT;
        END;
    My requirement is
    IF accesslevel = 0 or IF accesslevel is not existed the program should come out.
    SO that I have included the below code
    SELECT COUNT(*) INTO countval FROM  level_table WHERE level_id = p_id;
    IF countval = 0 THEN
    RETURN;
        ELSE
            SELECT access_id INTO accesslevel  level_table WHERE level_id = p_id;
        IF (NVL(accesslevel, 0) = 0)  THEN
        RETURN;
        END IF;
    END IF;
    I want to send the result set to front so that I have replaced the below statement with
    EXECUTE IMMEDIATE 'BEGIN INSERT INTO CANN_TABLE '||mtrtypesql || ' UNION all ' ||sumsql ||';
    OPEN P_out FOR v_query;
    If I get accesslevel as 0 I am getting error when executing thic procedure.
    ORA-24338: statement handle not executed
    Please help me.
    Thanks.

  • I need to install the find my iPhone app on my ipad, it's won't install. Any reasons. Do I need to change something in my settings? I am up to date with my ios7. Please help!

    I need to install the find my iPhone app on my ipad, it will not install. Any reasons. Do I need to change something in my settings? I am up to date with my ios7. Please help!

    Try closing the App Store app via the iPad's taskbar and then do a soft-reset and see if you can install it after the iPad has restarted. To close the App Store : double-click the home button to open the taskbar, and then swipe or drag the App Store app's screen from there up and off the top of the screen to close it, and click the home button to close the taskbar.
    Soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • 0.1mb speed suddenly! please help my BB speed has ...

    2 months ago my broadband started dropping out for long periods every day.
    i contacted bt they said there was a fault with their side of things, and engineer came and went. slightly better connections for a while, but speed terrible. i have now had engineer 3 times, and speed is now the slowest ever at under 0.15mb most of the time. i live in an area which is supposed to achieve 1-3mb, and have previously had 0.5-0.9mb which is fine for me, but 0.15 is not.
    i can't even stream the online help videos suggested here on this site on ways to improve things here. 
    i am getting VERY frustrated with technical support, they say they are doing something to the line and wait 2 days and all will be fine, this has now happened 4 times and i wait the time and no improvement occurs.
    PLEASE help
    regards cheryl

    Connection information
    Line state
    Connected
    Connection time
    1 day, 5:12:16
    Downstream
    256 Kbps
    Upstream
    448 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.1
    Latency type
    Interleaved
    Noise margin (Down/Up)
    21.6 dB / 10.0 dB
    Line attenuation (Down/Up)
    63.5 dB / 31.5 dB
    Output power (Down/Up)
    13.1 dBm / 12.1 dBm
    Loss of Framing (Local)
    0
    Loss of Signal (Local)
    0
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    131 / 92
    CRC Errors (Down/Up)
    1 / 2147480000
    HEC Errors (Down/Up)
    nil / 77
    Error Seconds (Local)
    1
    Hide Details

  • Getting Error:closing a connection for you. Please help

    Hello All,
    I'm using jboss3.2.6. I used ejb2.1 (session bean and entity bean[BMP]). I did few data base transations in cmp and few in simple data source connection.
    I'm getting below errors occasionally
    'No managed connection exception
    java.lang.OutOfMemoryError: Java heap space
    [CachedConnectionManager] Closing a connection for you. Plea
    se close them yourself: org.jboss.resource.adapter.jdbc.WrappedConnection@11ed0d
    5
    I've given below my dao connection code here,
    package com.drtrack.util;
    import java.sql.Connection;
    import java.sql.SQLException;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    public class DAOUtil {
    private static DataSource _ds;
    public Connection con;
    public DAOUtil() throws SQLException {
    try {
    if (_ds == null)
    assemble();
    if(_ds != null && con == null) {
    con = _ds.getConnection();
    }catch(SQLException ex) {
    ex.printStackTrace();
    private void assemble() {
    Context ic = null;
    try {
    ic = new InitialContext();
    DrTrackUtil drutil = new DrTrackUtil();
    _ds = (DataSource) ic.lookup("java:/" + drutil.getText("SOURCE_DIR"));
    drutil = null;
    }catch (Exception e) {
    e.printStackTrace();
    }finally {
    try {
    ic.close();
    }catch(NamingException ne) {}
    public void closeConnection() throws SQLException {
    if(con != null)
    con.close();
    con = null;
    }below is the code with get connection and doing transaction in it.
    public static AccountMasterValueBean getAccountMasterByAcctId(String acctId) {
    AccountMasterValueBean bean = null;
    DAOUtil dao = null;
    CallableStatement cst = null;
    ResultSet rs = null;
    try {
    dao = new DAOUtil();
    cst = dao.con.prepareCall(DrTrackConstants.MSSQL_USP_ACCOUNTMASTER_BY_ACCTID);
    cst.setObject(1, acctId);
    rs = cst.executeQuery();
    if(rs != null && rs.next()) {
    bean = new AccountMasterValueBean(
    Integer.valueOf(rs.getString("accountkeyid")),
    rs.getString("latitude"),
    rs.getString("longitude"));
    }catch(SQLException se) {
    logger.info("SQL Error: " + se);
    finally {
    if(rs != null){
    try {
    rs.close();
    }catch(SQLException se) {
    logger.info("SQL Error: " + se);
    finally {
    rs = null;
    if(cst != null) {
    try{
    cst.close();
    }catch(SQLException se) {
    logger.info("SQL Error: " + se);
    finally {
    cst = null;
    if(dao != null) {
    try {
    dao.closeConnection();
    }catch(SQLException se) {
    logger.info("SQL Error: " + se);
    finally {
    dao = null;
    return bean;
    }I closed connections, resultsets and statements properly.
    Why I'm getting these errors.? Where I'm doing wrong. ? Please help me. I have to fix them ASAP.
    Thanks.

    Hello All,
    I'm using jboss3.2.6. I used ejb2.1 (session bean and entity bean[BMP]). I did few data base transations in cmp and few in simple data source connection.
    I'm getting below errors occasionally
    'No managed connection exception
    java.lang.OutOfMemoryError: Java heap space
    [CachedConnectionManager] Closing a connection for you. Plea
    se close them yourself: org.jboss.resource.adapter.jdbc.WrappedConnection@11ed0d
    5
    I've given below my dao connection code here,
    package com.drtrack.util;
    import java.sql.Connection;
    import java.sql.SQLException;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    public class DAOUtil {
    private static DataSource _ds;
    public Connection con;
    public DAOUtil() throws SQLException {
    try {
    if (_ds == null)
    assemble();
    if(_ds != null && con == null) {
    con = _ds.getConnection();
    }catch(SQLException ex) {
    ex.printStackTrace();
    private void assemble() {
    Context ic = null;
    try {
    ic = new InitialContext();
    DrTrackUtil drutil = new DrTrackUtil();
    _ds = (DataSource) ic.lookup("java:/" + drutil.getText("SOURCE_DIR"));
    drutil = null;
    }catch (Exception e) {
    e.printStackTrace();
    }finally {
    try {
    ic.close();
    }catch(NamingException ne) {}
    public void closeConnection() throws SQLException {
    if(con != null)
    con.close();
    con = null;
    }below is the code with get connection and doing transaction in it.
    public static AccountMasterValueBean getAccountMasterByAcctId(String acctId) {
    AccountMasterValueBean bean = null;
    DAOUtil dao = null;
    CallableStatement cst = null;
    ResultSet rs = null;
    try {
    dao = new DAOUtil();
    cst = dao.con.prepareCall(DrTrackConstants.MSSQL_USP_ACCOUNTMASTER_BY_ACCTID);
    cst.setObject(1, acctId);
    rs = cst.executeQuery();
    if(rs != null && rs.next()) {
    bean = new AccountMasterValueBean(
    Integer.valueOf(rs.getString("accountkeyid")),
    rs.getString("latitude"),
    rs.getString("longitude"));
    }catch(SQLException se) {
    logger.info("SQL Error: " + se);
    finally {
    if(rs != null){
    try {
    rs.close();
    }catch(SQLException se) {
    logger.info("SQL Error: " + se);
    finally {
    rs = null;
    if(cst != null) {
    try{
    cst.close();
    }catch(SQLException se) {
    logger.info("SQL Error: " + se);
    finally {
    cst = null;
    if(dao != null) {
    try {
    dao.closeConnection();
    }catch(SQLException se) {
    logger.info("SQL Error: " + se);
    finally {
    dao = null;
    return bean;
    }I closed connections, resultsets and statements properly.
    Why I'm getting these errors.? Where I'm doing wrong. ? Please help me. I have to fix them ASAP.
    Thanks.

  • Query Prepared Statement Does NOT Return ANY Values !URGENT! PLEASE HELP...

    Hi,
    Please help me in the following.I'm desperate...
    I'm using PreparedStatement to do multiple queries in the same Table of a Database(ACCESS).
    The rows of the Table look i.e like this :
    (TABLE NAME == PERSONS)
    PERSON_INDEX__TIME_PERIOD_________SPORT
    1_______________1________________Basketball
    1_______________2________________Football
    1_______________3________________Tennis
    2_______________1________________Something
    I populate my PreparedStatement using something like :
    java.sql.PreparedStatement st = con.createPreparedStatement("SELECT SPORT FROM PERSONS WHERE PERSON_INDEX=? AND TIME_PERIOD=?");
    Now, when I do something like :
    try
    st.setInt(1,1);
    st.setInt(2,1);
    st.addBatch();
    }catch(SQLException e){}
    st.executeQuery();
    ResultSet results = st.getResultSet();
    while ( results.next() )
    System.out.println("->"+results.getString("SPORT"));
    I trully get as output :
    ->BasketBall
    But when I populate it some more :
    try
    st.setInt(1,1);
    st.setInt(2,1);
    st.addBatch();
    //***Query some more***
    st.setInt(1,1);
    st.setInt(2,2);
    st.addBatch();
    }catch(SQLException e){}
    ... and I execute I DON'T GET :
    ->BasketBall
    ->Football
    but NOTHING!!! - the ResultSet HAS NO ROWS
    This thing is driving me mad.
    Can you please help me out?
    Please post the code if neccessary...

    There is something wrong in your understanding of batching the statements. Basically you will add either update or insert or delete statements to your batch.
    If you add a select statement, it will throw 'java.sql.BatchUpdateException: invalid batch command'. And moreover 'st.executeBatch()' is the method you need to invoke.
    If you don't execute the batch using 'executeBatch()' method then, it must throw the exception,
    'java.sql.SQLException: error occurred during batching: batch must be either executed or cleared'.
    You need to rework on your code, I believe.
    Sudha

  • Help Please!  Safari keeps closing!

    My Safari window closes every time I try to type in the address bar. I can open web pages from my history, but I cannot go to a new webpage without the window closing. Thanks so much for your help!
    Below is the error report:
    Date/Time: 2011-02-13 13:44:01.744 -0600
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [58]
    Version: 4.1.3 (4533.19.4)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 75331904
    PID: 243
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.WebKit 0x01039c8e -[NSString(WebNSURLExtras) webisUserVisibleURL] + 82
    1 com.apple.Safari 0x000b4dec 0x1000 + 736748
    2 com.apple.Safari 0x000b4d77 0x1000 + 736631
    3 com.apple.Safari 0x000b4cf5 0x1000 + 736501
    4 com.apple.Safari 0x00174deb 0x1000 + 1523179
    5 com.apple.Safari 0x001762cd 0x1000 + 1528525
    6 com.apple.Safari 0x000b4414 0x1000 + 734228
    7 com.apple.Safari 0x00176af2 0x1000 + 1530610
    8 com.apple.Safari 0x000b4198 0x1000 + 733592
    9 com.apple.Safari 0x000b40b4 0x1000 + 733364
    10 com.apple.Safari 0x00022f56 0x1000 + 139094
    11 com.apple.Safari 0x000b4013 0x1000 + 733203
    12 com.apple.Safari 0x000b3e26 0x1000 + 732710
    13 com.apple.Safari 0x000b3da1 0x1000 + 732577
    14 com.apple.Safari 0x000b3d19 0x1000 + 732441
    15 com.apple.Foundation 0x927fab97 nsnotecallback + 230
    16 com.apple.CoreFoundation 0x908563d2 __CFXNotificationPost + 345
    17 com.apple.CoreFoundation 0x9084db51 _CFXNotificationPostNotification + 600
    18 com.apple.Foundation 0x927f3128 -[NSNotificationCenter postNotificationName:object:userInfo:] + 121
    19 com.apple.AppKit 0x9336d67b -[NSTextField textDidChange:] + 382
    20 com.apple.Safari 0x000b3afe 0x1000 + 731902
    21 com.apple.Foundation 0x927fab97 nsnotecallback + 230
    22 com.apple.CoreFoundation 0x908563d2 __CFXNotificationPost + 345
    23 com.apple.CoreFoundation 0x9084db51 _CFXNotificationPostNotification + 600
    24 com.apple.Foundation 0x927f3128 -[NSNotificationCenter postNotificationName:object:userInfo:] + 121
    25 com.apple.AppKit 0x9336bb0a -[NSTextView(NSSharing) didChangeText] + 528
    26 com.apple.Safari 0x000b3a3d 0x1000 + 731709
    27 com.apple.AppKit 0x93369327 -[NSTextView insertText:] + 2540
    28 com.apple.AppKit 0x933687c3 -[NSKeyBindingManager(NSKeyBindingManager_MultiClients) flushTextForClient:] + 197
    29 com.apple.AppKit 0x93365860 -[NSTSMInputContext interpretKeyEvents:] + 1240
    30 com.apple.AppKit 0x93364bb4 -[NSView interpretKeyEvents:] + 65
    31 com.apple.AppKit 0x93364aa2 -[NSTextView keyDown:] + 1061
    32 com.apple.AppKit 0x93364625 -[NSWindow sendEvent:] + 7377
    33 com.apple.Safari 0x0003638f 0x1000 + 217999
    34 com.apple.Safari 0x00036319 0x1000 + 217881
    35 com.apple.AppKit 0x93355d8c -[NSApplication sendEvent:] + 5023
    36 com.apple.Safari 0x0002efbb 0x1000 + 188347
    37 com.apple.AppKit 0x932808e7 -[NSApplication run] + 547
    38 com.apple.AppKit 0x93274820 NSApplicationMain + 573
    39 com.apple.Safari 0x0000749b 0x1000 + 25755
    40 com.apple.Safari 0x0010e512 0x1000 + 1103122
    41 com.apple.Safari 0x00007219 0x1000 + 25113
    Thread 1:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.JavaScriptCore 0x0050ade0 ***::ThreadCondition::wait(***::Mutex&) + 24
    2 com.apple.WebCore 0x015eadd0 WebCore::IconDatabase::syncThreadMainLoop() + 256
    3 com.apple.WebCore 0x015e8856 WebCore::IconDatabase::iconDatabaseSyncThread() + 192
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d227 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca42 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9285f5da +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x92802cfc forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d227 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca42 CFRunLoopRunInMode + 61
    3 com.apple.Safari 0x00026c6d 0x1000 + 154733
    4 com.apple.Safari 0x00026b26 0x1000 + 154406
    5 com.apple.Safari 0x00026aab 0x1000 + 154283
    6 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x92858c60 -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.Syndication 0x998ce79e -[AsyncDB _run:] + 181
    3 com.apple.Foundation 0x92802cfc forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d227 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca42 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9283839c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4 com.apple.Foundation 0x92802cfc forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90019d0c select + 12
    1 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.JavaScriptCore 0x00510742 ***::ThreadCondition::timedWait(***::Mutex&, double) + 74
    2 com.apple.Safari 0x002ddd66 0x1000 + 3001702
    3 com.apple.Safari 0x002dde5c 0x1000 + 3001948
    4 com.apple.Safari 0x0003a0cd 0x1000 + 233677
    5 com.apple.Safari 0x0003a02f 0x1000 + 233519
    6 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x01039c4d ecx: 0xffffffff edx: 0xbfffe8ac
    edi: 0x00000000 esi: 0x16f54b80 ebp: 0xbfffed48 esp: 0xbfffe900
    ss: 0x0000001f efl: 0x00010246 eip: 0x01039c8e cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x330fff com.apple.Safari 4.1.3 (4533.19.4) /Applications/Safari.app/Contents/MacOS/Safari
    0x505000 - 0x6ddfff com.apple.JavaScriptCore 4533.19 (4533.19.1) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x1008000 - 0x10f5fff com.apple.WebKit 4533.19 (4533.19.4) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x119a000 - 0x1448fff com.apple.QuartzCore 1.4.13 /System/Library/PrivateFrameworks/Safari.framework/Frameworks/QuartzCore.framew ork/Versions/A/QuartzCore
    0x14dc000 - 0x15bafff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x15e6000 - 0x20a7fff com.apple.WebCore 4533.19 (4533.19.4) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x8fe00000 - 0x8fe4afff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.85 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.31 (682.32) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154dfff com.apple.AE 316.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.13 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916ecfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91719000 - 0x917c2fff com.apple.QD 3.10.28 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917e8000 - 0x91833fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91852000 - 0x91868fff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91874000 - 0x9188efff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91898000 - 0x918d5fff com.apple.LaunchServices 183.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e9000 - 0x918f5fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918fc000 - 0x9193cfff com.apple.ImageIO.framework 1.5.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9194f000 - 0x91a01fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a47000 - 0x91a5dfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a62000 - 0x91a80fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a85000 - 0x91ae4fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91af6000 - 0x91afafff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91afc000 - 0x91b84fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b88000 - 0x91ba3fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91ba8000 - 0x91baafff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91ca7000 - 0x91ce6fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91cec000 - 0x91cecfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cee000 - 0x91d7cfff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d83000 - 0x91d83fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d85000 - 0x91ddefff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91de7000 - 0x91e0bfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e13000 - 0x9221cfff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92256000 - 0x9260afff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92637000 - 0x92724fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92726000 - 0x927a4fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927e5000 - 0x92a1dfff com.apple.Foundation 6.4.12 (567.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b3d000 - 0x92b54fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b5f000 - 0x92bb7fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bcb000 - 0x92bcbfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bcd000 - 0x92bddfff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92beb000 - 0x92bf3fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bf9000 - 0x92bfefff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92c04000 - 0x92c95fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92ca9000 - 0x92cacfff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92caf000 - 0x92ccdfff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cdf000 - 0x92ce5fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92ceb000 - 0x92d4efff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d72000 - 0x92db3fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dda000 - 0x92de7fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dee000 - 0x92df3fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92df8000 - 0x930edfff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931f3000 - 0x931fefff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93203000 - 0x9321efff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9326e000 - 0x9326efff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93270000 - 0x93926fff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ca7000 - 0x93d22fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d5b000 - 0x93e14fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e57000 - 0x93e57fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94060000 - 0x940a1fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x940a9000 - 0x940e3fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940e8000 - 0x940fefff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94198000 - 0x941d6fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9421a000 - 0x9422afff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94237000 - 0x94274fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94290000 - 0x9429ffff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x942a6000 - 0x942b1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942fd000 - 0x94317fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9431d000 - 0x9463cfff com.apple.QuickTime 7.6.4 (1327.73) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94700000 - 0x9470efff com.apple.framework.Apple80211 4.5.5 (455.2) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x947c2000 - 0x94908fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94994000 - 0x949a3fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x949aa000 - 0x949d3fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949d9000 - 0x949e8fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949ec000 - 0x94a11fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94a1d000 - 0x94a3afff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94f5c000 - 0x94f94fff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95ec0000 - 0x95ec0fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96598000 - 0x9659dfff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96f69000 - 0x97040fff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x970c9000 - 0x970c9fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x978a0000 - 0x98797fff com.apple.QuickTimeComponents.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98f2c000 - 0x98f55fff com.apple.CoreMediaPrivate 15.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x998cb000 - 0x99902fff com.apple.Syndication 1.0.8 (56.1) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a43a000 - 0x9a44cfff com.apple.SyndicationUI 1.0.8 (56.1) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9b518000 - 0x9b558fff com.apple.CoreMediaIOServicesPrivate 20.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9fefc000 - 0x9ffaafff com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/QTKit
    Model: MacBook1,1, BootROM MB11.0061.B03, 2 processors, Intel Core Duo, 2 GHz, 1 GB
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: BANK 0/DIMM0, 512 MB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 512 MB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x86), 1.4.4
    Bluetooth: Version 1.9.5f4, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST96812AS, 55.89 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA

    this is happening to me too; but only since i updated my software yesterday.. the error i get is as follows- (Please HELP - severe technophobe)
    Process: Safari [148]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0.2 (6533.18.5)
    Build Info: WebBrowser-75331805~5
    Code Type: X86-64 (Native)
    Parent Process: launchd [86]
    Date/Time: 2011-02-14 20:09:53.053 +1000
    OS Version: Mac OS X 10.6.6 (10J567)
    Report Version: 6
    Interval Since Last Report: 3542 sec
    Crashes Since Last Report: 6
    Per-App Interval Since Last Report: 960 sec
    Per-App Crashes Since Last Report: 6
    Anonymous UUID: C62AE0E0-EE53-413B-BBCB-D93F34F0747E
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000068
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.Safari 0x0000000100172323 0x100000000 + 1516323
    1 com.apple.Safari 0x000000010019fc20 0x100000000 + 1702944
    2 com.apple.JavaScriptCore 0x00007fff81d42246 JSC::JSCallbackFunction::call(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, JSC::ArgList const&) + 358
    3 com.apple.JavaScriptCore 0x00007fff81cf42ff ctiop_callNotJSFunction + 415
    4 ??? 0x00004b8a665dd321 0 + 83057794994977
    5 com.apple.JavaScriptCore 0x00007fff81d703ac JSC::Interpreter::execute(JSC::FunctionExecutable*, JSC::ExecState*, JSC::JSFunction*, JSC::JSObject*, JSC::ArgList const&, JSC::ScopeChainNode*, JSC::JSValue*) + 508
    6 ??? 0x000000011a364140 0 + 4734730560
    7 ??? 0x000000012314e8c0 0 + 4883540160
    8 com.apple.JavaScriptCore 0x00007fff81d7c690 JSC::JSCallbackObject<JSC::JSObject>::~JSCallbackObject() + 0
    9 ??? 0x894918ec83485355 0 + 9892465460589908821
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff8524e16a kevent + 10
    1 libSystem.B.dylib 0x00007fff8525003d dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff8524fd14 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff8524f83e dispatch_workerthread2 + 252
    4 libSystem.B.dylib 0x00007fff8524f168 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff8524f005 start_wqthread + 13
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff8526ffca _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff85273de1 pthread_condwait + 1286
    2 com.apple.WebCore 0x00007fff8543cd49 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3 com.apple.WebCore 0x00007fff85438e4c WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4 libSystem.B.dylib 0x00007fff8526e536 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff8526e3e9 thread_start + 13
    Thread 3: Safari: CertRevocationChecker
    0 libSystem.B.dylib 0x00007fff852352da machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8523594d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86f96932 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff86f95dbf CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002fa3d 0x100000000 + 195133
    5 com.apple.Safari 0x000000010002f9cd 0x100000000 + 195021
    6 libSystem.B.dylib 0x00007fff8526e536 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff8526e3e9 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff852352da machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8523594d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86f96932 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff86f95dbf CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff81e8007f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff81e010a5 _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff8526e536 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff8526e3e9 thread_start + 13
    Thread 5: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff852352da machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8523594d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86f96932 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff86f95dbf CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002fa3d 0x100000000 + 195133
    5 com.apple.Safari 0x000000010002f9cd 0x100000000 + 195021
    6 libSystem.B.dylib 0x00007fff8526e536 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff8526e3e9 thread_start + 13
    Thread 6: com.apple.CFSocket.private
    0 libSystem.B.dylib 0x00007fff85278e92 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff86fb8498 __CFSocketManager + 824
    2 libSystem.B.dylib 0x00007fff8526e536 pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff8526e3e9 thread_start + 13
    Thread 7: WebCore: LocalStorage
    0 libSystem.B.dylib 0x00007fff8526ffca _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff85273de1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff81c19400 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.WebCore 0x00007fff8578e7a1 WebCore::LocalStorageThread::threadEntryPoint() + 193
    4 libSystem.B.dylib 0x00007fff8526e536 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff8526e3e9 thread_start + 13
    Thread 8: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff8526ffca _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff85273de1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff81c19400 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari 0x00000001001be849 0x100000000 + 1828937
    4 com.apple.Safari 0x000000010004750b 0x100000000 + 292107
    5 com.apple.Safari 0x0000000100047389 0x100000000 + 291721
    6 libSystem.B.dylib 0x00007fff8526e536 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff8526e3e9 thread_start + 13
    Thread 9:
    0 libSystem.B.dylib 0x00007fff8524ef8a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff8524f39c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff8524f005 start_wqthread + 13
    Thread 10:
    0 libSystem.B.dylib 0x00007fff8524e16a kevent + 10
    1 libSystem.B.dylib 0x00007fff8528cf23 mdns_querymDNSResponder + 1075
    2 libSystem.B.dylib 0x00007fff8528c1c6 mdnssearch + 1152
    3 libSystem.B.dylib 0x00007fff8528b561 mdnsaddrinfo + 754
    4 libSystem.B.dylib 0x00007fff8528a5bc search_addrinfo + 146
    5 libSystem.B.dylib 0x00007fff85289fdc si_addrinfo + 1351
    6 libSystem.B.dylib 0x00007fff852a123b siasynclaunchpad + 94
    7 libSystem.B.dylib 0x00007fff8526e536 pthreadstart + 331
    8 libSystem.B.dylib 0x00007fff8526e3e9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x00000001165ff808 rbx: 0x00000001165ff808 rcx: 0x000000011a50c540 rdx: 0x00000001165ff808
    rdi: 0x000000011b275d80 rsi: 0x00007fff5fbfe230 rbp: 0x00007fff5fbfe200 rsp: 0x00007fff5fbfe110
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x000000011c410400 r11: 0x000000000000003f
    r12: 0x00000001131933a0 r13: 0x000000011b275d80 r14: 0x0000000000000003 r15: 0x000000011a50c540
    rip: 0x0000000100172323 rfl: 0x0000000000010202 cr2: 0x0000000000000068
    Binary Images:
    0x100000000 - 0x1006b0fe7 com.apple.Safari 5.0.2 (6533.18.5) <8387031E-6288-7B8A-DF4B-59412EDE5098> /Applications/Safari.app/Contents/MacOS/Safari
    0x115ee0000 - 0x115ee0fff com.apple.JavaPluginCocoa 13.0.0 (13.0.0) <5708EC88-F87A-376F-B383-97B76AC0EC94> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x115f80000 - 0x115fa6fff GLRendererFloat ??? (???) <8256EA93-A236-8B55-F214-65896DDB7A0E> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x116093000 - 0x116097ff7 libFontRegistryUI.dylib ??? (???) <89E50DF0-2A72-B443-28AE-5F27EC7E22C7> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0x11609d000 - 0x11609efff ATSHI.dylib ??? (???) <F6C4F446-7AC4-7A17-9302-C38A016322B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1162d0000 - 0x1162d7ff7 com.apple.JavaVM 13.0.0 (13.0.0) <366B87F0-1E63-DA41-3904-3B2AB5E68771> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1169c8000 - 0x116b59fef GLEngine ??? (???) <AE898A2A-1C12-9FDB-455F-32601F030904> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x118d95000 - 0x1191b8fef libclh.dylib 3.1.1 C (3.1.1) <66455CD1-8C09-4A8F-EDA1-D4F2F30663F1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x1223f0000 - 0x122500fef libmecab.1.0.0.dylib 2.0.0 (compatibility 2.0.0) <77FB24E1-93B8-E84F-7B39-D123DECE8DBD> /usr/lib/libmecab.1.0.0.dylib
    0x200000000 - 0x200787fef com.apple.GeForceGLDriver 1.6.26 (6.2.6) <BAAEDD99-82FA-2C7F-CD66-E0977C670CC5> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <486E6C61-1197-CC7C-2197-82CE505102D7> /usr/lib/dyld
    0x7fff80003000 - 0x7fff8070006f com.apple.CoreGraphics 1.545.0 (???) <356D59D6-1DD1-8BFF-F9B3-1CE51D2F1EC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff80701000 - 0x7fff80987fff com.apple.security 6.1.1 (37594) <1B4E1ABD-1BB3-DA49-F574-0EEB23E73C6A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff809c8000 - 0x7fff80a9afe7 com.apple.CFNetwork 454.11.5 (454.11.5) <5D68598D-C138-C8B6-B6AC-B1F48B01E021> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff80a9b000 - 0x7fff80aaffff libGL.dylib ??? (???) <1EB1BD0F-C17F-55DF-B8B4-8E9CF99359D4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff80ab0000 - 0x7fff80ae9fef libcups.2.dylib 2.8.0 (compatibility 2.0.0) <561D0DCB-47AD-A12C-9066-70E4CBAD331C> /usr/lib/libcups.2.dylib
    0x7fff80ba1000 - 0x7fff80c1efef com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff80c1f000 - 0x7fff80c54fef com.apple.framework.Apple80211 6.2.3 (623.2) <8C50F34F-2981-0DF8-4423-09556C1628C0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff80d0c000 - 0x7fff80d61ff7 com.apple.framework.familycontrols 2.0.2 (2020) <A3CFF697-B9DB-A7E5-3B39-9DA9B34F0595> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff80d62000 - 0x7fff80dc4fe7 com.apple.datadetectorscore 2.0 (80.7) <98CB84E6-E085-6EEC-8428-7DA49FFF7ECC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff80f37000 - 0x7fff80fa3ff7 com.apple.CorePDF 1.3 (1.3) <FF2F3F1B-D1D6-684C-B174-6A455E04FF91> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff80fa4000 - 0x7fff81004fe7 com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff81005000 - 0x7fff81006ff7 com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff81007000 - 0x7fff8100cfff libGFXShared.dylib ??? (???) <991F8197-FD06-2AF1-F99B-E448ED4FB2AC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8100f000 - 0x7fff810befff edu.mit.Kerberos 6.5.10 (6.5.10) <6A159CD8-5C02-4528-C36F-6AFBFD61576B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff810bf000 - 0x7fff810fcfff com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff810fd000 - 0x7fff813fbfe7 com.apple.HIToolbox 1.6.4 (???) <263AD497-F4CC-9610-E7D3-B95CF6F02030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff813fc000 - 0x7fff81412fff com.apple.ImageCapture 6.0.1 (6.0.1) <09ABF2E9-D110-71A9-4A6F-8A61B683E936> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff81413000 - 0x7fff81433ff7 com.apple.DirectoryService.Framework 3.6 (621.9) <E7AFAAFA-8221-585B-85D0-171ADC490825> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff81434000 - 0x7fff81437ff7 com.apple.securityhi 4.0 (36638) <87868A3E-9341-1078-F00C-5E5972F01A4A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff81438000 - 0x7fff814b4ff7 com.apple.ISSupport 1.9.4 (52) <93A57F16-3BD5-25AD-5CFF-00007A141129> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff814b5000 - 0x7fff814cbfef libbsm.0.dylib ??? (???) <37BFB2A4-EBD3-ACBB-89F2-3C158B262A72> /usr/lib/libbsm.0.dylib
    0x7fff814cc000 - 0x7fff81510fe7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <913FFA89-0AC8-0A8D-CC2A-364CB0F303BA> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff81511000 - 0x7fff81563ff7 com.apple.HIServices 1.8.2 (???) <7C91D07D-FA20-0882-632F-0CAE4FAC2B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff815bd000 - 0x7fff815f6ff7 com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff815f7000 - 0x7fff81676fe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) <6D8AD3F7-409D-512C-C5BE-66C64D1B8F3E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff81677000 - 0x7fff816c0fef libGLU.dylib ??? (???) <CCE779A9-2467-A5AA-A558-691E43A1105F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff816c1000 - 0x7fff81a5efe7 com.apple.QuartzCore 1.6.3 (227.34) <C4AABD56-8C93-BAD0-4B27-7E9A2F0EAEE4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff81a5f000 - 0x7fff81a61fff libRadiance.dylib ??? (???) <6C974488-62D2-71BA-A45E-C764A0AF7354> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff81c07000 - 0x7fff81defff7 com.apple.JavaScriptCore 6533.18 (6533.18.1) <C6F7B4E1-1DF6-414A-5A17-B334A814B2A0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff81df0000 - 0x7fff82073ff7 com.apple.Foundation 6.6.4 (751.42) <AF1E3050-3503-8714-8274-EA6BD6BE8A22> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff82074000 - 0x7fff8207aff7 com.apple.CommerceCore 1.0 (6) <E8A1144C-5666-9840-4729-256FE69CDBDB> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8207b000 - 0x7fff8208cfff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff8208d000 - 0x7fff82091ff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff820ae000 - 0x7fff820b1ff7 libCoreVMClient.dylib ??? (???) <609598E6-195D-E5D4-3B92-AE8D9768829C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff820b2000 - 0x7fff820b3fff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff820e4000 - 0x7fff820f6fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff8214f000 - 0x7fff8217aff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff8250a000 - 0x7fff8250bfff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff8253c000 - 0x7fff825dcfff com.apple.LaunchServices 362.2 (362.2) <A8EDC37C-1D40-5ED0-49BE-90EF110A6B3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff825dd000 - 0x7fff825e1ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <63F77AC8-84CB-0C2F-8D2B-190EE5CCDB45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff825e2000 - 0x7fff82824fef com.apple.AddressBook.framework 5.0.3 (875) <78FDBCC6-8F4C-C4DF-4A60-BB038572B870> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff8283b000 - 0x7fff82882ff7 com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff82883000 - 0x7fff8288efff com.apple.corelocation 12.1 (12.1) <0B15767B-D752-7DA6-A8BB-5A1C9C39C5C8> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8288f000 - 0x7fff8288fff7 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
    0x7fff82943000 - 0x7fff82b01fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <781E7B63-2AD0-E9BA-927C-4521DB616D02> /usr/lib/libicucore.A.dylib
    0x7fff82b02000 - 0x7fff82b0efff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <D659C43E-3E1A-F45C-9EFB-AF18990A402E> /usr/lib/libbz2.1.0.dylib
    0x7fff82b0f000 - 0x7fff82b1efff libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
    0x7fff82b1f000 - 0x7fff82baefff com.apple.PDFKit 2.5.1 (2.5.1) <38BEE9BB-3716-49BA-7E14-687FE9E066EB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff82baf000 - 0x7fff82bc5fe7 com.apple.MultitouchSupport.framework 207.10 (207.10) <458F0259-6EDC-16BA-E6AA-1CEED002D188> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff82bc6000 - 0x7fff82bd5fff com.apple.opengl 1.6.12 (1.6.12) <DE3F0528-7759-CDFD-A2CF-C51D3C9C8B39> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff82bd6000 - 0x7fff82bd8fff com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff82bd9000 - 0x7fff82cfafe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff82d04000 - 0x7fff82ebbfef com.apple.ImageIO.framework 3.0.4 (3.0.4) <EE9DFBD6-6354-7C5A-F4C7-5FF782A7D992> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff82ebc000 - 0x7fff82ebcff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff82ec2000 - 0x7fff82ec8ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff82f56000 - 0x7fff82f97ff7 com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff82f98000 - 0x7fff82fe1ff7 com.apple.securityinterface 4.0.1 (40418) <E2DC796D-84EC-48F5-34A9-DF614573BE74> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff83143000 - 0x7fff83647fe7 com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff8365c000 - 0x7fff83669fe7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <397B9057-5CDF-3B19-4E61-9DFD49369375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff8366a000 - 0x7fff8372bfe7 libFontParser.dylib ??? (???) <8B12D37E-3A95-5A73-509C-3AA991E0C546> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8372c000 - 0x7fff837b1ff7 com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff837dc000 - 0x7fff8384dff7 com.apple.AppleVAFramework 4.10.12 (4.10.12) <7C05D658-4251-0B0F-6C76-9192240D0C4B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8384e000 - 0x7fff83896ff7 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
    0x7fff83897000 - 0x7fff83901fe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff83902000 - 0x7fff839e7fef com.apple.DesktopServices 1.5.9 (1.5.9) <27890B2C-0CD2-7C27-9D0C-D5952C5E8438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff839e8000 - 0x7fff83dc2fff com.apple.RawCamera.bundle 3.4.1 (546) <5662D375-35EA-30E5-BD9D-D684ABE04A1E> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff83dc3000 - 0x7fff83e12fef libTIFF.dylib ??? (???) <176B52ED-4F6C-D0C2-EABC-C032BFC3DFAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff83e13000 - 0x7fff84257fef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <E14EC4C6-B055-A4AC-B971-42AB644E4A7C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff84258000 - 0x7fff8429dfff com.apple.CoreMediaIOServices 134.0 (1160) <033C41A6-EB9B-6B3B-781A-AF001A945C7A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff8429e000 - 0x7fff842a7ff7 com.apple.DisplayServicesFW 2.3.0 (283) <5C8FEF26-FBA5-2AC6-C484-336594C637DC> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff842a8000 - 0x7fff8435dfe7 com.apple.ColorSync 4.6.3 (4.6.3) <5A7360A8-D495-1E8D-C4B4-A363AF989ADE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8435e000 - 0x7fff844dbff7 com.apple.WebKit 6533.18 (6533.18.1) <132BDBBE-D2D0-E06D-DFCD-DCD77EE7A7E0> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff844dc000 - 0x7fff844e7ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff844e8000 - 0x7fff84582fff com.apple.ApplicationServices.ATS 4.4 (???) <395849EE-244A-7323-6CBA-E71E3B722984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff84583000 - 0x7fff84589fff libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <4EE16374-A094-D542-5BC5-7E846D0CE56E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff8458a000 - 0x7fff845c5fff com.apple.AE 496.4 (496.4) <55AAD5CA-7160-7899-1C68-562ED8160DF7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff845c6000 - 0x7fff845c6ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff845c7000 - 0x7fff845c7ff7 com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff845c8000 - 0x7fff845d9fff SyndicationUI ??? (???) <38522C02-AE1B-EEA7-D74C-544D54CB6641> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff845da000 - 0x7fff84602fff com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff84603000 - 0x7fff8466bfff com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff846b7000 - 0x7fff846e9fff libTrueTypeScaler.dylib ??? (???) <B9ECE1BD-A716-9F65-6466-4444D641F584> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff846ea000 - 0x7fff84859fe7 com.apple.QTKit 7.6.6 (1756) <7E020353-5F44-1E2E-7CB3-7CFDD95F913C> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff8485a000 - 0x7fff84913fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
    0x7fff84914000 - 0x7fff849cafff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <99CB3A0F-64CF-1D16-70CD-8AED2EF06C30> /usr/lib/libobjc.A.dylib
    0x7fff84a81000 - 0x7fff84aa6ff7 com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff84ad6000 - 0x7fff84adbff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff84adc000 - 0x7fff84b0cfef com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff84b26000 - 0x7fff84b3aff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <B932F6B1-38D0-A864-1CC5-ABC77E653F91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff84b3b000 - 0x7fff84bb8fef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff84c48000 - 0x7fff84d70ff7 com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff84d95000 - 0x7fff84dcffff libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
    0x7fff84ddc000 - 0x7fff84ddffff com.apple.help 1.3.1 (41) <E72514A1-B253-4CB6-5B69-E922F119AB08> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff84de0000 - 0x7fff8501bfef com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff8501c000 - 0x7fff8509afff com.apple.CoreText 3.5.0 (???) <4D5C7932-293B-17FF-7309-B580BB1953EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff850b6000 - 0x7fff850f7fef com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff850f8000 - 0x7fff85119fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
    0x7fff8511a000 - 0x7fff85233fef libGLProgrammability.dylib ??? (???) <4F2DC233-7DD2-1204-CAA5-3E6524F0AB75> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff85234000 - 0x7fff853f5fff libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <F00A8B2F-84A0-0868-1047-3A13F9114864> /usr/lib/libSystem.B.dylib
    0x7fff85426000 - 0x7fff85435fff com.apple.NetFS 3.2.1 (3.2.1) <E5D33870-27D2-E50B-9B35-16AA50369733> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff85436000 - 0x7fff860a9ff7 com.apple.WebCore 6533.18 (6533.18.1) <E98598FB-8C73-1334-7C30-216CC49B889E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff860aa000 - 0x7fff860cdfff com.apple.opencl 12.3 (12.3) <D30A45FC-4520-45AF-3CA5-092313DB5D54> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff860ce000 - 0x7fff860ceff7 com.apple.Carbon 150 (152) <191B4F4B-8D06-796B-CA0C-782F06DD7BC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff860cf000 - 0x7fff86ac5fff com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff86ac6000 - 0x7fff86ae1ff7 com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff86b18000 - 0x7fff86bd5ff7 com.apple.CoreServices.OSServices 357 (357) <7B22626F-D544-1955-CC53-240F4CACEB4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff86c37000 - 0x7fff86c37ff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff86c38000 - 0x7fff86d4ffef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B2FB9DA8-6EC9-FFBC-C919-C022B9CBEB73> /usr/lib/libxml2.2.dylib
    0x7fff86da0000 - 0x7fff86e98ff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <44AADE50-15BC-BC6B-BEF0-5029A30766AC> /usr/lib/libiconv.2.dylib
    0x7fff86e99000 - 0x7fff86ed6ff7 libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff86f2f000 - 0x7fff86f2fff7 com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff86f30000 - 0x7fff86f49fff com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff86f4a000 - 0x7fff870c1fe7 com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff870c2000 - 0x7fff87152fff com.apple.SearchKit 1.3.0 (1.3.0) <A710A552-4343-3811-94DA-04F0E8A2AD93> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff87153000 - 0x7fff87154ff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <14F14B5E-9287-BC36-0C3F-6592E6696CD4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff87221000 - 0x7fff87252fff libGLImage.dylib ??? (???) <1A8E58CF-FA2F-14F7-A097-D34EEA8A7D03> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8745a000 - 0x7fff8750ffe7 com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff87510000 - 0x7fff87553ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <7E30B5F6-99FD-C716-8670-5DD4B4BAED72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff87554000 - 0x7fff875e0fef SecurityFoundation ??? (???) <F43FDB02-CAA5-F8FF-C8D7-6665E7403ECE> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff875e1000 - 0x7fff875ecfff com.apple.CrashReporterSupport 10.6.6 (256) <E99205C8-C119-764D-E06B-65659A35024A> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff875ef000 - 0x7fff8760cff7 libPng.dylib ??? (???) <667C3883-32A5-CCCC-8624-972B5DFD8EA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8760d000 - 0x7fff8760dff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8760e000 - 0x7fff87634fe7 libJPEG.dylib ??? (???) <DFA5DAC2-D1C6-D5ED-F95D-AC185E98B6E7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff87679000 - 0x7fff879adfff com.apple.CoreServices.CarbonCore 861.23 (861.23) <96465459-6536-3FD7-7504-B59D0390EEC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff879ae000 - 0x7fff87aecfff com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff87aed000 - 0x7fff87b3cff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <EC285E85-51EF-7977-7D7A-0FB4BC645E8B> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff87b3d000 - 0x7fff87c47ff7 com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff87c48000 - 0x7fff87d4cfff com.apple.PubSub 1.0.5 (65.20) <DA852327-4B80-B49A-666C-835410273DE3> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff87d97000 - 0x7fff87ebdfff com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <B51023BB-A5C9-3C65-268B-6B86B901BB2C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff87ebe000 - 0x7fff87ed3ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff87ed4000 - 0x7fff87edbfff com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff87fb5000 - 0x7fff87fc3ff7 libkxld.dylib ??? (???) <27713C39-0E51-8F5A-877B-C5539C96A520> /usr/lib/system/libkxld.dylib
    0x7fff87fc4000 - 0x7fff88007fef libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
    0x7fff88008000 - 0x7fff88272fef com.apple.QuartzComposer 4.2 ({156.28}) <60956AE3-2B2D-A0B7-9D92-3EE33D3A7051> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff88273000 - 0x7fff882f5fff com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff88312000 - 0x7fff8835cff7 com.apple.Metadata 10.6.3 (507.15) <5170FCE0-ED6C-2E3E-AB28-1DDE3F628FC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff88382000 - 0x7fff88b8cfe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <EEE5CE62-9155-6559-2AEA-05CED0F5B0F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff88b8d000 - 0x7fff88bbcff7 com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff88bbd000 - 0x7fff88bfefff com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff88bff000 - 0x7fff88c10ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
    0x7fff88c11000 - 0x7fff88cebff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff88df9000 - 0x7fff88e04ff7 com.apple.HelpData 2.0.4 (34) <90FDBF7E-E5BD-F880-5A75-73C20C8D1D68> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff88e05000 - 0x7fff88fe8fff libType1Scaler.dylib ??? (???) <3A1AFBA4-958E-DD07-297E-DF1FB2C96D7C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x7fff88fe9000 - 0x7fff88fefff7 IOSurface ??? (???) <EAD87C9F-BADC-7116-4ADD-0B0679459D24> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff890ca000 - 0x7fff890cffff libGIF.dylib ??? (???) <A7BF2D68-F489-720C-E5A9-DC2B24DC5A21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff890d3000 - 0x7fff8911afff com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8911b000 - 0x7fff89167fff libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <F00A8B2F-84A0-0868-1047-3A13F9114864> /usr/lib/libSystem.B.dylib
    Model: MacBook6,1, BootROM MB61.00C8.B00, 2 processors, Intel Core 2 Duo, 2.26 GHz, 2 GB, SMC 1.51f53
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545025B9SA02, 232.89 GB
    Serial ATA Device: MATSHITADVD-R UJ-898
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
    USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth Module, 0x05ac (Apple Inc.), 0x8218, 0x06130000

  • Closing resultset and statements

    Hi!
    I just got told that I do not need to close my resultsets and statements in the code, it it enough that the connection are closed. Is this correct?
    Eg:
    public method myMethod() {
    ResultSet rs = null;
    Statement sqlStmt = null;
    try {
    query = "SELECT something";
    rs = sqlStmt.executeQuery(query);
    if (rs.next())
    do something...
    // close rs
    if (rs != null) {
    rs.close();
    rs = null;
    sqlStmt.close();
    sqlStmt = null;
    } // end try
    catch (errors)...
    finally {
    if (con != null) {                   <-- Is this line enough to close everything and release connections?
    try {
    con.close();
    catch (exception)...
    } // end finally

    No, you have to explicitly close the resultset, statement, and connection in order to release resources allocated to each of them. Closing the connection will only relase the connection, not the resultset, and statement.
    you could do all of it in the finally as follows:
    finally {
         try {
              if (rs != null) {
                   rs.close();
              if (stmt != null) {
                   stmt.close();
              if (conn != null) {
                   conn.close();
         } catch (Exception e) {}
    also there is no need to set rs = null, stmt = null after the close()

  • I'm trying to print out a credit card statement from my iPad, it only prints the first page not 4pages, please help

    I'm trying to print out a credit card statement from my iPad, it only prints the first page not the 4 pages, please help

    I read your first post when I was posing a separate question on the Mac Pro board.  I now see that we may be talking about printing from an iPad with Airprint instead!!!!!  I very much suspect the print command and settings are different for Airprint but I have never used it to be able to offer concrete advice.  I think the setting choices could be different even with Airprint on the laptop and further that you may not even be using Safari but some special app???
    I've not heard or seen the term "frame" in the context of printing before except perhaps in the context of a screen shot.  Is the credit card statement a "pop-up" of some kind rather than a webpage or pdf?

Maybe you are looking for

  • My apps dance open and close on their own in my IPad 2 what can be the prob? I have already restored

    I got the charger flex or pin changed and now the apps dance on the screen, photos open and zoom in, then out, the other apps open and close. I have already restored the device with Itunes and prob is still there. What can be the problem? Any suggest

  • How do I fix my itouch if the screen is flashing?

    How do I fix my itouch if the screen is flashing purple, black, and white streaks and is unresponsiveness to the power on/off button?

  • 10.4.5 connection problems

    I recently upgraded to 10.4.5. When I used 10.3.9 my wireless connection was fast and dependable. Since my upgrade my connection and download speeds are a tenth of what they were using 10.3.9. Looking through these posts I see lots of people are expe

  • Adobe Camera Raw 6.1 RC build available on Adobe Labs

    Please check out http://labs.adobe.com/wiki/index.php/Camera_Raw_6.1. Release Notes Newly supported camera models include: Canon EOS 550D (Digital Rebel T2i/ EOS Kiss X4 Digital) Kodak Z981 Leaf Aptus-II 8 Leaf Aptus-II 10R Mamiya DM40 Olympus E-PL1

  • MPD won't play AAC files from Streamripper

    I'm having some problems playing AAC files created by streamripper.  The files play just fine in Mplayer. This is the output I get in .mpd/log: faad: error decoding AAC stream: Invalid number of channels After googling I got the impression this might