JSPs getting re-compiled on every invocation

          Hi,
          We are on weblogic 7.0, solaris 2.8, jdk1.3.1_03. Below is our scenario.
          1. Deploy a JSP say test.jsp. Start the server. Invoke test.jsp.
          The java file is generated and compiled. This is fine.
          2. Stop and Start the server again. Invoke the test.jsp again.
          We find that test.jsp was getting re-generated and compiled
          again. Between 1 and 2 I am sure I did not even do a "touch" on
          test.jsp. What could be the reason? How to avoid it?
          Shiva.
          

          Dropping it in the classpath surely would cause a problem as they would be loaded
          once by the server classloader. Anyway, i shall try with the working dir and let
          you know.
          Thanks,
          Shiva.
          "Vimala Ranganathan" <[email protected]> wrote:
          >
          >Hi,
          >When you restart the server it will recompile the jsp's when you access
          >it.
          >If you don't want this
          >
          >1) Specify a 'WorkingDir' in weblogic.xml which points to the jsp classes
          >
          >2) Precompile your jsp's and place them in the classpath or in a directory
          >which
          >you specify in 'WorkingDir' param.
          >
          >Checkout http://edocs.bea.com/wls/docs60/programming/weblogic_xml.html#1012195
          >
          >Vimala Ranganathan
          >
          >"Shiva Paranandi" <[email protected]> wrote:
          >>
          >>Hi,
          >>We are on weblogic 7.0, solaris 2.8, jdk1.3.1_03. Below is our scenario.
          >>
          >>1. Deploy a JSP say test.jsp. Start the server. Invoke test.jsp.
          >>The java file is generated and compiled. This is fine.
          >>
          >>2. Stop and Start the server again. Invoke the test.jsp again.
          >>We find that test.jsp was getting re-generated and compiled
          >>again. Between 1 and 2 I am sure I did not even do a "touch" on
          >>test.jsp. What could be the reason? How to avoid it?
          >>
          >>Shiva.
          >>
          >
          

Similar Messages

  • Pre-compiled JSPs getting re-compiled by the server

    For our project we are using wlappc to pre-compile JSPs and generate EJB classes. We are using the split directory format, so this is what the task looks like -
    <target name="appCompile" depends="init" >
    <delete dir="${ear.dist}" />
    <mkdir dir="${ear.dist}" />
    <wlpackage srcdir="${ear.src}" destdir="${ear.build}"
    toDir="${ear.dist}" />
         <wlappc source="${ear.dist}" verbose="true" classpath="${classpath}" />
    </target>
    After this, we are using wldeploy to deploy the application to another server.
    This is how the task looks like -
         <target name="beadeploy" depends="init" >
         <wldeploy action="deploy"
              source="${src.dir}/dist/myapp.ear"
              name="myApplication" remote="true"
              user="${deploy.username}" password="${deploy.password}"
              verbose="true" adminurl="t3://${deploy.host}:${deploy.port}"
              upload="true"
              debug="true" targets="${deploy.target}"/>          
         </target>
    The problem that I am facing is that, even after re-compiling the JSPs, they get compiled again by the server when accessed for the first time !
    We using Weblogic 8.1.2.0. Can you please provide a soplution for this ?

    Hi,
    The following steps help you troubleshoot why you may be having problems with JSPs recompiling:
    1. When invoking jspc, your classpath must contain the same release, service-pack, and any temporary patches as the servers you wish to deploy on. Otherwise, the Server will read the JSPs as being compiled on a different version of the WebLogic, and will recompile them all.
    2. You should invoke jspc from the root directory of your open-directory exploded) WebApp or specify -webapp) and use the -d option to deploy the generated classes to the WEB-INF/classes directory. You can then archive these JSP classes into a JAR if you wish from the WEB-INF/classes directory.
    3. The JSPs should then be deployed either individually to the WEB-INF/classes/jsp_servlet directory or in a JAR file under the WEB-INF/lib directory.
    4. One other thing that could cause JSPs to be recompiled is if the timestamp of the class is different from that of the source.
    Also, if your ant classpath is different from whatever WLS-related classpath entries you use to run WLS, this may cause problems, too.
    -- Prasanna
    Prasanna Yalam

  • How do I add an included jsp to my project and not get a compile error?

    Hi,
    I have a project with some included jsp's however if I add them to the project, when I build I get a compile error as the jsp uses variables from the calling jsp.
    Any ideas on how to get round this.
    Thanks
    DM

    There are two main ways that I deal with this problem (yeah, it sucks, but it sort of makes sense that it happens...) (I presume you're talking static include here...)
    #1 - name the included file with an extension that JDev will not try to compile (.jspf - for JSP Fragment - is common) Then it will be compiled in with the including page, but won't gag the project compilation. Advantage - it works, and you find out at compile time if you hosed up the variable reference. Disadvantage: JDev tries really, really, really hard to keep you from naming a JSP file with an extension of .jspf I normally create the .jsp file in JDev, remove it from the project, rename the file outside of JDeveloper, then add it back to the project - pain in the butt, but it works (and you probably aren't building scads of these included files...)
    #2 - add the variable to be referenced to the pageContext implicit object as an attribute in your including page (ex, <% pageContext.setAttribute("myVar", myVar); %>), then reference that attribute in your included JSP (ex, <%= pageContext.getAttribute("myVar") %>) . It will compile fine (as the compiler has no way of knowing if the pageContext attribute actually exists, it just sees that the syntax is good and motors along merrily. Advantage: don't have to have differently named JSP files (which isn't actually a big deal). Disadvantage: You hvae to add the variable to the pageContext (and you have to always add Object derivatives, as primitives won't go into a hash) and you don't find out if you screwed the variable up until runtime (when it tries the getAttribute, which could return null if you didn't properly set it to start with) vs at compile-time w/ the direct reference.
    HTH!
    Jim

  • Simple JSP will not compile

    I created a new project - No template - All Technologies, and can not get a JSP shell to compile. It's generating Error: java.lang.NullPointerException. I then added the JSP Runtime, Servlet Runtime, J2EE and Oracle 9iAS and I'm still getting the message. What is the key to make this work?
    It was working earlier today on another project until I removed the model from the application workspace. I tried a new project, but am getting the same results. I can compile a JSP on an old project, but I don't know what the difference is.

    I added a simple output statement. The error is the same.
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ page import="java.io.*" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>untitled</title>
    </head>
    <body>
    <%
    out.println("Test");
    %>
    </body>
    </html>

  • Jsp:include directives compilation errors

    hi,
    we have lot of <%@ include file="" %> files in out jsp page. when we trying to change this to <jsp:include page="" %>. we r getting lot of comilation errors
    The file size is increasing more than 64mb.
    Can u tell how to contain them within 64mb .
    thank you.

    The stack trace isn't very indicative of whatever problem you may be having.
    However, there is a major difference between <%@ include %> and <jsp:include />. The include directive <%@ include %> slams the content of the included resource into your JSP at compilation time, it is "static". No individual evaluation of the included resource is done, it becomes a part of the JSP that included it.
    <jsp:include /> is a dynamic include--it is evaluated at run-time. The content of the included resource is accessed and written to the output stream with the JSP is accessed. If the included content is a JSP, it is compiled and accessed as a separate servlet.
    So, it looks like your included JSPs do not qualify as valid, standalone JSPs. Typically, this is because of some dependency on variables or beans declared in the including JSP.
    Good luck.
    -brian

  • How to get a list of every application on my computer?

    I'm trying to figure out how to get a list of every application on my computer using applescript. I know it is possible for the system to do this, as evidenced by the dialog you get when you use the "choose application" function. Other examples are doing a spotlight search for "kind:app" or programs like Namely or QuickSilver.
    Is there a way to do this in applescript? The only solution I've come up with so far is to use the command:
    <pre>set everyapplicationaliases to choose application as alias with multiple selections allowed</pre>
    and manually select all on the resulting dialog. I can then take the results and go from there, however there are a few significant problems with this approach.
    1. It requires user interaction. (I have an idea for some future applications that could use this functionality if it can be done without user input.)
    2. It's horribly slow. As a test run I choose all the applications from the dialog, extracted some basic info and put the result on the clipboard. It took a couple of minutes to complete this relatively basic task. In comparison, running the aforementioned spotlight search took maybe ten seconds.
    Thanks in advance!
    best,
    peter

    For these specific queries my results are...
    set appList to paragraphs of (do shell script "mdfind \"(kMDItemKind = 'application'c) || (kMDItemKind = 'widget'c)\"")
    3082
    set appList to paragraphs of (do shell script "mdfind \"(kMDItemKind = 'Application'c) || (kMDItemKind = 'Widget'c) ||
    ((kMDItemContentTypeTree = 'com.apple.application') && (kMDItemContentType != com.apple.mail.emlx) && (kMDItemContentType != public.vcard))\"")
    3115
    I think I finally found some numbers that make sense!
    When I search for Kind:Application by the Command+F method in the Finder, I get a total of 2521 items, of which 2477 are "Applications" and 44 are "Other".
    (Just by eyeballing it, "Other" seems to include some Classic Apps and some .bundle files.)
    The total # found by this method (2521) plus the number of Widgets found using mdfind (318) equals the number of total number of items found by spotlight (2839).
    I also noticed that these numbers almost equal the spotlight number:
    mdfind results for kMDItemKind:
    Widgets: 318
    Applications: 1684
    Classic*: 795
    and
    Command+F "Other" items: 44
    3181684+79544 = 2841
    It may be a fluke that this is so close to the 2839 spotlight gives, or maybe there's an overlap somewhere...
    Tying this back into my initial question, it seems like the original mdfind command for Applications is probably the best answer for what I was looking for,
    since I wasn't really thinking about Classic apps and Widgets anyway.

  • How can you get a compilation album to show up as one album rather than be split up but song and artist?

    how can you get a compilation album to show up as one album rather than be split up by song and artist? I've got loads of albums on iTunes that are compliations and they are all mixed up by track/ artist. Even when you click 'show album' it still just shows the album title and then the artist in alphabetical order - so the album is replicated several times
    Can anyone tell me how to amalgamate compliation albums please?

    This web page will help you: http://samsoft.org.uk/iTunes/grouping.asp

  • I keep getting the following message every time i plug in my Iphone to Itunes on my windows vista computer  Itunes was unable to load data class information from sync services. reconnect or try again later.  any suggestions pls  Mario

    I keep getting the following message every time i plug in my Iphone3gs to Itunes on my windows vista computer
    Itunes was unable to load data class information from sync services. reconnect or try again later.
    any suggestions pls
    Mario

    The article says that I should upgrade to the latest iTunes. I am on the latest iTunes version.
    If you could read just a tiny little bit further, under the "Additional Information" section immediately after that, it says:
    If you are still experiencing this issue when syncing, or have not installed Xcode 4 and get this alert:
    Follow the troubleshooting steps in Mac OS X v10.5, v10.6: Resetting the SyncServices folder.
    If the issue is still unresolved, follow steps in Sync Services: Advanced troubleshooting for contact and calendar syncing.
    Have you tried those measures?

  • TS3297 I keep getting 1004 error message every time I download an app

    I keep getting 1004 error message every time I download an app

    Turn off your anti virus, see if that helps 
    http://support.apple.com/kb/TS3125

  • How to get wage type for every time record

    Hi Pros,
          I am using DS 0CA_TS_IS_1, it includes report time type (0REPTT), but not have wage type. in CATSDB, I fied fields for attendance/absence type and wage type. but not every time record has wage type. can you please tell me how to get wage type for every time record? what is relation between reporting time type, attendance/absence type and wage typs?

    Hello,
    Can you talk to your HR/T&E functional consultant if they populate these values in CATSDB table using standard way or if there are custom fields that are in CATSDB OR any other table which can be used to meed the requirements
    Thanks
    Abhishek Shanbhigue

  • I have a sony bravia, trying to get netflix to stream through my iPad, but only getting flashes of pic every few seconds...am i doing or not doing something?

    I have a sony Bravia, and am trying to stream netflix through my iPad. have the AV and HDMI hooked up, but only getting flashes of pic every few seconds....no picture while movie is playing on netflix...???

    The poster said: AV and HDMI
    bhazel wrote:
    what cord are you using to connect with your tv

  • I just updated to 9.0.1 and now I get 4 tabs opening every time. (Welcome to Firefox, Mozilla Firefox Start Page, Plugin Installed & The Personas Interactive Theme) I can not stop them from opening.

    I just updated to 9.0.1 and now I get 4 tabs opening every time. (Welcome to Firefox, Mozilla Firefox Start Page, Plugin Installed & The Personas Interactive Theme) I can not stop them from opening. Please advise.

    See these articles for some suggestions:
    *https://support.mozilla.org/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox
    *https://support.mozilla.org/kb/How+to+set+the+home+page - Firefox supports multiple home pages separated by '|' symbols
    *http://kb.mozillazine.org/Preferences_not_saved

  • Where can I get a compiler?

    Where can I get a compiler that I can use that is like sun's but doesnt use an IDE?

    This may duplicate some of what you've already done, if so fine. But please verify you've done exactly what is written or know why you shouldn't before proceeding. You may want to print these instructions before continuing.
    To download the current version of Java, go here:
    http://java.sun.com/j2se/1.4.1/download.html
    and click on the word DOWNLOAD in the column labeled SDK in this line:
    Windows (all languages, including English)
    After downloading, click on this page of installation instructions and read through #6:
    http://java.sun.com/j2se/1.4.1/install-windows.html
    NOTE: If you are installing on other than a standard 32-bit Windows system, go to this page
    http://java.sun.com/j2se/1.4.1/install.html and choose the installation instructions for your system.
    Install the software according to the preceeding instructions
    Below is a Helloworld program, copy and paste it into your editor and save it as "HelloWorld.java" Use capitalization, Java is case-sensitive. If you're using Notepad, quote the name when saving, otherwise Notepad adds ".txt" to the name. Go to DOS/command window and check that you've got the file where you want it and that it's named correctly.
    -------program HelloWorld.java--------
    public class HelloWorld {
    public static void main (String[] args) {
    System.out.println("Hello World!");
    In the same directory as HelloWorld.java, enter "javac" - the program should print out a list of options, if not, set your PATH - see below.
    In the same directory as HelloWorld.java, enter "javac HelloWorld.java" and the javac compiler will create HelloWorld.class. If it was successful it will not give any messages. Check that the file is created.
    In the same directory as HelloWorld.java, enter "java -classpath . HelloWorld" with the spaces and the period. The program will run.
    Here is additional information:
    The Windows path is a set of pointers that Windows uses to locate programs that you execute, like javac.exe and java.exe. This setting is explained here:
    http://java.sun.com/j2se/1.4.1/install-windows.html
    Scroll down to: 5. Update the PATH variable
    (you should have already done this as part of the Java installation)
    The CLASSPATH is another set of pointers that is used by Java to find the files that you create and want compiled and/or run. This setting is explained here:
    Setting the Classpath:
    http://java.sun.com/j2se/1.4.1/docs/tooldocs/windows/classpath.html
    [NOTE: always start your classpath with ".;" which means the current directory. See my classpath, below]
    How Classes are Found:
    http://java.sun.com/j2se/1.4.1/docs/tooldocs/findingclasses.html
    Examples:
    This is my path
    PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\BATCH;C:\J2SDK1.4.1\BIN;C:\PROGRA~1\UTILIT~1;C:\PROGRA~1\WIN98RK
    This is my classpath
    CLASSPATH=.;C:\mjava;C:\mnrx;C:\NetRexx\lib\NetRexxC.jar;C:\j2sdk1.4.1\lib\tools.jar;C:\NetRexx\NrxRedBk

  • Why do i keep getting "Message Send Failure" every time I send pictures on iMessage? All are sent to other iPhone/iPad users.

    For a few months now, I've been getting "Message Send Failure" every time I send pictures to other Apple devices (iPhones, iPads, Macs), despite the recipient receiving them. So, even though the pictures are going through, the "Message Send Failure" notice keeps showing up. I checked with other people who have Apple devices and they also encountered the same issue whenever they send pictures (usually send an email to make sure it was received).  I thought when iOS 7.1.1 came out that it would fix this issue. Has anyone else encountered the same issue? Thanks!

    I started getting the error on my iPhone 5 (iOS 7.1.x) several weeks ago - if not a month ago. Today I finally decided to run through a wholesale sign-out/sign-in process on all my devices (iMac, MacBook, iPad 1, iPad 3 and iPhone5) and it worked!
    I signed out of iMessage/Messages on all devices. I also deleted my iCloud accounts on all my devices (make sure you tell the software to keep local copies when you are prompted - relax, it all stays in the cloud, too) Then I signed back in to iMessage/Messages and then re-added iCloud accounts all around. I just sent a message with a photo attachment and did not get the "Not Delivered" message - yay!
    (FYI - even though I received the error every time I sent a message with an image attachment, the message still went through - very, very happy, though to finally get rid of the message...)

  • My desktop is getting automatically refreshed for every few mins.

    Running on 10.4.11 on Power PC G4. My desktop is getting automatically refreshed for every few mins. All files and folders in the desktop disappears and comes again. Sometimes, the application am working on quits and this refresh thing happens. And i assume it happens only when its connected with internet. Sounds like a virus kinda symptoms.
    Can someone help me investigate this and get rid of the problem?
    Thanks,
    Nags.

    Am sorry that am not a techie so not sure what part to be pasted here and so pasting everything which i see in the Finder crash log.
    ===== Display starts at offset 79397886 within file of length 79528958. ====
    ===== Use File->Reload (Cmd-R) to display more. ====
    pple.finder                   0x00008960 0x1000 + 31072
    9   com.apple.finder                   0x00004f18 0x1000 + 16152
    10  com.apple.finder                   0x00069ff0 0x1000 + 430064
    11  com.apple.finder                   0x00069e98 0x1000 + 429720
    Thread 1:
    0   libSystem.B.dylib                  0x9fe1ac8c kevent + 12
    1   com.apple.DesktopServices          0x92b0be50 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 2:
    0   libSystem.B.dylib                  0x9fe17fc8 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib                  0x9fe1caac pthread_cond_wait + 480
    2   ...ple.CoreServices.CarbonCore     0x90bc484c MPWaitOnQueue + 224
    3   com.apple.DesktopServices          0x92b0c4cc TNodeSyncTask::SyncTaskProc(void*) + 116
    4   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    5   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 3:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.unsanity.ape                   0xc00020d4 __ape_agent + 300
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 4 Crashed:
    0   <<00000000>>     0x9002705c 0 + -1878888356
    1   <<00000000>>     0x01029384 0 + 16946052
    Thread 4 crashed with PPC Thread State 64:
      srr0: 0x000000009002705c srr1: 0x000000000008d030                        vrsave: 0x0000000000000000
        cr: 0x40000002          xer: 0x0000000000000000   lr: 0x0000000001028c64  ctr: 0x000000009002704c
        r0: 0x0000000001028c64   r1: 0x0000000001017f40   r2: 0x0000000000000000   r3: 0x0000000061630000
        r4: 0x0000000001017f80   r5: 0x0000000040610000   r6: 0x000000000102b0f8   r7: 0x0000000000000000
        r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x000000000102b054
       r12: 0x000000009002704c  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
       r16: 0x0000000000000000  r17: 0x0000000000000000  r18: 0x000000000102f7fd  r19: 0x0000000000000000
       r20: 0x0000000000000000  r21: 0x0000000000000000  r22: 0x0000000000000000  r23: 0x0000000000000000
       r24: 0x0000000000000000  r25: 0x0000000000000000  r26: 0x000000000102b0f8  r27: 0x000000000102939c
       r28: 0x0000000000000000  r29: 0x0000000000000000  r30: 0x0000000000000000  r31: 0x0000000001028c2c
    Binary Images Description:
        0x1000 -   0x31dfff com.apple.finder 10.4.7    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      0x505000 -   0x5f3fff libxml2.2.dylib     /usr/lib/libxml2.2.dylib
      0x722000 -   0x724fff com.apple.textencoding.unicode 2.0    /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
      0x76d000 -   0x777fff fr.madrau.switchres.apemodule 3.8.7    /Users/maxzime/Library/Application Enhancers/SwitchResX Features.ape/Contents/MacOS/SwitchResX Features
    0x16c0000 -  0x1715fff com.DivXInc.DivXDecoder 6.0.0    /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x5938000 -  0x59bdfff net.sourceforge.webcam-osx.common 0.9.1    /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x8fe00000 - 0x8fe52fff dyld 46.16    /usr/lib/dyld
    0x90000000 - 0x90019fff com.apple.CoreVideo 1.4.2    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9002a000 - 0x9035dfff com.apple.QuickTime 7.6.4 (1327.73)    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35)    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???)    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib     /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib     /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4.1 (???)    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib     /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.19 (681.21)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.24    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.8    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib     /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770)    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib     /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib     /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 312.2    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.13    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.28 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 183.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.9    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib     /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b45fff libcups.2.dylib     /usr/lib/libcups.2.dylib
    0x91b4a000 - 0x91b68fff libJPEG.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6e000 - 0x91c25fff libJP2.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c74000 - 0x91c78fff libGIF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7a000 - 0x91ce4fff libRaw.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce9000 - 0x91d04fff libPng.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d09000 - 0x91d0cfff libRadiance.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e1b000 - 0x91e59fff libTIFF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e60000 - 0x91e60fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e62000 - 0x91f47fff com.apple.vImage 2.4    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4f000 - 0x91f6efff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fda000 - 0x92048fff libvMisc.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92053000 - 0x920e8fff libvDSP.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92102000 - 0x9268afff libBLAS.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926bd000 - 0x929e8fff libLAPACK.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a18000 - 0x92b06fff libiconv.2.dylib     /usr/lib/libiconv.2.dylib
    0x92b09000 - 0x92b91fff com.apple.DesktopServices 1.3.7    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd2000 - 0x92e05fff com.apple.Foundation 6.4.12 (567.42)    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f38000 - 0x92f56fff libGL.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f61000 - 0x92fbbfff libGLU.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd9000 - 0x92fd9fff com.apple.Carbon 10.4 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fdb000 - 0x92feffff com.apple.ImageCapture 3.0    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93007000 - 0x93017fff com.apple.speech.recognition.framework 3.4    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93023000 - 0x93038fff com.apple.securityhi 2.0 (203)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9304a000 - 0x930d1fff com.apple.ink.framework 101.2 (69)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930e5000 - 0x930f0fff com.apple.help 1.0.3 (32)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930fa000 - 0x93128fff com.apple.openscripting 1.2.7 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93142000 - 0x93152fff com.apple.print.framework.Print 5.0 (190.1)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9315e000 - 0x931c4fff com.apple.htmlrendering 1.1.2    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931f5000 - 0x93244fff com.apple.NavigationServices 3.4.4 (3.4.3)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93272000 - 0x9328ffff com.apple.audio.SoundManager 3.9    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x932a1000 - 0x932aefff com.apple.CommonPanels 1.2.2 (73)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932b7000 - 0x935c5fff com.apple.HIToolbox 1.4.10 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93715000 - 0x93721fff com.apple.opengl 1.4.7    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x937e2000 - 0x937e2fff com.apple.Cocoa 6.4 (???)    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x937e4000 - 0x93e17fff com.apple.AppKit 6.4.10 (824.48)    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x941a4000 - 0x94216fff com.apple.CoreData 91 (92.1)    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9424f000 - 0x94314fff com.apple.audio.toolbox.AudioToolbox 1.4.7    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94367000 - 0x94367fff com.apple.audio.units.AudioUnit 1.4    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94369000 - 0x94529fff com.apple.QuartzCore 1.4.12    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94573000 - 0x945b0fff libsqlite3.0.dylib     /usr/lib/libsqlite3.0.dylib
    0x945b8000 - 0x94608fff libGLImage.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94675000 - 0x946bafff com.apple.bom 8.5.1 (86.3)    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947db000 - 0x947eafff libCGATS.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947f2000 - 0x947fffff libCSync.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94845000 - 0x9485efff libRIP.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c78000 - 0x94ce9fff libstdc++.6.dylib     /usr/lib/libstdc++.6.dylib
    0x95018000 - 0x9501efff com.apple.filesync 3.0.4 (99.8)    /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x96f25000 - 0x96f44fff com.apple.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x977a1000 - 0x977aefff com.apple.agl 2.5.6 (AGL-2.5.6)    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9e9d8000 - 0x9f611fff com.apple.QuickTimeComponents.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9f785000 - 0x9f827fff com.apple.QuickTimeImporters.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9f845000 - 0x9f892fff com.apple.CoreText 1.0.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9f8bd000 - 0x9fc78fff com.apple.CoreGraphics 1.258.85 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9fd05000 - 0x9fdb6fff ATS     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9fde5000 - 0x9fdeafff libmathCommon.A.dylib     /usr/lib/system/libmathCommon.A.dylib
    0x9fdec000 - 0x9ffa8fff libSystem.B.dylib     /usr/lib/libSystem.B.dylib
    0xc0000000 - 0xc0012fff com.unsanity.ape 2.5.2    /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Host Name:      MD
    Date/Time:      2012-02-20 19:45:40.700 +0530
    OS Version:     10.4.11 (Build 8S165)
    Report Version: 4
    Command: Finder
    Path:    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent:  WindowServer [63]
    Version:        10.4.7 (10.4.7)
    Build Version:  1
    Project Name:   Finder_FE
    Source Version: 5292900
    PID:    737
    Thread: 4
    Exception:  EXC_BAD_INSTRUCTION (0x0002)
    Code[0]:    0x00000002
    Code[1]:    0x9002705c
    Thread 0:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.apple.CoreFoundation           0x907de9ac __CFRunLoopRun + 832
    3   com.apple.CoreFoundation           0x907de2b0 CFRunLoopRunSpecific + 268
    4   com.apple.HIToolbox                0x932bfb20 RunCurrentEventLoopInMode + 264
    5   com.apple.HIToolbox                0x932bf1b4 ReceiveNextEventCommon + 380
    6   com.apple.HIToolbox                0x93304348 AcquireNextEventInMode + 72
    7   com.apple.HIToolbox                0x93304138 RunApplicationEventLoop + 132
    8   com.apple.finder                   0x00008960 0x1000 + 31072
    9   com.apple.finder                   0x00004f18 0x1000 + 16152
    10  com.apple.finder                   0x00069ff0 0x1000 + 430064
    11  com.apple.finder                   0x00069e98 0x1000 + 429720
    Thread 1:
    0   libSystem.B.dylib                  0x9fe1ac8c kevent + 12
    1   com.apple.DesktopServices          0x92b0be50 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 2:
    0   libSystem.B.dylib                  0x9fe17fc8 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib                  0x9fe1caac pthread_cond_wait + 480
    2   ...ple.CoreServices.CarbonCore     0x90bc484c MPWaitOnQueue + 224
    3   com.apple.DesktopServices          0x92b0c4cc TNodeSyncTask::SyncTaskProc(void*) + 116
    4   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    5   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 3:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.unsanity.ape                   0xc00020d4 __ape_agent + 300
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 4 Crashed:
    0   <<00000000>>     0x9002705c 0 + -1878888356
    1   <<00000000>>     0x0139c384 0 + 20562820
    Thread 4 crashed with PPC Thread State 64:
      srr0: 0x000000009002705c srr1: 0x000000000008d030                        vrsave: 0x0000000000000000
        cr: 0x40000002          xer: 0x0000000000000000   lr: 0x000000000139bc64  ctr: 0x000000009002704c
        r0: 0x000000000139bc64   r1: 0x00000000013dcf40   r2: 0x0000000000000000   r3: 0x0000000061630000
        r4: 0x00000000013dcf80   r5: 0x0000000040610000   r6: 0x000000000139e0f8   r7: 0x0000000000000000
        r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x000000000139e054
       r12: 0x000000009002704c  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
       r16: 0x0000000000000000  r17: 0x0000000000000000  r18: 0x000000000139e7fd  r19: 0x0000000000000000
       r20: 0x0000000000000000  r21: 0x0000000000000000  r22: 0x0000000000000000  r23: 0x0000000000000000
       r24: 0x0000000000000000  r25: 0x0000000000000000  r26: 0x000000000139e0f8  r27: 0x000000000139c39c
       r28: 0x0000000000000000  r29: 0x0000000000000000  r30: 0x0000000000000000  r31: 0x000000000139bc2c
    Binary Images Description:
        0x1000 -   0x31dfff com.apple.finder 10.4.7    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      0x505000 -   0x5f3fff libxml2.2.dylib     /usr/lib/libxml2.2.dylib
      0x722000 -   0x724fff com.apple.textencoding.unicode 2.0    /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
      0x76d000 -   0x777fff fr.madrau.switchres.apemodule 3.8.7    /Users/maxzime/Library/Application Enhancers/SwitchResX Features.ape/Contents/MacOS/SwitchResX Features
    0x5938000 -  0x598dfff com.DivXInc.DivXDecoder 6.0.0    /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x599b000 -  0x5a20fff net.sourceforge.webcam-osx.common 0.9.1    /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x8fe00000 - 0x8fe52fff dyld 46.16    /usr/lib/dyld
    0x90000000 - 0x90019fff com.apple.CoreVideo 1.4.2    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9002a000 - 0x9035dfff com.apple.QuickTime 7.6.4 (1327.73)    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35)    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???)    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib     /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib     /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4.1 (???)    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib     /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.19 (681.21)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.24    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.8    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib     /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770)    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib     /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib     /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 312.2    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.13    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.28 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 183.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.9    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib     /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b45fff libcups.2.dylib     /usr/lib/libcups.2.dylib
    0x91b4a000 - 0x91b68fff libJPEG.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6e000 - 0x91c25fff libJP2.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c74000 - 0x91c78fff libGIF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7a000 - 0x91ce4fff libRaw.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce9000 - 0x91d04fff libPng.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d09000 - 0x91d0cfff libRadiance.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e1b000 - 0x91e59fff libTIFF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e60000 - 0x91e60fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e62000 - 0x91f47fff com.apple.vImage 2.4    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4f000 - 0x91f6efff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fda000 - 0x92048fff libvMisc.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92053000 - 0x920e8fff libvDSP.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92102000 - 0x9268afff libBLAS.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926bd000 - 0x929e8fff libLAPACK.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a18000 - 0x92b06fff libiconv.2.dylib     /usr/lib/libiconv.2.dylib
    0x92b09000 - 0x92b91fff com.apple.DesktopServices 1.3.7    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd2000 - 0x92e05fff com.apple.Foundation 6.4.12 (567.42)    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f38000 - 0x92f56fff libGL.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f61000 - 0x92fbbfff libGLU.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd9000 - 0x92fd9fff com.apple.Carbon 10.4 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fdb000 - 0x92feffff com.apple.ImageCapture 3.0    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93007000 - 0x93017fff com.apple.speech.recognition.framework 3.4    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93023000 - 0x93038fff com.apple.securityhi 2.0 (203)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9304a000 - 0x930d1fff com.apple.ink.framework 101.2 (69)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930e5000 - 0x930f0fff com.apple.help 1.0.3 (32)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930fa000 - 0x93128fff com.apple.openscripting 1.2.7 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93142000 - 0x93152fff com.apple.print.framework.Print 5.0 (190.1)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9315e000 - 0x931c4fff com.apple.htmlrendering 1.1.2    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931f5000 - 0x93244fff com.apple.NavigationServices 3.4.4 (3.4.3)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93272000 - 0x9328ffff com.apple.audio.SoundManager 3.9    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x932a1000 - 0x932aefff com.apple.CommonPanels 1.2.2 (73)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932b7000 - 0x935c5fff com.apple.HIToolbox 1.4.10 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93715000 - 0x93721fff com.apple.opengl 1.4.7    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x937e2000 - 0x937e2fff com.apple.Cocoa 6.4 (???)    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x937e4000 - 0x93e17fff com.apple.AppKit 6.4.10 (824.48)    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x941a4000 - 0x94216fff com.apple.CoreData 91 (92.1)    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9424f000 - 0x94314fff com.apple.audio.toolbox.AudioToolbox 1.4.7    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94367000 - 0x94367fff com.apple.audio.units.AudioUnit 1.4    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94369000 - 0x94529fff com.apple.QuartzCore 1.4.12    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94573000 - 0x945b0fff libsqlite3.0.dylib     /usr/lib/libsqlite3.0.dylib
    0x945b8000 - 0x94608fff libGLImage.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94675000 - 0x946bafff com.apple.bom 8.5.1 (86.3)    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947db000 - 0x947eafff libCGATS.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947f2000 - 0x947fffff libCSync.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94845000 - 0x9485efff libRIP.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c78000 - 0x94ce9fff libstdc++.6.dylib     /usr/lib/libstdc++.6.dylib
    0x95018000 - 0x9501efff com.apple.filesync 3.0.4 (99.8)    /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x96f25000 - 0x96f44fff com.apple.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x977a1000 - 0x977aefff com.apple.agl 2.5.6 (AGL-2.5.6)    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9e9d8000 - 0x9f611fff com.apple.QuickTimeComponents.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9f785000 - 0x9f827fff com.apple.QuickTimeImporters.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9f845000 - 0x9f892fff com.apple.CoreText 1.0.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9f8bd000 - 0x9fc78fff com.apple.CoreGraphics 1.258.85 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9fd05000 - 0x9fdb6fff ATS     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9fde5000 - 0x9fdeafff libmathCommon.A.dylib     /usr/lib/system/libmathCommon.A.dylib
    0x9fdec000 - 0x9ffa8fff libSystem.B.dylib     /usr/lib/libSystem.B.dylib
    0xc0000000 - 0xc0012fff com.unsanity.ape 2.5.2    /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Host Name:      MD
    Date/Time:      2012-02-20 19:47:10.700 +0530
    OS Version:     10.4.11 (Build 8S165)
    Report Version: 4
    Command: Finder
    Path:    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent:  WindowServer [63]
    Version:        10.4.7 (10.4.7)
    Build Version:  1
    Project Name:   Finder_FE
    Source Version: 5292900
    PID:    742
    Thread: 4
    Exception:  EXC_BAD_INSTRUCTION (0x0002)
    Code[0]:    0x00000002
    Code[1]:    0x9002705c
    Thread 0:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.apple.CoreFoundation           0x907de9ac __CFRunLoopRun + 832
    3   com.apple.CoreFoundation           0x907de2b0 CFRunLoopRunSpecific + 268
    4   com.apple.HIToolbox                0x932bfb20 RunCurrentEventLoopInMode + 264
    5   com.apple.HIToolbox                0x932bf1b4 ReceiveNextEventCommon + 380
    6   com.apple.HIToolbox                0x93304348 AcquireNextEventInMode + 72
    7   com.apple.HIToolbox                0x93304138 RunApplicationEventLoop + 132
    8   com.apple.finder                   0x00008960 0x1000 + 31072
    9   com.apple.finder                   0x00004f18 0x1000 + 16152
    10  com.apple.finder                   0x00069ff0 0x1000 + 430064
    11  com.apple.finder                   0x00069e98 0x1000 + 429720
    Thread 1:
    0   libSystem.B.dylib                  0x9fe1ac8c kevent + 12
    1   com.apple.DesktopServices          0x92b0be50 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 2:
    0   libSystem.B.dylib                  0x9fe17fc8 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib                  0x9fe1caac pthread_cond_wait + 480
    2   ...ple.CoreServices.CarbonCore     0x90bc484c MPWaitOnQueue + 224
    3   com.apple.DesktopServices          0x92b0c4cc TNodeSyncTask::SyncTaskProc(void*) + 116
    4   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    5   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 3:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.unsanity.ape                   0xc00020d4 __ape_agent + 300
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 4 Crashed:
    0   <<00000000>>     0x9002705c 0 + -1878888356
    1   <<00000000>>     0x01405384 0 + 20992900
    Thread 4 crashed with PPC Thread State 64:
      srr0: 0x000000009002705c srr1: 0x000000000008d030                        vrsave: 0x0000000000000000
        cr: 0x40000002          xer: 0x0000000000000000   lr: 0x0000000001404c64  ctr: 0x000000009002704c
        r0: 0x0000000001404c64   r1: 0x000000000162af40   r2: 0x0000000000000000   r3: 0x0000000061630000
        r4: 0x000000000162af80   r5: 0x0000000040610000   r6: 0x00000000014070f8   r7: 0x0000000000000000
        r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000001407054
       r12: 0x000000009002704c  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
       r16: 0x0000000000000000  r17: 0x0000000000000000  r18: 0x00000000014077fd  r19: 0x0000000000000000
       r20: 0x0000000000000000  r21: 0x0000000000000000  r22: 0x0000000000000000  r23: 0x0000000000000000
       r24: 0x0000000000000000  r25: 0x0000000000000000  r26: 0x00000000014070f8  r27: 0x000000000140539c
       r28: 0x0000000000000000  r29: 0x0000000000000000  r30: 0x0000000000000000  r31: 0x0000000001404c2c
    Binary Images Description:
        0x1000 -   0x31dfff com.apple.finder 10.4.7    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      0x505000 -   0x5f3fff libxml2.2.dylib     /usr/lib/libxml2.2.dylib
      0x722000 -   0x724fff com.apple.textencoding.unicode 2.0    /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
      0x76d000 -   0x777fff fr.madrau.switchres.apemodule 3.8.7    /Users/maxzime/Library/Application Enhancers/SwitchResX Features.ape/Contents/MacOS/SwitchResX Features
    0x16c0000 -  0x1715fff com.DivXInc.DivXDecoder 6.0.0    /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x5938000 -  0x59bdfff net.sourceforge.webcam-osx.common 0.9.1    /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x8fe00000 - 0x8fe52fff dyld 46.16    /usr/lib/dyld
    0x90000000 - 0x90019fff com.apple.CoreVideo 1.4.2    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9002a000 - 0x9035dfff com.apple.QuickTime 7.6.4 (1327.73)    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35)    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???)    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib     /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib     /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4.1 (???)    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib     /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.19 (681.21)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.24    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.8    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib     /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770)    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib     /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib     /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 312.2    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.13    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.28 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 183.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.9    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib     /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b45fff libcups.2.dylib     /usr/lib/libcups.2.dylib
    0x91b4a000 - 0x91b68fff libJPEG.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6e000 - 0x91c25fff libJP2.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c74000 - 0x91c78fff libGIF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7a000 - 0x91ce4fff libRaw.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce9000 - 0x91d04fff libPng.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d09000 - 0x91d0cfff libRadiance.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e1b000 - 0x91e59fff libTIFF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e60000 - 0x91e60fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e62000 - 0x91f47fff com.apple.vImage 2.4    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4f000 - 0x91f6efff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fda000 - 0x92048fff libvMisc.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92053000 - 0x920e8fff libvDSP.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92102000 - 0x9268afff libBLAS.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926bd000 - 0x929e8fff libLAPACK.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a18000 - 0x92b06fff libiconv.2.dylib     /usr/lib/libiconv.2.dylib
    0x92b09000 - 0x92b91fff com.apple.DesktopServices 1.3.7    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd2000 - 0x92e05fff com.apple.Foundation 6.4.12 (567.42)    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f38000 - 0x92f56fff libGL.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f61000 - 0x92fbbfff libGLU.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd9000 - 0x92fd9fff com.apple.Carbon 10.4 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fdb000 - 0x92feffff com.apple.ImageCapture 3.0    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93007000 - 0x93017fff com.apple.speech.recognition.framework 3.4    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93023000 - 0x93038fff com.apple.securityhi 2.0 (203)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9304a000 - 0x930d1fff com.apple.ink.framework 101.2 (69)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930e5000 - 0x930f0fff com.apple.help 1.0.3 (32)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930fa000 - 0x93128fff com.apple.openscripting 1.2.7 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93142000 - 0x93152fff com.apple.print.framework.Print 5.0 (190.1)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9315e000 - 0x931c4fff com.apple.htmlrendering 1.1.2    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931f5000 - 0x93244fff com.apple.NavigationServices 3.4.4 (3.4.3)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93272000 - 0x9328ffff com.apple.audio.SoundManager 3.9    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x932a1000 - 0x932aefff com.apple.CommonPanels 1.2.2 (73)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932b7000 - 0x935c5fff com.apple.HIToolbox 1.4.10 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93715000 - 0x93721fff com.apple.opengl 1.4.7    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x937e2000 - 0x937e2fff com.apple.Cocoa 6.4 (???)    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x937e4000 - 0x93e17fff com.apple.AppKit 6.4.10 (824.48)    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x941a4000 - 0x94216fff com.apple.CoreData 91 (92.1)    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9424f000 - 0x94314fff com.apple.audio.toolbox.AudioToolbox 1.4.7    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94367000 - 0x94367fff com.apple.audio.units.AudioUnit 1.4    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94369000 - 0x94529fff com.apple.QuartzCore 1.4.12    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94573000 - 0x945b0fff libsqlite3.0.dylib     /usr/lib/libsqlite3.0.dylib
    0x945b8000 - 0x94608fff libGLImage.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94675000 - 0x946bafff com.apple.bom 8.5.1 (86.3)    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947db000 - 0x947eafff libCGATS.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947f2000 - 0x947fffff libCSync.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94845000 - 0x9485efff libRIP.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c78000 - 0x94ce9fff libstdc++.6.dylib     /usr/lib/libstdc++.6.dylib
    0x95018000 - 0x9501efff com.apple.filesync 3.0.4 (99.8)    /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x96f25000 - 0x96f44fff com.apple.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x977a1000 - 0x977aefff com.apple.agl 2.5.6 (AGL-2.5.6)    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9e9d8000 - 0x9f611fff com.apple.QuickTimeComponents.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9f785000 - 0x9f827fff com.apple.QuickTimeImporters.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9f845000 - 0x9f892fff com.apple.CoreText 1.0.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9f8bd000 - 0x9fc78fff com.apple.CoreGraphics 1.258.85 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9fd05000 - 0x9fdb6fff ATS     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9fde5000 - 0x9fdeafff libmathCommon.A.dylib     /usr/lib/system/libmathCommon.A.dylib
    0x9fdec000 - 0x9ffa8fff libSystem.B.dylib     /usr/lib/libSystem.B.dylib
    0xc0000000 - 0xc0012fff com.unsanity.ape 2.5.2    /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Host Name:      MD
    Date/Time:      2012-02-20 19:48:40.699 +0530
    OS Version:     10.4.11 (Build 8S165)
    Report Version: 4
    Command: Finder
    Path:    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent:  WindowServer [63]
    Version:        10.4.7 (10.4.7)
    Build Version:  1
    Project Name:   Finder_FE
    Source Version: 5292900
    PID:    745
    Thread: 4
    Exception:  EXC_BAD_INSTRUCTION (0x0002)
    Code[0]:    0x00000002
    Code[1]:    0x9002705c
    Thread 0:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.apple.CoreFoundation           0x907de9ac __CFRunLoopRun + 832
    3   com.apple.CoreFoundation           0x907de2b0 CFRunLoopRunSpecific + 268
    4   com.apple.HIToolbox                0x932bfb20 RunCurrentEventLoopInMode + 264
    5   com.apple.HIToolbox                0x932bf1b4 ReceiveNextEventCommon + 380
    6   com.apple.HIToolbox                0x93304348 AcquireNextEventInMode + 72
    7   com.apple.HIToolbox                0x93304138 RunApplicationEventLoop + 132
    8   com.apple.finder                   0x00008960 0x1000 + 31072
    9   com.apple.finder                   0x00004f18 0x1000 + 16152
    10  com.apple.finder                   0x00069ff0 0x1000 + 430064
    11  com.apple.finder                   0x00069e98 0x1000 + 429720
    Thread 1:
    0   libSystem.B.dylib                  0x9fe1ac8c kevent + 12
    1   com.apple.DesktopServices          0x92b0be50 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 2:
    0   libSystem.B.dylib                  0x9fe17fc8 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib                  0x9fe1caac pthread_cond_wait + 480
    2   ...ple.CoreServices.CarbonCore     0x90bc484c MPWaitOnQueue + 224
    3   com.apple.DesktopServices          0x92b0c4cc TNodeSyncTask::SyncTaskProc(void*) + 116
    4   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    5   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 3:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.unsanity.ape                   0xc00020d4 __ape_agent + 300
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 4 Crashed:
    0   <<00000000>>     0x9002705c 0 + -1878888356
    1   <<00000000>>     0x01405384 0 + 20992900
    Thread 4 crashed with PPC Thread State 64:
      srr0: 0x000000009002705c srr1: 0x000000000008d030                        vrsave: 0x0000000000000000
        cr: 0x40000002          xer: 0x0000000000000000   lr: 0x0000000001404c64  ctr: 0x000000009002704c
        r0: 0x0000000001404c64   r1: 0x000000000162af40   r2: 0x0000000000000000   r3: 0x0000000061630000
        r4: 0x000000000162af80   r5: 0x0000000040610000   r6: 0x00000000014070f8   r7: 0x0000000000000000
        r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000001407054
       r12: 0x000000009002704c  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
       r16: 0x0000000000000000  r17: 0x0000000000000000  r18: 0x00000000014077fd  r19: 0x0000000000000000
       r20: 0x0000000000000000  r21: 0x0000000000000000  r22: 0x0000000000000000  r23: 0x0000000000000000
       r24: 0x0000000000000000  r25: 0x0000000000000000  r26: 0x00000000014070f8  r27: 0x000000000140539c
       r28: 0x0000000000000000  r29: 0x0000000000000000  r30: 0x0000000000000000  r31: 0x00000

Maybe you are looking for

  • Is there any way to print a Pages document that includes the on screen highlights?

    Hello, For my studies I have to read and then highlight a number of online documents. By mistake I opened one in pages instead of PDF form and highlighted it that way. Is there any way in which I can print out the document with the on screen highligh

  • Firewire - Thunderbolt - EDIROL FA101 issue

    I just received my brand new custom ordered iMac, but it has only thunderbolt ports. My whole home studio system is based on my EDIROL FA101 Firewire audio interface that worked like a charm through the Firewire port on the older iMac. Now I had to b

  • HR- FI issue

    Hi Everyone I need a help in FI issue The probelm is that "Error while posting balance field , balance field profit centre line item 001 not filled ( while posting to accounting) History of the problem : SAP Standard varient : with the sap standard v

  • Empty files when I publish

    When I publish photos from one of my publish services, sometimes they export as 0 kb files and sometimes not. It's pretty random because when I delete the empty files and republish them, some files turn out ok, but other ones are still empty. Did any

  • Problem starting up mini SAP

    Hello, I have installed mini SAP 4.6D on my laptop which uses Windows XP als the OS. Now I want to start the SAP Gui and I get the following error message. Please help me out. TCP/IP ERROR detected by Sapgui. Time Release      46D Component    NI(Net