Socket stays open after java process exits, Runtime.exec()

I have a program that does the following:
opens a socket
Does a runtime.exec() of another program
then the main program exits.
what i am seeing is, as long as the exec'd program is running, the socket remains open.
What can i do to get the socket to close?
I even tried to explicity call close() on it, and that didn't work. Any ideas would be great.
I am running this on WindowsXP using netstat to monitor the port utilization.
here is some sample code
import java.io.*;
import java.net.*;
public class ForkTest
    public static void main(String[] args)
        try
            DatagramSocket s = new DatagramSocket(2006);
            Process p = Runtime.getRuntime().exec("notepad.exe");
            System.out.println("Press any key to exit");
            System.in.read();
        catch (IOException ex)
            ex.printStackTrace();
}

java.net.BindException: Address already in use: Cannot bind
        at java.net.PlainDatagramSocketImpl.bind(Native Method)
        at java.net.DatagramSocket.bind(DatagramSocket.java:368)
        at java.net.DatagramSocket.<init>(DatagramSocket.java:210)
        at java.net.DatagramSocket.<init>(DatagramSocket.java:261)
        at java.net.DatagramSocket.<init>(DatagramSocket.java:234)
        at ForkTest.main(ForkTest.java:11)

Similar Messages

  • Spawn a java process using runtime.exec() method

    Hi,
    This is my first post in this forum. I have a small problem. I am trying to spawn a java process using Runtime.getRuntime().exec() method in Solaris. However, there is no result in this check the follwoing program.
    /* Program Starts here */
    import java.io.*;
    public class Test {
    public static void main(String args[]) {
    String cmd[] = {"java", "-version"};
    Runtime runtime = Runtime.getRuntime();
    try{
    Process proc = runtime.exec(cmd);
    }catch(Exception ioException){
    ioException.printStackTrace();
    /* Program ends here */
    There is neither any exception nor any result.
    The result I am expecting is it should print the following:
    java version "1.4.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92)
    Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode)
    Please help me out in this regard
    Thanks in advance
    Chotu.

    Yes your right. It is proc.getInputStream() or proc.getErrorStream(). That is what I get for trying to use my memory instead of looking it up. Though hopefully the OP would have seen the return type of the other methods and figured it out.

  • Start a new java process using Runtime.Exec() seems to ignore the -Xmx

    I am working with a process that requires a minimum of 1.5 GB to run and works better if more is available.
    So I am determining how much memory is available at startup and restarting the jre by calling
    Runtime.exec("java -Dcom.sun.management.jmxremote=true -Xmx1500M -jar XXX.jar")
    which reinvokes the same process with a new max memory size.
    The initial call to the process is
    java -Dcom.sun.management.jmxremote=true -Xmx3500M -jar XXX.jar
    The initial call returns 3262251008 from Runtime.maxmemory()
    When reinvoked through Runtime.exec() as above
    Runtime.maxmemory() still returns 3262251008
    Is there a way to separate the new process from the size specified by the parent process?

    That is strange. Here is a program I wrote which calls itself recursively.
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.List;
    import java.util.ArrayList;
    import static java.util.Arrays.asList;
    public class MemorySize {
        public static void main(String... args) throws IOException, InterruptedException {
            System.out.println("Maximum memory size= "+Runtime.getRuntime().maxMemory());
            if (args.length == 0) return;
            List<String> cmd = new ArrayList<String>();
            cmd.add("java");
            cmd.add("-cp");
            cmd.add(System.getProperty("java.class.path"));
            cmd.add("-Xmx"+args[0]+'m');
            cmd.add("MemorySize");
            cmd.addAll(asList(args).subList(1,args.length));
            Process p = new ProcessBuilder(cmd).start();
            readin(p.getErrorStream());
            readin(p.getInputStream());
        private static void readin(final InputStream in) {
            new Thread(new Runnable() {
                public void run() {
                    try {
                        byte[] bytes = new byte[1024];
                        int len;
                        while((len = in.read(bytes))>0)
                            System.out.write(bytes, 0, len);
                        in.close();
                    } catch (IOException e) {
                        e.printStackTrace();
            }).start();
    }If you run this with the args 128 96 33 222 it prints out
    Maximum memory size= 66650112
    Maximum memory size= 133234688
    Maximum memory size= 99942400
    Maximum memory size= 35389440
    Maximum memory size= 231014400

  • Sockets remaining open after connection failure

    Hi - I have a multithreaded application that runs as a daemon (always up) and uses OCI (10.2.0, 64-bit client). If a database connection or query fails for any reason, it is coded to keep on retrying on a set schedule until it succeeds. The application runs on RHEL 4 (64-bit) and is compiled with g++ 3.4.6. (It's nominally C++, but is really what I call "C with objects" as it doesn't use a lot of the standard C++-isms, though there are objects -- the OCI code in question is in a C++ object wrapper that I wrote.)
    Anyway, about 5 days ago, the database where most of the queries are run went down (it's a 10g server; I don't remember the exact version, but since it's down, I'm not sure it matters), and it has not come back up, although the hosts it runs on are up. Meanwhile, my application kept failing to connect and retrying, and the number of queries that this was happening to kept on growing as new ones are added every day. Unknown to me, the failed connection attempts were leaving open TCP sockets to the database that was down, until eventually the maximum open files on the system was exceeded and I was forced to reboot. Twice. (It happened again the next day.)
    From what I can tell, I am properly dropping the handles and such when a connection fails, so why are the sockets staying open? Is there anything that can be done to force the socket to close after a failed connect? This morning I changed all the queries to use a different database (that's actually up), but according to lsof, there are still 56 open sockets to the old (non-working) database, even though none of my program threads are actively trying to connect there anymore.
    The sockets do close, by the way, if the application is stopped and restarted. But they remain open as long as the instance that created them is still running. (I added a periodic restart to clean things up, but I'd really like to fix the problem instead of using a stopgap like this!)
    Sample code is below. This first bit is what is used to connect and log in. (Note that I have this mutex-locked -- I know OCI is supposed to be thread-safe if you use the OCI_THREADED attribute, but I've been having so many issues that I thought it was safer.)
    if (check_err(OCIEnvCreate(&env, (OCI_THREADED), (void *) 0, 0, 0, 0, (size_t) 0, (void **) 0)) != 0)
    fprintf(stderr, "Error allocating OCI environment handle\n");
    return;
    // Allocate error handle.
    if (check_err(OCIHandleAlloc((void *) env, (void **) &err, OCI_HTYPE_ERROR, 0, (void **) 0)) != 0)
    fprintf(stderr, "Error creating OCI error handle.\n");
    return;
    // Allocate server handle.
    if (check_err(OCIHandleAlloc((void *) env, (void **) &server, OCI_HTYPE_SERVER, 0, (void **) 0)) != 0)
    fprintf(stderr, "Error allocating OCI server handle.\n");
    return;
    // Allocate service handle.
    if (check_err(OCIHandleAlloc((void *) env, (void **) &svc, OCI_HTYPE_SVCCTX, 0, (void **) 0)) != 0)
    fprintf(stderr, "Error allocating OCI service handle.\n");
    return;
    [Note: these are snippets from two different functions; this is a C++ wrapper that uses OCI, so the above code is in the database object constructor, and below is a separate login function.]
    // Attach to server.
    retcode = OCIServerAttach(server, err, (text *) curDS, strlen(curDS), OCI_DEFAULT);
    if (check_err(retcode))
    fprintf(stderr, "Error attaching to Oracle server.\n");
    return(retcode);
    // Set server attribute in service handle.
    retcode = OCIAttrSet((void *) svc, OCI_HTYPE_SVCCTX, (void *) server, 0, OCI_ATTR_SERVER, err);
    if (check_err(retcode))
    fprintf(stderr, "Error setting OCI server attribute.\n");
    return(retcode);
    // Allocate session handle.
    retcode = OCIHandleAlloc((void *) env, (void **) &sess, OCI_HTYPE_SESSION, 0, (void **) 0);
    if (check_err(retcode))
    fprintf(stderr, "Error allocating OCI session handle.\n");
    return(retcode);
    // Set username attribute in session handle.
    retcode = OCIAttrSet((void *) sess, OCI_HTYPE_SESSION, (void *) curUser, strlen(curUser), OCI_ATTR_USERNAME, err);
    if (check_err(retcode))
    fprintf(stderr, "Error setting OCI username.\n");
    return(retcode);
    // Set password attribute in session handle.
    retcode = OCIAttrSet((void *) sess, OCI_HTYPE_SESSION, (void *) curPass, strlen(curPass), OCI_ATTR_PASSWORD, err);
    if (check_err(retcode))
    fprintf(stderr, "Error setting OCI password.\n");
    return(retcode);
    // Start session.
    retcode = OCISessionBegin(svc, err, sess, OCI_CRED_RDBMS, OCI_DEFAULT);
    if (check_err(retcode) != 0)
    return(retcode);
    // Set session attribute in service handle
    retcode = OCIAttrSet((void *) svc, OCI_HTYPE_SVCCTX, (void *) sess, 0, OCI_ATTR_SESSION, err);
    if (check_err(retcode))
    fprintf(stderr, "Error setting OCI session attribute.\n");
    return(retcode);
    If any of the above calls returns an error, the next call is to the database object destructor (also mutexed), which looks like this:
    if (connected && svc && err && sess && check_err(OCISessionEnd(svc, err, sess, OCI_DEFAULT)))
    fprintf(stderr, "Oracle - Error ending session\n");
    if (connected && server && err && check_err(OCIServerDetach(server, err, OCI_DEFAULT)))
    fprintf(stderr, "Oracle - Error detaching from server\n");
    if (connected && server && check_err(OCIHandleFree((void *) server, OCI_HTYPE_SERVER)))
    fprintf(stderr, "Oracle - Error freeing server handle\n");
    if (connected && svc && check_err(OCIHandleFree((void *) svc, OCI_HTYPE_SVCCTX)))
    fprintf(stderr, "Oracle - Error freeing service handle\n");
    if (connected && err && check_err(OCIHandleFree((void *) err, OCI_HTYPE_ERROR)))
    fprintf(stderr, "Oracle - Error freeing error handle\n");
    if (connected && env && check_err(OCIHandleFree((void *) env, OCI_HTYPE_ENV)))
    fprintf(stderr, "Oracle - Error freeing environment handle\n");
    Anyone else had this happen? Any insights/help would be greatly appreciated!
    Oh, one more note: though the application is multithreaded, none of the database objects or connections is shared -- each thread makes its own connections and maintains database objects separately. I added the mutex locks because Helgrind was reporting race conditions on handle allocations and deallocations.
    Thanks,
    --Tina                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hmm, I believe I did have an OCIHandleFree on the session handle in an earlier version of the code. I can't remember why I took it out, but I do remember that there was a reason -- it was causing a problem. (Yeah, I know, vague enough for ya?) Anyway, the OCI documentation said that when you call OCIHandleFree on the environment handle, any child handles would be implicitly freed, so I assumed it wouldn't be a problem. Still, I'll try putting it back and see what happens. Thanks.
    Oh, and to answer your question (about netstat), it said the processes were ESTABLISHED. But the Oracle server was down (although the hosts it resided on were up). The connection attempt failed with the error message:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Message was edited by:
    user613364

  • Stop bookmark menus from staying open after I move my mouse

    I just updated to FF 6.0. My bookmarks menu has multiple folders containing additional bookmarks. When I open one of the bookmarks folders (sub-menus) the sub-menu stays open after I move my mouse. In the old version the menu closed when I moved my mouse. This is a problem because when it is open it obscures the menu below. This means that I have to close everything each time I want to move to a different folder. It also means that I MUST make a direct hit on the folder I want to open - pain in the 'you-know-what'.
    I can't find anyway to turn this feature off - and if I can't I will have to uninstall this version.

    Currently 664 [exported from FFox Bookmarks to URL Manager for the count] abut never more than 4000: beyond 4000 bookmarks and FFoxs' Bookmarks respond slowly even without Sync active. I currently have 5 computer with FFox set up to use Sync. While I don't expect FFox to manage a huge collection of URLs, I would be nice to be able to access a Bookmark collection of 6000 to 8000 without noticeable delay. It's a simple text file after all, and as I'm only effecting one URL, why so long to update?
    fyi: URL Manager tells me that I've amassed about 300,000 bookmarks, some from the late 90's which I still use for research.

  • Make terminator stay open after command completion? [SOLVED]

    I'd like to execute a command into terminator from my Openbox menu and have it stay open after the command completes.
    I know urxvt does this with a "-hold" option but I'd like to just use one terminal instead of two or more for different things.
    Last edited by jfb3 (2011-09-12 11:11:14)

    Thanks.
    I also found on the crunchbag forums that you can use a --profile flag (not mentioned in the terminator man page </sigh>)
    terminator --profile stayopen --geometry 990x500+0+20 --command '{my command}'

  • How to capture output of java files using Runtime.exec

    Hi guys,
    I'm trying to capture output of java files using Runtime.exec but I don't know how. I keep receiving error message "java.lang.NoClassDefFoundError:" but I don't know how to :(
    import java.io.*;
    public class CmdExec {
      public CmdExec() {
      public static void main(String argv[]){
         try {
         String line;
         Runtime rt = Runtime.getRuntime();
         String[] cmd = new String[2];
         cmd[0] = "javac";
         cmd[1] = "I:\\My Documents\\My file\\CSM\\CSM00\\SmartQ\\src\\E.java";
         Process proc = rt.exec(cmd);
         cmd = new String[2];
         cmd[0] = "javac";
         cmd[1] = "I:\\My Documents\\My file\\CSM\\CSM00\\SmartQ\\src\\E";
         proc = rt.exec(cmd);
         //BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
         BufferedReader input = new BufferedReader(new InputStreamReader(proc.getErrorStream()));
         while ((line = input.readLine()) != null) {
            System.out.println(line);
         input.close();
        catch (Exception err) {
         err.printStackTrace();
    public class E {
        public static void main(String[] args) {
            System.out.println("hello world!!!!");
    }Please help :)

    Javapedia: Classpath
    How Classes are Found
    Setting the class path (Windows)
    Setting the class path (Solaris/Linux)
    Understanding the Java ClassLoader
    java -cp .;<any other directories or jars> YourClassNameYou get a NoClassDefFoundError message because the JVM (Java Virtual Machine) can't find your class. The way to remedy this is to ensure that your class is included in the classpath. The example assumes that you are in the same directory as the class you're trying to run.
    javac -classpath .;<any additional jar files or directories> YourClassName.javaYou get a "cannot resolve symbol" message because the compiler can't find your class. The way to remedy this is to ensure that your class is included in the classpath. The example assumes that you are in the same directory as the class you're trying to run.

  • Interact with extern process by Runtime.exec()

    Hi,
    I want interact with a extern process by Runtime.exec(), but I don't Know the way for introduce the params required for the extern process.
    So, Is posible, interact with the extern process from Java?
    Thanks

    Exactly, I would like to know how exec can pass a PIN
    number when the proccess already has been launched. Sounds like you're doing it through the process' stdin. Read that article I linked.
    You'll have to call Process.getOutputStream() or whatever that method is. To you it's an OutputStream, to the process, it's input. You'll write the stuff to that stream that you'd type to the command line. If you want to get that from the user interactively, you'll do it like you would any interactive user input in any Java program--get it by reading System.in or from some GUI element, and then take that and write it to the process' stream.
    If you're not familiar with I/O in Java, look here:
    http://java.sun.com/docs/books/tutorial/essential/io/index.html

  • Can we run a java application using Runtime.exec()?

    Can we run a java application using Runtime.exec()?
    If yes what should i use "java" or "javaw", and which way?
    r.exec("java","xyz.class");

    The best way to run the java application would be to dynamiically load it within the same JVM. Look thru the class "ClassLoader" and the "Class", "Method" etc...clases.
    The problem with exec is that it starts another JVM and moreover you dont have the interface where you can throw the Output directly.(indirectly it can be done by openong InputStreams bala blah............). I found this convenient. I am attaching part of my code for easy refernce.
    HIH
    ClassLoader cl = null;
    Class c = null;
    Class cArr[] ;
    Method md = null;
    Object mArr[];
    cl = ClassLoader.getSystemClassLoader();
    try{
         c = cl.loadClass(progName.substring(0,progName.indexOf(".class")) );
    } catch(ClassNotFoundException e) {
    System.out.println(e);
         cArr = new Class[1] ;
         try{
         cArr[0] = Class.forName("java.lang.Object");
         } catch(ClassNotFoundException e) {
         System.out.println(e);
         mArr = new Object[1];
         try{
         md = c.getMethod("processPkt", cArr);
         } catch(NoSuchMethodException e) {
         System.out.println(e);
         } catch(SecurityException e) {
         System.out.println(e);
    try {            
    processedPkt = md.invoke( null, mArr) ;
    } catch(IllegalAccessException e) {
              System.out.println(e);
    } catch(IllegalArgumentException e) {
              System.out.println(e);
    }catch(InvocationTargetException e) {
              System.out.println(e);
    }catch(NullPointerException e) {
              System.out.println(e);
    }catch(ExceptionInInitializerError e) {
              System.out.println(e);
    }

  • Java GUI and runtime().exec help

    I have been working on a GUI that does an assortment of tasks. The final and last task is to make copies of a 3dModel conversion program and a script file that is required to make the converter run and convert. The converter and the script file are moved to a user specified directory. The user specified directory contains all of the models that will be converted. The problem is, I can't get the GUI to boot the converter with the script file. To make the converter work, you need to pass two window's cmd commands but the commands need to occur from the same directory as the converter and script file. This is what I have tried to do:
    String[] commands = new String[]{"cmd ",
    "/c ",
    "cd ",
    smdDirectory.getPath(),
    "skmodel ",
    "model_definition.txt "};
    try{               
    Process child = Runtime.getRuntime().exec(commands);}
    catch(IOException e){}The files have all ready copied to the correct directory. All I need is for the GUI to execute the "skmodel model_definition.txt" commands in the correct directory. What am I doing wrong?
    Thanks for the help in advance.

    String[] commands = new String[]{"cmd ",
    "/c ",
    "skmodel ",
    "model_definition.txt "};
    try{               
    Process child = Runtime.getRuntime().exec(commands, null, smdDirectory.getPath());}
    catch(IOException e){}I will try that and see if I get the desired results.
    EDIT:
    I got it to make. Here is the code.
    String[] commands = new String[]{"cmd ", "/c ", "skmodel",     "model_definition.txt "};
         try{
              Runtime runtime = Runtime.getRuntime();               
              Process child = runtime.exec(commands, null, smdDirectory);
    }Edited by: Euphoria on Sep 28, 2008 9:48 AM

  • Server Socket Leaks on stopping Java Processes

    I have a strange problem on Windows 2000 Advanced Server with JDK1.5.10. Our application runs on a Tomcat 5.5.12 and is opening 2 server sockets along with Tomcat's own 8080 port. Also we deployed a stand alone application that also opens a server socket. Whenever we stop Tomcat service or our Application service (Windows services) these server sockets are not getting closed. If we use "netstat" to check if any sockets are still open it is NOT showing any sockets.
    But when we use "netstat -a" command it is showing entries like
    TCP    10.40.1.162:8080    10.40.1.162:0  LISTENING
    TCP    10.40.1.162:22222    10.40.1.162:0  LISTENING
    TCP    10.40.1.162:33334    10.40.1.162:0  LISTENINGHere 8080 (tomcat), 22222, 33334 are the ports on which the server sockets are opened earlier. We check in Task Manager but there is no java process running. If we try to restart the same java process it is throwing JVM_Bind exception. If we reboot the box the we are able to restart the services. Similar behaviour we observed sometimes on Linux also. I guess some settings in the OS we need to tweak to fix this issue. Can somebody please help me what are those settings for Windows and Linux platforms which reclaims unused server sockets faster??

    The state is LISTENING not TIME_WAIT. There is a cleanly closure of sockets provided in the code. It happens to Tomcat's own ports also. If you telnet to these sockets from another box, it is connecting and staying instead of "Connection Failed" error. But in Task Manager or "Services.msc" Console no service or process running! One more observation is that there is heavy load of threads and a huge number of clients socktets were interacting with these sockets just before shutdown.

  • IPhoto will not stay open after most recent upload! Help!

    Please help me out here. I am running on Mac 10.5.8 with a version of iPhoto, 8.1.2.
    After my most recent picture upload from my iphone my iphoto will NOT stay open. It keeps shutting down, and I can't even send the report to apple. It says the report failed. Below is the report I am receiving.
    I cannot lose all of my pictures, so please help me. I will appreciate any and all help that you can give.
    Thank you!!
    Process:         iPhoto [640]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         8.1.2 (8.1.2)
    Build Info:      iPhotoProject-4240000~8
    Code Type:       X86 (Native)
    Parent Process:  launchd [99]
    Interval Since Last Report:          16311 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  28 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2012-04-01 20:11:08.065 -0400
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  21150C9B-FA4F-46CE-9CE0-85A8A44FDCDC
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  14
    Thread 0:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.HIToolbox                     0x96fc52ac RunCurrentEventLoopInMode + 283
    5   com.apple.HIToolbox                     0x96fc50c5 ReceiveNextEventCommon + 374
    6   com.apple.HIToolbox                     0x96fc4f39 BlockUntilNextEventMatchingListInMode + 106
    7   com.apple.AppKit                        0x93b386d5 _DPSNextEvent + 657
    8   com.apple.AppKit                        0x93b37f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9   com.apple.AppKit                        0x93b30f9f -[NSApplication run] + 795
    10  com.apple.AppKit                        0x93afe1d8 NSApplicationMain + 574
    11  com.apple.iPhoto                        0x00124b80 0x1000 + 1194880
    12  com.apple.iPhoto                        0x00003172 0x1000 + 8562
    Thread 1:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95a81dbc -[NSCondition waitUntilDate:] + 236
    4   com.apple.Foundation                    0x95a81bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5   com.apple.Foundation                    0x95a81b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01364201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore                     0x01352363 -[XTThread run:] + 387
    8   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    9   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    10  libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    11  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95a81dbc -[NSCondition waitUntilDate:] + 236
    4   com.apple.Foundation                    0x95a81bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5   com.apple.Foundation                    0x95a81b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01364201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore                     0x01352363 -[XTThread run:] + 387
    8   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    9   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    10  libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    11  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x95a703d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5   com.apple.proxtcore                     0x013538a5 -[XTRunLoopThread run:] + 421
    6   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    7   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    8   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    9   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.iPhoto                        0x00506841 0x1000 + 5265473
    3   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    4   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    5   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    6   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x95434d58 ***::TCMalloc_PageHeap::scavengerThread() + 824
    3   com.apple.JavaScriptCore                0x95434d8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork                     0x96e0818c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    6   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x952896b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x91f7277c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x97ebe20a accept$UNIX2003 + 10
    1   com.apple.iPhoto                        0x002d2dd3 0x1000 + 2956755
    2   com.apple.iPhoto                        0x002d2e34 0x1000 + 2956852
    3   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    4   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x97ea160a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    2   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.QuartzCore                    0x94acca09 fe_fragment_thread + 54
    3   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    4   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x95a9f520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    8   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.Foundation                    0x95a83932 -[NSCondition wait] + 210
    3   com.apple.iPhoto                        0x0051242a 0x1000 + 5313578
    4   com.apple.iPhoto                        0x00511c48 0x1000 + 5311560
    5   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    8   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.Foundation                    0x95a83932 -[NSCondition wait] + 210
    3   com.apple.iPhoto                        0x0051242a 0x1000 + 5313578
    4   com.apple.iPhoto                        0x00511c48 0x1000 + 5311560
    5   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    8   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 14 Crashed:
    0   libSystem.B.dylib                       0xffff07c2 __memcpy + 34 (cpu_capabilities.h:246)
    1   libsqlite3.0.dylib                      0x96c2eec0 fillInCell + 384
    2   libsqlite3.0.dylib                      0x96c30ef7 balance_nonroot + 7351
    3   libsqlite3.0.dylib                      0x96c376ab sqlite3BtreeInsert + 763
    4   libsqlite3.0.dylib                      0x96c7cf23 sqlite3VdbeExec + 8835
    5   libsqlite3.0.dylib                      0x96c86ea2 sqlite3Step + 386
    6   libsqlite3.0.dylib                      0x96c8755d sqlite3_step + 29
    7   com.apple.iPhoto                        0x006af891 0x1000 + 7006353
    8   com.apple.iPhoto                        0x006e165f 0x1000 + 7210591
    9   com.apple.iPhoto                        0x006a07b2 0x1000 + 6944690
    10  com.apple.iPhoto                        0x006a08be 0x1000 + 6944958
    11  com.apple.iPhoto                        0x006c21a1 0x1000 + 7082401
    12  com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    13  com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    14  libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    15  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x97b2ac62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore          0x97b2aa42 TSWaitOnSemaphoreCommon + 422
    5   ...ickTimeComponents.component          0x90cf8c8e ReadSchedulerThreadEntryPoint + 4728
    6   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    7   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x97b2ac62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore          0x97b2aa42 TSWaitOnSemaphoreCommon + 422
    5   ...ple.CoreServices.CarbonCore          0x97b53138 AIOFileThread(void*) + 1056
    6   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    7   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x97e521ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x97ec9449 pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x913e6e67 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x97e75e7a read$UNIX2003 + 10
    1   com.apple.Foundation                    0x95a44f16 _NSReadBytesFromFile + 86
    2   com.apple.Foundation                    0x95a59413 -[NSData(NSData) initWithContentsOfFile:] + 83
    3   com.apple.iPhoto                        0x00303e82 0x1000 + 3157634
    4   com.apple.iPhoto                        0x0030520a 0x1000 + 3162634
    5   com.apple.iPhoto                        0x00064bf7 0x1000 + 408567
    6   com.apple.iPhoto                        0x002196a6 0x1000 + 2197158
    7   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    8   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    9   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    10  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.iPhoto                        0x00506841 0x1000 + 5265473
    3   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    4   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    5   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    6   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.ColorSync                     0x946b13c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3   com.apple.ColorSync                     0x946c3d4e CMMConvTask(void*) + 54
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 14 crashed with X86 Thread State (32-bit):
      eax: 0xffff07a0  ebx: 0x96c2f260  ecx: 0x00000001  edx: 0x00000004
      edi: 0x026713fd  esi: 0x00000000  ebp: 0xb07dbdd8  esp: 0xb07dbdd0
       ss: 0x0000001f  efl: 0x00010202  eip: 0xffff07c2   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -   0x9fbfee  com.apple.iPhoto 8.1.2 (8.1.2) <436e886ce26d2c7d9745252829318efe> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xb31000 -   0xbfafe5  com.apple.DiscRecording 4.0.7 (4070.4.1) <7c105f35c674aad3a476f8959d3f3ebb> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
      0xc65000 -   0xc90ff7  com.apple.DiscRecordingUI 4.0.7 (4070.4.1) <8382640e9ca4f6c5e087efb1c715db57> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
      0xcae000 -   0xcb0fff  com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
      0xcb7000 -   0xcc1fff  com.apple.UpgradeChecker 1.0 (1.1) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
      0xccb000 -   0xd67ffc  com.apple.MobileMe 8 (1.0) <47df6c2078c51aa21d64274eae522d93> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0xdc9000 -  0x1022ffb  com.apple.MessageFramework 3.6 (936) <d7a6e5f6721cbab99ed3e83137dba11a> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x1179000 -  0x1179fff +eOkaoCom.dylib ??? (???) <17adb0f4bf830b0b5293f843f1724644> /Applications/iPhoto.app/Contents/MacOS/eOkaoCom.dylib
    0x117d000 -  0x11b0fe7 +eOkaoDt.dylib ??? (???) <673bd0c5fac4abb7b55efd8a75e4759d> /Applications/iPhoto.app/Contents/MacOS/eOkaoDt.dylib
    0x11b6000 -  0x131cfff +eOkaoFr.dylib ??? (???) <684982fe55e4174d9cf3da4319bd57f9> /Applications/iPhoto.app/Contents/MacOS/eOkaoFr.dylib
    0x1320000 -  0x1344ff2 +eOkaoPt.dylib ??? (???) <e2ed8de87a2d83093cb52e87f135a8a8> /Applications/iPhoto.app/Contents/MacOS/eOkaoPt.dylib
    0x134b000 -  0x1392ff7  com.apple.proxtcore 1.0.0 (1.0.0) /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x13d6000 -  0x13d6ff8  com.apple.iLifeSlideshow 1.1 (452) <65fe31a8c4c320699b2ccb00bb168cfe> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
    0x13da000 -  0x145afef  com.apple.NetServices.NetServices 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x14bc000 -  0x14bcffd  com.apple.AppleAppSupport 1.5 (1.5) /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x14c0000 -  0x14e4fe7  com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <623d0f3f1b3fb665dc9cb196c482510a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x14f9000 -  0x1521fff  com.apple.iLifeSlideshowCore 1.1 (134) <6b3aa83c61989c497afb619e5dc2c756> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0x153b000 -  0x164bfe3  com.apple.iLifeSlideshowProducer 1.1 (382) <bbc8afe495a64993c10cff8aac006928> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0x16be000 -  0x17c7ff3  com.apple.iLifeSlideshowRenderer 1.1 (375) <f87238833c5c734fcd08709e4079b2c5> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x183b000 -  0x1846fff  com.apple.iLifeSlideshowExporter 1.1 (159) <a378ae2696982327cdaad2af255de5be> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0x184f000 -  0x186efed  com.apple.audio.CoreAudioKit 1.5 (1.5) <585f5ec95dc8f1efe51d820be84d53a6> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1880000 -  0x1888fe7  com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x1894000 -  0x1897fff  com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x18bf000 -  0x18c2ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x1abc000 -  0x1b14fff +com.DivXInc.DivXDecoder 6.8.4.3 (6.8.4) <26a406b3e4bcc6ff8f28a99ffeb5cf2d> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1c3d000 -  0x1c3eff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1c49000 -  0x1c4dfff  com.apple.iPhoto.RSSPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x168e5000 - 0x168fafff  com.apple.iPhoto.FacebookPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x16907000 - 0x1690cff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16a4f000 - 0x16e36fff  com.apple.RawCamera.bundle 3.4.0 (545) <46f9387243c4db157889522a00d16c32> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1717f000 - 0x1718fff3  com.apple.iPhoto.FlickrPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x1719a000 - 0x171cbff7  com.apple.iPhoto.MobileMePublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x181f8000 - 0x181f9fe1  com.apple.textencoding.unicode 2.2 (2.2) <09ac11c81bf4e673a30cc364868fdc11> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x19700000 - 0x1970bfff  com.apple.BookService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x19aa7000 - 0x19ab1fff  com.apple.CalendarsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x19abb000 - 0x19ac5fff  com.apple.CardsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x19acf000 - 0x19adafff  com.apple.PrintsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x19af2000 - 0x19af3fff  com.apple.iLMBAppDefPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x19af9000 - 0x19afafff  com.apple.iLMBFolderPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x19c2b000 - 0x19c2ffff  com.apple.iLMBGarageBandPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x19c84000 - 0x19c8bfff  com.apple.iLMBAperturePlugin 2.1.5 (127) <64f3d109e8ac7abb31e073da26832360> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x19c93000 - 0x19c9efff  com.apple.iLMBiMoviePlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x19ced000 - 0x19cf5fff  com.apple.iLMBiPhotoPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x1a601000 - 0x1a612fff  com.apple.iLMBiPhoto8Plugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x1a61c000 - 0x1a624fff  com.apple.iLMBiTunesPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x1a62c000 - 0x1a6e1fef  com.apple.iTunesAccess 10.6 (10.6) <cf57a9994a815b4dbcc0abfb893cec9c> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x1a712000 - 0x1a714fff  com.apple.iLMBMoviesFolderPlugin 2.1.5 (127) <a6ae59ef4e40840b36a8f4dc6b697a5b> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x1a71b000 - 0x1a71dfff  com.apple.iLMBPhotoBoothPlugin 2.1.5 (127) <86fe02308b70e1cdf2805654f999ec70> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x1aa5f000 - 0x1aa5fffd  libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x1ab0a000 - 0x1ab16fff +net.telestream.license 1.0.1.3-GC (1.0.1.3-GC) <105e17171fcc41681295768fb28c4217> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x1ab1f000 - 0x1ab72ff7  com.apple.AppleProResDecoder 2.0.1 (227) /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x1abac000 - 0x1abb1ff7  com.apple.AppleMPEG2Codec 1.0.1 (220) <6fdff3c87ececb7413749c0230c54f78> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x1ad26000 - 0x1ad61fff  com.apple.QuickTimeFireWireDV.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1ad6e000 - 0x1ad88fc3  com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1ad8d000 - 0x1ada6ff3  com.apple.applepixletvideo 1.2.18 (1.2d18) <fd882f567e0480f18107f66ea6e7187d> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1b22c000 - 0x1b423fc2 +net.telestream.wmv.import 2.2.3.7 (2.2.3.7) <16463171cbc541aca577883c116422ee> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1b492000 - 0x1b5f4fe2 +net.telestream.wmv.advanced 2.2.3.7 (2.2.3.7) <33ea17448ff4499197c8279db599b913> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x1b65b000 - 0x1b6c0fef  com.apple.AppleVAH264HW.component 1.0 (1.0) <9247aea75cd42fd2c138dd35ce83ab9a> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x9003ffff  com.apple.DAVKit 3.0.6 (661) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x90070000 - 0x9007afeb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9007b000 - 0x9007fffd  com.apple.AOSNotification 1.0.0 (68.13) <24530e1abba37ab4bacf92fcf13cd216> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x902e9000 - 0x904bafef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x904bb000 - 0x9055fff7  com.apple.QuickTimeImporters.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90560000 - 0x90699ff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x9069a000 - 0x90b6bfbe  libGLProgrammability.dylib ??? (???) <d5cb4e7997a873cd77523689e6749acd> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90b6c000 - 0x90c4dff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x90c4e000 - 0x90c72fff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x90c73000 - 0x91b73fe6  com.apple.QuickTimeComponents.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x91b74000 - 0x91b91ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91b92000 - 0x91b92ff8  com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91b93000 - 0x91bbcfff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x91bbd000 - 0x91bc1fff  com.apple.CoreMediaAuthoringPrivate 1.6 (1.6) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x91bc2000 - 0x91c13feb  com.apple.framework.familycontrols 1.0.4 (1.0.4) <e76b4fa1c25673c8e0fb183b6c0e8eaf> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x91c14000 - 0x91c24ffc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91c25000 - 0x91c5ffe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91c78000 - 0x91d66fef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x91d67000 - 0x91d8fff7  com.apple.shortcut 1.0.1 (1.0) <37e4b08cfaf9edb08b8682a06c4ec844> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91d90000 - 0x91dcffef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91dd0000 - 0x91f50fff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91f51000 - 0x92cbffe3  com.apple.WebCore 5534 (5534.50.1) <bef6f01e56834f2498918b264f0acbf7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x92cc0000 - 0x92d0ffff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92d10000 - 0x92d3bfe7  libauto.dylib ??? (???) <4f3e58cb81da07a1662c1f647ce30225> /usr/lib/libauto.dylib
    0x92d3c000 - 0x92d99ffb  libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x92d9a000 - 0x92de3fef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92de4000 - 0x92eabff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92eac000 - 0x92eb8ff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92eb9000 - 0x92eb9ffe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92eba000 - 0x92f0bff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92f0c000 - 0x92f10fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x92f11000 - 0x92f16ffc  com.apple.KerberosHelper 1.1 (1.0) <026012b54e36fecbc1a4ed3a3edec439> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x92f17000 - 0x92f27fff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <9a71429c74ed6ca43eb35e1f78471b2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92f28000 - 0x92f46ff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92f47000 - 0x92fd1ff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92fd2000 - 0x9305fff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93060000 - 0x93112ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x93113000 - 0x93113ffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93114000 - 0x93116fff  com.apple.securityhi 3.0 (30817) <b3517782ad664a21e4fd60242e92723e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93117000 - 0x9311cfff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9311d000 - 0x93133fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93134000 - 0x93297ff2  com.apple.CalendarStore 3.0.8 (860) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x93298000 - 0x932cafff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x932cb000 - 0x9335efff  com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93362000 - 0x933adff7  com.apple.CoreMediaIOServices 140.0 (1492) <3fd3879b31be7659c1008e8991e9f69b> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x933ae000 - 0x933dbfeb  libvDSP.dylib ??? (???) <f39d424bd56a0e75d5c7a2280a25cd76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x933dc000 - 0x93456ff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <9ae833544b8249984c07544dbe6a97fa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93457000 - 0x93af7fff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93af8000 - 0x942f6fef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x942f7000 - 0x9432bfef  com.apple.bom 9.0.1 (136.1.1) <007941632d316d064e8decc51255a5e0> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9432c000 - 0x94449ff7  com.apple.WebKit 5534 (5534.50.2) <643ffe6446c331210a74f896f0804eb2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9444a000 - 0x9444bffc  libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x9444c000 - 0x94584fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94585000 - 0x945ebffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x945ec000 - 0x945fbffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <a2f7a163a74c134f6f17d497423436fe> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x945fc000 - 0x94603ff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94604000 - 0x94652fe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x94653000 - 0x94653ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94654000 - 0x9467dfff  com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x9467e000 - 0x94749fef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9474a000 - 0x947c9ff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x947ca000 - 0x94914feb  com.apple.QTKit 7.7 (1680.28) <c03868cba11c22743a5d68e1b0184399> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94915000 - 0x9491afff  com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9491b000 - 0x9495cfe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9495d000 - 0x949caffb  com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x949cb000 - 0x949d7ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x949d8000 - 0x94d75fef  com.apple.QuartzCore 1.5.8 (1.5.8) <18113e06d296230d63a63b58baf35f55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94d76000 - 0x94e5eff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94e69000 - 0x94e9affb  com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94e9b000 - 0x94f2eff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94f2f000 - 0x94f3bfff  libbz2.1.0.dylib ??? (???) <d355415c89c383330697a7b73d6dbc2e> /usr/lib/libbz2.1.0.dylib
    0x94f3c000 - 0x95267ff6  com.apple.QuickTime 7.7 (1680.28) <df75ea1435dadaf44ffde0924bc67ec4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95268000 - 0x9526fffe  libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x95270000 - 0x95278fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <ba64dd6ada417b5e7be736957f380bca> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95279000 - 0x9527dfff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9527e000 - 0x95495ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95496000 - 0x9561afef  com.apple.MediaToolbox 0.484.2 (484.2) <03c5c5966a91ad3ae9c825340fa21970> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9561b000 - 0x9561dff1  com.apple.QuickTimeH264.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9561e000 - 0x956abff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x956ac000 - 0x956dbfe3  com.apple.AE 402.3 (402.3) <dba512e47f68eea1dd0ab35f596edb34> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9572b000 - 0x95784ff7  libGLU.dylib ??? (???) <64d010e31d7596bd8f9edc6e027d1d0c> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95785000 - 0x957c5fef  com.apple.CoreMedia 0.484.2 (484.2) <a3f49c4ac23e1e4ff60061ef279e367c> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x957c6000 - 0x957c6ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x957c7000 - 0x957e2ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x957e3000 - 0x957e3ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x957e4000 - 0x95800fff  com.apple.IMFramework 4.0.8 (584) <03c3fc58fa1809c1716aaa7b623ff3d1> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x95801000 - 0x9594aff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9594b000 - 0x9594ffff  com.apple.OpenDirectory 10.5 (10.5) <7d9ff71c60ad73f4c82a638abc233bf0> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x95950000 - 0x95a30fff  libobjc.A.dylib ??? (???) <3ca288b625a47bbcfe378158e4dc328f> /usr/lib/libobjc.A.dylib
    0x95a31000 - 0x95cadfe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95cae000 - 0x95cbbfe7  com.apple.opengl 1.5.10 (1.5.10) <e7d1198d869f45f09251f9697cbdd192> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95cbc000 - 0x95cbcffe  com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95cbd000 - 0x95d08fe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95d09000 - 0x95d3bff7  com.apple.DotMacSyncManager 1.2.4 (308) <890ea4eb2947d2e701dcda9f6a7a3e9e> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x95d3c000 - 0x9614cfef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9614d000 - 0x96154fe9  libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x96155000 - 0x9618cfff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <41d5aeffefc6d19d471f51ae0b15024f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9618d000 - 0x961fffff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96200000 - 0x96209fff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9620a000 - 0x962ecfff  com.apple.syncservices 3.3 (389.20) <bfedc8cbb3754652e13d67a45791fac9> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x962ed000 - 0x966a9ff4  com.apple.VideoToolbox 0.484.2 (484.2) <f8e0dbf848f7441bc31428305a2f65bf> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x966aa000 - 0x96839fe7  com.apple.CoreAUC 3.08.0 (3.08.0) <ce8da72493f7ad2bcb13130e6d0eca54> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9683a000 - 0x9687cfef  com.apple.NavigationServices 3.5.2 (163) <7f4f1766414a511bf5bc68920ac85a88> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9687d000 - 0x96895fff  com.apple.openscripting 1.2.8 (???) <a888b18c8527f71629702ed8dce9c877> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96896000 - 0x968d0ffe  com.apple.securityfoundation 3.0.2 (36131) <dd2a4d1a4f50b82923d7cfc5df10455d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x968d1000 - 0x96a04fe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96a05000 - 0x96a82feb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96a83000 - 0x96a83ffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96a84000 - 0x96bd6ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96bd7000 - 0x96be5ffd  libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x96be6000 - 0x96be9fff  com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96bea000 - 0x96bf0fff  com.apple.print.framework.Print 218.0.3 (220.2) <8c541d587e4068a5fe5a5ce8ee208516> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96bf1000 - 0x96c06ffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x96c07000 - 0x96c8eff7  libsqlite3.0.dylib ??? (???) <aaaf72c093e13f34b96e2688b95bdb4a> /usr/lib/libsqlite3.0.dylib
    0x96c8f000 - 0x96d40fff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96d41000 - 0x96d46fff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96d47000 - 0x96dc4fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96dc5000 - 0x96dc5ffa  com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96dc6000 - 0x96dfcfef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
    0x96dfd000 - 0x96e04fff  com.apple.agl 3.0.9 (AGL-3.0.9) <5a57ce58f8adb7825e1adb9f7cdea151> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96e05000 - 0x96eacfec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96ead000 - 0x96ec0fff  com.apple.IMUtils 4.0.8 (584) <f9b5c40fc6a37b082ae2a3df33766105> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x96ec1000 - 0x96eccfe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96ecd000 - 0x96f74feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x96f75000 - 0x96f94ffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96f95000 - 0x9729dfe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9729e000 - 0x972faff7  com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x972fb000 - 0x97306fff  com.apple.dotMacLegacy 3.1 (246) <1a8b7930067bce09867a6fb7b7ba31b2> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x97307000 - 0x97318ffe  com.apple.CFOpenDirectory 10.5 (10.5) <39d48cd00b8f9ca3fcdd251715cc74d5> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x97319000 - 0x976d7fea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x976d8000 - 0x97732ff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97733000 - 0x9774fff3  com.apple.CoreVideo 1.6.1 (48.6) <e1eea31edd855f3e739202eb18ac8312> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97750000 - 0x97844ff4  libiconv.2.dylib ??? (???) <96ff4c6f84c4a1623cb78287371cdd3f> /usr/lib/libiconv.2.dylib
    0x97845000 - 0x97a01ff3  com.apple.QuartzComposer 2.1 (106.13) <dc04566811ab9c5316d1a622f42da8ba> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97a02000 - 0x97a02ff8  com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x97a03000 - 0x97a05ff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97a06000 - 0x97ac1fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97ac2000 - 0x97b00fff  libGLImage.dylib ??? (???) <2e570958595e0c9c3a289158223b39ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97b01000 - 0x97ddbff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x97ddc000 - 0x97ddcfff  com.apple.Carbon 136 (136) <eb3c292d5544512f86e1e4e743c23f8e> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97ddd000 - 0x97e50fff  com.apple.iLifeMediaBrowser 2.1.5 (368) <3026150475335424dd1532739ded6fb0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x97e51000 - 0x97fb8ff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x97fb9000 - 0x97fd7fff  libresolv.9.dylib ??? (???) <0e26b308654f33fc94a0c010a50751f9> /usr/lib/libresolv.9.dylib
    0x97fd8000 - 0x97ffcfeb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x97ffd000 - 0x980c6fef  com.apple.QuickTimeMPEG4.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x980c7000 - 0x980d6fff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x980d7000 - 0x9811bfeb  com.apple.DirectoryService.PasswordServerFramework 3.0.4 (3.0.4) <45d0af6eed184b278990175527a0d3fa> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0xba900000 - 0xba916fff  libJapaneseConverter.dylib ??? (???) <b9aea83b1cd97f3230999ebfcbf63e7c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download <a href="http://www.fatcatsoftware.com/iplm/"><b><u>iPhoto Library Manager</b></u></a> and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption. 

  • Production order stays open after receipting into stock

    Hello,
    After I have receipted a production order into stock the production order stays open - should this not close the production order?  Is the only way of closing it done by going into the order itself and changing the status to closed?
    Many thanks,
    Kate

    Hi Kate,
    It has to be closed manually and only then will the final journal entry be created in case of variance etc.
    Jesper

  • Ipod wont stay opened after 4.0 software download

    After I downloaded the 4.0 software my iPod stopped working. The app will stay open for a few seconds and then shut down. It does it every time. The new update didn't help a thing. Anyone else having this problem? Anybody know what to do?

    You still have not answered: Have you tried a reset? You should try this before a restore.
    ". If I backup my phone and then restore will I be able to install the backup?"
    Yes, but if the problem persists then you would need to restore as new.
    "and if so will all my apps still be there?"
    They should be in itunes on your computer, so you would just re-sync them if need be.

  • One of my apps won't stay open after iPad and app both had update

    After updating with the new update for the iPad I updated my nook app. Now my nook app won't stay open. I've restarted my iPad multiple times and tried it with and without wifi still won't stay open.

    I suggest trying the update again after an hour or two.  Sometimes, the notice that an update is available comes an hour or two before the developers actually sends the revised app out to be downloaded.

Maybe you are looking for

  • DMS--- C Drive  frontentd document storage Issue

    Hello Guys, This doubt is pertaining to DMS , We all know that once the originals are Saved in secured storage area inside DIR  and while accessing the originals for DISPLAY /EDIT OR CHANGE mode in the front end system the copy of originals are store

  • Firefox nightly doesn't use any file associations on downloaded files

    I am using Firefox 8.0a with Gnome 3 and Shell. Chromium will open any downloaded files with the correct applications, but Firefox always asks me to locate an application to open a file with. Rather than searching through for all the correct binaries

  • Cannot download Flash Player on Macbook Air

    Hello I just got a new Macbook Air. Trying to download Flash Player in order to watch youtube. I have allowed internet downloads in System Preferences. It starts downloading and stops at 50% of the download. Then it asks me to close browser windows w

  • Debugging SSRS client side script

    Hi eb I would appriciate your recomendations for debbuging SSRS client side functionality especially when it is embedded in web applications like performancepoint dashboards.  Was any one succesfull in using IE developer tools script debbuger - or an

  • Jar file deployment in jdeveloper

    JDeveloper 3.1.1.2 I've created a simple class to read from and write to the local environment. This is then used in a webforms application. If I create a jar file using the command line jar .exe that comes with JDeveloper in the java\bin directory I