Building shared library

I am a new user to Mac and I am trying to build a shared library using gcc. However, I am getting errors when creating a execuatble.
My system info. is:
[email protected] <810> gcc --version
i686-apple-darwin8-gcc-4.0.1 (GCC) 4.0.1 (Apple Computer, Inc. build 5363)
[email protected] <811> uname -a
Darwin foxtrot.vni.com 8.8.1 Darwin Kernel Version 8.8.1: Mon Sep 25 19:42:00 PD
T 2006; root:xnu-792.13.8.obj~1/RELEASE_I386 i386 i386
Here is a small example for the problem.
========= kk.h ===========
#include<stdio.h>
#include<math.h>
void sub();
=========== sub.c =========
#include "kk.h"
void sub() {
printf("sub = %g\n", fabs(-2.0));
======== main.c ========
#include "kk.h"
main() {
sub();
=====================
[email protected] <792> gcc -c -fPIC sub.c
[email protected] <793> gcc -o libkk.so -dynamic -r sub.o
[email protected] <794> gcc main.c libkk.so -lm
/usr/bin/ld: multiple definitions of symbol _NXArgc
/usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../crt1.o definition of _NXArgc in section (_DATA,_data)
libkk.so definition of _NXArgc in section (_DATA,_data)
/usr/bin/ld: multiple definitions of symbol _NXArgv
/usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../crt1.o definition of _NXArgv in section (_DATA,_data)
libkk.so definition of _NXArgv in section (_DATA,_data)
/usr/bin/ld: multiple definitions of symbol _progname
/usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../crt1.o definition of _progname in section (_DATA,_data)
libkk.so definition of _progname in section (_DATA,_data)
/usr/bin/ld: multiple definitions of symbol _environ
/usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../crt1.o definition of _environ in section (_DATA,_data)
libkk.so definition of _environ in section (_DATA,_data)
/usr/bin/ld: multiple definitions of symbol start
/usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../crt1.o definition of start in section (_TEXT,_text)
libkk.so definition of start in section (_TEXT,_text)
collect2: ld returned 1 exit status
Thank you.

Hi Gschwert,
our developers told me that for X-Code Version 4 you need an additional download. Then, it should also work with Version 4. Here is what they said:
It turned out that Shared Libraries compile fine with XCode 4, it's just that the command line tools that we need for compilation are now an optional download. 
From https://developer.apple.com/xcode/ 
"Xcode includes a new "Downloads" preference pane to install optional components such as command line tools, and previous iOS Simulators." 
So, this is not well documented we will handle that and let make a correction as soon as possible.
Have a nice day,
Abduelkerim
Sales
NI Germany

Similar Messages

  • Building shared libraries on linux with SunStudio

    Hi,
    I installed the sunstudio-compilers on my system (SuSE 10.0/x86-64) and try to build a shared library.
    For my (c++-)library I use autoconf/automake, so I hoped it to be trouble-free, but it is not. I configured my library with:
    ./configure CC=cc CXX=CC CFLAGS=-fast CXXFLAGS=-fast -D_GNU_SOURCE(I needed this -D_GNU_SOURCE to have pthread_rwlock_*).
    The compiler run fine, but the linker does not produce any output. I guess the command, which should have created the library is:
    /bin/sh ../libtool --tag=CXX --mode=link CC  -fast -D_GNU_SOURCE   -o libcxxtools.la -rpath /usr/local/lib -lpthread -version-info 3:1:0 base64stream.lo cgi.lo dlloader.lo hdstream.lo hirestime.lo httpreply.lo httprequest.lo iniclass.lo log.lo md5.lo md5stream.lo multifstream.lo net.lo pollclass.lo query_params.lo tcpstream.lo tee.lo thread.lo udp.lo udpstream.lo xmltag.lo iconvstream.lo  ../libltdl/libltdlc.la  -lnslIt creates a src/libcxxtools.la and symbolic links src/.libs/libcxxtools.so and src/.libs/libcxxtools.so.3, but no shared library src/.libs/libcxxtools.so.3.0.1, where the links point to. Is there any chance to get automake running with sunstudio?

    libtool problem is that it has embedded knowledge about compiler options, and it is platform-dependant.
    libtool knows that it should use -G to link shared library with SunStudio on Solaris.
    It has no clue about existance of SunStudio on Linux.
    Anyway, if you are compiling with SunStudio you should always link with SunStudio (cc, CC or f90).
    Thus proper configure line should include LD=CC for C++, LD=cc for C programs.
    If you use default linker (ld) it will fail to resolve dependancies specific to SunStudio compiler.
    Thats what happens in your case.
    However even if you specify LD=CC it will not do shared libraries for the cause mentioned about - when configuring libtool tries to figure out how to build shared library and deciding not to build it at all.
    You can get out with LD=cc (as our cc driver supports gnu-style -shared option).
    Though you will have to specify all the SunStudio C++-specific link dependancies manually.
    Another option is to modify libtool script. Which version do you use?
    regards,
    __Fedor.

  • How can I use a shared library made with the application builder?

    Hi,
    I am using LabVIEW 7.1 running on Slackware 10.1 (kernel 2.4.29) and I am trying to call a graph display from a C program that I use for debugging VME access from a VMIVME controler. So using the application builder I built the VI as a shared library (graph.vi -> graph.so) containing a function called "graph". In my main program the call to the dlopen fails with the error: "graph.so: undefined symbol: UninitLVClient". When I examin graph.so with nm I see that UninitLVClient and other LabVIEW functions are indeed undefined and using ldd shows that graph.so has dependencies only on libc.so.* and *linux*.so.* but not on LabVIEW related stuff. Those functions are defined in the liblv.so that's in the cintools directory but I have no idea if the user is supposed to use that.
    So I think I am missing an important concept here. Can somebody help or direct me to some documentation (I found lots of information about how to link external code to LabVIEW but nothing about how to link LabVIEW code to an external program)?

    Thanks Watermann,
    your message has been very useful so now I am linking to the proper library but I still have problems when trying to load dynamically the shared library produced with LabVIEW. It is strange that I could successfully load the lvrt library at loading time but it does not work when I am loading the library at execution time.
    I made a small LabVIEW program that prints a hello window and I am calling it from a C program. In the first program main.c I am linking to the lvrt library at loading time and it works but in the second one I am linking dynamically at execution time and it does not work. For my work I need to be able to load code done in LabVIEW at execution time. Any help is appreciated!
    Program main.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include "hello.h" // got this from the LabVIEW builder, i.e. when I made the hello.so
    int main(void)
    printf("Hello from C!\nLets call LabVIEW now\n");
    hello();
    printf("Bye ... \n");
    return 0;
    The command to compile main.c, i.e. linking shared library lvrt when loading main program:
    gcc -Wall -I /usr/local/lv71/cintools/ -o main main.c hello.so -l lvrt
    The LD_LIBRARY_PATH has been defined and exported:
    $ LD_LIBRARY_PATH=$PWD
    $ export LD_LIBRARY_PATH
    IT WORKS!
    Program main2.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include
    int main(void)
    void * h_lvrt;
    void * h_hello;
    void (* hello)(void);
    char * error;
    printf("Hello from C!\nLets call LabVIEW now\n");
    // open LabVIEW RunTime shared library
    // in my computer located at /usr/local/lib/liblvrt.so
    h_lvrt = dlopen("/usr/local/lib/liblvrt.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    printf("error : could not open LabVIEW RunTime library\n");
    printf("%s\n", error);
    return 1;
    // open hello shared library
    // in my computer located at /home/darss/lv_call/hello.so
    h_hello = dlopen("hello.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not open hello library\n");
    printf("%s\n", error);
    return 1;
    // get function hello from library hello.so
    hello = dlsym(h_hello, "hello");
    // check for error
    error = dlerror();
    if (error) {
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not get the hello function\n");
    printf("%s\n", error);
    return 1;
    // call hello function
    hello();
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("Bye ... \n");
    return 0;
    The command to compile main2.c, i.e. dynamically linking library lvrt at execution of main2 program:
    gcc -Wall -o main2 main2.c -l dl
    The LD_LIBRARY_PATH still defined and exported.
    IT DOES NOT WORK!
    Program output:
    Hello from C!
    Lets call LabVIEW now
    error : could not open hello library
    /home/darss/lv_call/hello.so: undefined symbol: WaitLVDLLReady

  • Failure to build LabVIEW applicatio​n on Linux using "Shared library"

    In order to create a LabVIEW application on linux without an X display, I complied the LabVIEW VI using the Linux Shared Library. I did this by right clicking on Build Specification and selecting New >> Shared Library, and in the Advanced section, checking the box labeled Use embedded version of run-time engine. At the end of the build process, a message came up informing that the build was unsuccessful, with the following message:
        "Error 127 occurred at System Exec: sh: gcc: command not found 
        The error code is undefined. No one has provided a description for this code, or you might have wired a number that is not an error code to the error code input."
    I had no compling the LabVIEW VI in the normal fashion, so am confused about what the problem is.
    Solved!
    Go to Solution.

    Hi Julian,
    gcc is a C and C++ compiler on Linux.  An easy way to check if it is installed is to open a terminal and type "gcc", if the command is recognized then the package is already installed and the problem must lie elsewhere.  If this distrobution of Linux has a package manager included then it should be displayed in there as well.  If not then it could point to it being not installed or some dependency is missing making it not accessible from the command line.  Here is a link that should hopefully step you through installing gcc with Redhat: http://www.cyberciti.biz/faq/centos-linux-install-​gcc-c-c-compiler/ .
    Justin D
    Applications Engineer
    National Instruments
    http://www.ni.com/support/

  • Building 64bit shared library on Solaris 10

    I'm trying to port a Java application that depends on BerkeleyDB from GNU/Linux to Solaris 10. The GNU/Linux version was just recently rebuilt against Sun Java 6. The 64bit version of the JVM for the AMD Opteron processor. It produced a 64bit shared library. All is well in GNU/Linux land.
    I try building BerkeleyDB on Solaris following the instructions in the documentation and it produces a 32bit shared library. So when the application starts up and tells the JVM to run in 64bit server mode it complains it cannot load a 32bit shared library. So my question is how do I force the build system to build a 64bit shared library in Solaris 10?
    I'm using the Sun Studio 11 compiler for building BDB. I'm also doing this on a T1000 so any T1000 specific flags would be appreciated.

    Hi,
    I am not familiar with your particular environment. The general method for building a 64 bit Berkeley DB library on Solaris is to pass the "-xarch=v9a" flag to the configure command.
    I hope this helps.
    - Alex Gorrod

  • Flash Builder 4.7 executable launcher was unable to locate its companion shared library

    After I install the flash builder 4.7 on my Mac Book, I run the flash builder and got this message.
    "Alert"
    "The adobe flash builder 4.7 executable launcher was unable to locate its companion shared library. "
    Can any one hlep

    I have the same question.

  • How to build a shared library (dll) of a VI to be called by VC++

    hi All,
    How should I build a shared library ( dll ) using LabVIEW so that the desired output from LabVIEW can be returned to the main program that runs in VC++ ?
    I'm currently working in a project that uses the PXI 1042 & DMM, AWG, FGEN, SCOPE, RFSG, RFSA etc.
    The VC++ programmers dont want the LabVIEW front-end to be visible when called into VC++, in the sense they don't want LV to be another front-end, as the entire software is designed using VC++. It is enough if I simply pass the final values of measurement to them for display purpose.
    So, they've asked me if it is possible in LabVIEW to provide the VIs as dlls instead of exes.
    Since I've seen the feasibility of building a EXE or a DLL in LV, I've replied positively to them.
    In another of my project, I'm using dlls built in VC++ for hardware drive interaction parts in my LabVIEW project.
    Likewise, what are the methodologies that I should follow when building a Dll in LV ?
    I tried with a simple VI, wherein it returns a value of addtion of 2 elements & I passed it thro' the connector pane correctly.
    When I called the same dll in LV itself & configured it correctly by specifying the correct return type & I/O, then also it did not run properly.
    I could not understand what was going.
    So experts pls help me out by some simple examples or related links.
    Regards & Thanks,
    Partha.
    - Partha
    LabVIEW - Wires that catch bugs!

    Here you can find Application Notes and examples:
    http://zone.ni.com/devzone/devzone.nsf/webcategories/98D192CDCCDA21EE86256AB7006BECAF
    Hope this helps!

  • How to make the symbol to be resolved within the shared library ?

    I have two definitions of a symbol, one is in the main code, the other in a shared library. I want the symbol to be resolved within the shared library if it needed in the shared library.
    From the 'C++ User�s Guide', use the option '-Bsymbolic' to build the shared library is a choice. But it also said 'Never use -Bsymbolic with programs containing C++ code, use linker map files instead. So I have to try to use the map file, but I did not get more useful information from 'Linker and Libraries Guide'.
    I want to know what should be included in the map file and how to generate the map file?
    Additionally, from the 'Linker and Libraries Guide', the 'Direct Binding' also could resolve this problem. And I tried to build the shared library by the '-B direct' option, it works.
    Could anybody tell me what's the difference between the '-Bsymbolic' and '-B direct'?
    Any comments are appreciated.

    You didn't provide fun.h, and you didn't show all the commands that you must have used -- there are no commands that compile the source code into .o files. So I can't tell why the -xldscope option didn't work for you.
    Problems and errors that I see in your example:
    Functions func and swap are referenced from C code, but swap and one of the func functions are compiled by the C++ compiler and will get mangled names. If you compile a function with the C++ compiler that is to be called from C code, you need to declare the function as extern "C". But the extern "C" in a shared header needs to be guarded by +#ifdef __cplusplus+, since a C compiler won't understand the declaration.
    When you build a shared library, you must explicitly list the libraries it depends on, since no dependencies are created by default. For a C++ library, you need at least -lCrun -lc in that order. Otherwise, in a real-world program you can have program failures due to incorrect library initialization order. To be sure you have listed all needed libraries, use the -zdefs option, which causes the linker to complain about missing definitions.
    To be sure the shared library is picked up at run time, provide a RUNPATH via the -R option when you build the executable.
    The -xldscope option must appear on compile commands for the files where you want it to take effect. It has no effect on a link command, because the option affects how code is generated.
    Here is my rewrite:
    % cat fun.h
    #ifdef __cplusplus
    extern "C"
    #endif
    void func();
    #ifdef __cplusplus
    extern "C"
    #endif
    void swap();
    % cat fun.c
    #include <stdio.h>
    #include "fun.h"
    extern "C" void func()
        printf("func in the shared lib\n");
    extern "C" void swap()
        func();
    % cat fun_in.c
    #include <stdio.h>
    #include "fun.h"
    void func()
        printf("func in the main code\n");
    % cat main.c
    #include <stdio.h>
    #include "fun.h"
    int main()
        func();
        printf("invoke the swap:\n");
        swap();
    % CC -G -xldscope=symbolic fun.c -Kpic -o liboutside.so -lCrun -lc -zdefs
    % cc -o run main.c fun_in.c -L. -loutside -R .
    % ./run
    func in the main code
    invoke the swap:
    func in the shared libAs you can see, it works as advertised.
    Please note that the -xldscope option affects all functions in the module. If you need more fine-grained control, you must add declarations to the source code, or use a mapfile instead of -xldscope .

  • Is there a way to add a single jar to an existing shared library (war)?

    Hello,
    Is there a way to add a single jar to an existing and already deployed shared library (war) in weblogic directly?
    Basically, instead of building and deploying the war each time a new jar should be added to the list of jars present in the war and deploy it in weblogic, is it possible to make the process more automatic and efficient by just adding the new jar to the existing deployed war (no matter if the consumers must be reloaded)?

    Extract the WAR file and rearchive with theJAR file included.

  • How to create a c++ shared library (.so) for linux real time (for myRio) with Eclipse to use in LabView?

    I tried already these Tutorials and Advices but I didn't find a solution:
    - http://www.ni.com/tutorial/14625/en/
    - http://www.ni.com/tutorial/14690/en/
    - http://forums.ni.com/t5/LabVIEW/Shared-Library-on-myrio-Linux-Real-time-system/m-p/2842540/
    - http://forums.ni.com/t5/LabVIEW/How-to-create-shared-library-for-linux-real-time-target-in/m-p/28218...
    - and some more
    I want use c++ codes on linux real time. For testing reasons I want to have a function that adds 2 values and gives the result.
    I've done these steps:
    1. writing a c++ file in Eclipse (see screensot 2)
    2. building a shared library (.so) from my c++ project in Eclipse (with Cross GCC)
    3. putting this file on myRio (path: /usr/local/lib/)
    4. creating a VI that calls this library from Labview with a "Call Library Function Node" (see screenshot3)
    5. Setting the properties for the "Call Library Function Node" (see screenshots 4-7)
    After I run this VI i get this error message: LabVIEW:  (Hex 0x627) The function name for the ... node cannot be found in the library. To correct this error, right-click the Call Library Function Node and select Configure from the shortcut menu. Then choose the correct function name. (see screenshot1)
    I've tried a lot things to solve this problem but I couldn't find a solution. Would be very happy if anyone can help me. I guess that I have to edit my c++ code to export my function (symbol). But I have no idea how to make it. I also tried it with a dll file in the same folder but it didn't help.
    Perhaps someone can send an example which works on myRIO.
    Thanks!
    screenshot1
    screenshot2
    screenshot3
    screenshot4
    screenshot5
    screenshot6
    screenshot7

     can see it in the screenshot8 there is a function called "_Z8AddierenddPd" instead of "Addieren". I copied this name to Labview (see screenshot9) and it worked.
    I'm sure that there is a way to compile the shared folder with gcc without decorations (mangling). But I don't know how. If someone has a recommendation I would be very glad!
    Prepend each function declaration that you want to be available without name decoration with
    extern "C" <your function declaration>
    Or if you have multiple functions you want to export you can in the header file where you declare your functions simply use:
    #ifdef __cplusplus
    extern "C" {
    #endif
    <all your function declarations>
    #ifdef __cplusplus
    #endif
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • IPhoto 9.4.3 Crashes when importing from Shared Library

    I have an early 08 Mac Pro with Mountain Lion running iPhoto 9.4.3.  I'm attempting to import a good nubmer of photos from a shared library which resides on my MBP also running 10.8.2 and iPhoto 9.4.3.  It starts to import, but after about 10-20 photos (Nikon Raw) it crashes.  Consistently.  Deleted plist, didn't fix it.  Created a new test library, same issue.  I'm attempting to copy over several hundred at a time, which I know is ridiculous, but a) I have too many to import going one by one or 20 by 20, and b) it didn't have a problem earlier when doing the same thing.  I was importing >300 at a time last week.
    My library is large, >100gb if that helps.
    Here is the crash report.  Please help me figure out what is going on!!!!
    Process:         iPhoto [97687]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~2
    App Item ID:     408981381
    App External ID: 11723545
    Code Type:       X86 (Native)
    Parent Process:  launchd [185]
    User ID:         501
    Date/Time:       2012-12-18 11:25:59.812 -0600
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          427253 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  164800 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      F721FA7B-DDC0-B45C-CAB5-B131C1111920
    Crashed Thread:  24  Import thread 3
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: 0x000000000000000a, 0x000000001e554000
    VM Regions Near 0x1e554000:
        MALLOC_LARGE           000000001e49d000-000000001e554000 [  732K] rw-/rwx SM=SHM 
    --> mapped file            000000001e554000-000000001ec68000 [ 7248K] r--/rwx SM=COW  /private/var/folders/*/*.jpg
        MALLOC_TINY            0000000068600000-0000000068d00000 [ 7168K] rw-/rwx SM=PRV 
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x92d927d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92d91cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x91fc2599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x91fc7f7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x91fc763a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x91fc74ab CFRunLoopRunInMode + 123
    6   com.apple.HIToolbox                     0x971da15a RunCurrentEventLoopInMode + 242
    7   com.apple.HIToolbox                     0x971d9ec9 ReceiveNextEventCommon + 374
    8   com.apple.HIToolbox                     0x971d9d44 BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x961e9a3a _DPSNextEvent + 724
    10  com.apple.AppKit                        0x961e926c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    11  com.apple.AppKit                        0x961df6cc -[NSApplication run] + 855
    12  com.apple.AppKit                        0x961826f6 NSApplicationMain + 1053
    13  com.apple.iPhoto                        0x000e9c99 0xda000 + 64665
    14  com.apple.iPhoto                        0x000e92e5 0xda000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x92d94c02 __select_nocancel + 10
    1   libdispatch.dylib                       0x9252da08 _dispatch_mgr_invoke + 376
    2   libdispatch.dylib                       0x9252d7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9322d512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x922453c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x922451ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9224a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0208fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0208eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    11  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9322d512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x922453c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x922451ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9224a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0208fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0208eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    11  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9322d512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x922453c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x922451ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9224a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0208fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0208eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    11  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9322d512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x922453c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x922451ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9224a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0208fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0208eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    11  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9322d512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x922453c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x922451ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9224a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0208fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0208eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    11  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9322d512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x922453c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x922451ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9224a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0208fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0208eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    11  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9322d512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x922453c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x922451ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9224a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0208fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0208eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    11  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9322d512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x922453c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x922451ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9224a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x026e348f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   libobjc.A.dylib                         0x92e42586 -[NSObject performSelector:] + 62
    8   com.apple.proxtcore                     0x02098df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   libobjc.A.dylib                         0x92e425d3 -[NSObject performSelector:withObject:] + 70
    10  com.apple.proxtcore                     0x0209122c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x02090aef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x02090313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x0208ef10 -[XTThread run:] + 434
    14  com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    15  com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    16  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    17  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 10:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x92d94be6 __select + 10
    1   com.apple.CoreFoundation                0x9200bc00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    3   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x92d927d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92d91cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x91fc2599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x91fc7f7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x91fc763a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x91fc74ab CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x9221c946 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.apple.proxtcore                     0x0209106c -[XTRunLoopThread run:] + 469
    8   com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    11  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x932b30a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x92215734 -[NSCondition wait] + 274
    4   com.apple.iPhoto                        0x0012ba64 0xda000 + 334436
    5   com.apple.iPhoto                        0x0012b672 0xda000 + 333426
    6   com.apple.CoreFoundation                0x9201dd6d __invoking___ + 29
    7   com.apple.CoreFoundation                0x9201dca7 -[NSInvocation invoke] + 279
    8   com.apple.RedRock                       0x026ff85b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x027105f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  libobjc.A.dylib                         0x92e425d3 -[NSObject performSelector:withObject:] + 70
    11  com.apple.proxtcore                     0x02098df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  libobjc.A.dylib                         0x92e425d3 -[NSObject performSelector:withObject:] + 70
    13  com.apple.proxtcore                     0x0209122c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore                     0x02090aef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore                     0x02090313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore                     0x0208ef10 -[XTThread run:] + 434
    17  com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    18  com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    19  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    20  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9322d512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9956c6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x9956c184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x9956c40d TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x911a05ac 0x90baa000 + 6251948
    7   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    8   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9322d512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9956c6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x9956c184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x9956c40d TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9950d7ea AIOFileThread(void*) + 892
    7   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    8   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x92d950ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9322b04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9322ae19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x93212cca start_wqthread + 30
    Thread 16:
    0   libsystem_kernel.dylib                  0x92d950ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9322b04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9322ae19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x93212cca start_wqthread + 30
    Thread 17:
    0   libsystem_kernel.dylib                  0x92d950ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9322b04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9322ae19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x93212cca start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib                  0x92d950ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9322b04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9322ae19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x93212cca start_wqthread + 30
    Thread 19:
    0   libsystem_kernel.dylib                  0x92d950ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9322b04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9322ae19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x93212cca start_wqthread + 30
    Thread 20:
    0   libsystem_kernel.dylib                  0x92d950ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9322b04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9322ae19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x93212cca start_wqthread + 30
    Thread 21:: Import thread 0
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x932b30a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto                        0x006fc65f 0xda000 + 6432351
    4   com.apple.iPhoto                        0x006fb6da 0xda000 + 6428378
    5   com.apple.iPhoto                        0x001f80f6 0xda000 + 1171702
    6   com.apple.iPhoto                        0x001f7ead 0xda000 + 1171117
    7   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    8   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 22:: Import thread 1
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x932b30a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto                        0x006fc65f 0xda000 + 6432351
    4   com.apple.iPhoto                        0x006fb6da 0xda000 + 6428378
    5   com.apple.iPhoto                        0x001f80f6 0xda000 + 1171702
    6   com.apple.iPhoto                        0x001f7ead 0xda000 + 1171117
    7   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    8   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 23:: Import thread 2
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x932b30a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto                        0x006fc65f 0xda000 + 6432351
    4   com.apple.iPhoto                        0x006fb6da 0xda000 + 6428378
    5   com.apple.iPhoto                        0x001f80f6 0xda000 + 1171702
    6   com.apple.iPhoto                        0x001f7ead 0xda000 + 1171117
    7   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    8   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 24 Crashed:: Import thread 3
    0   libsystem_c.dylib                       0x932131a1 memmove$VARIANT$sse3x + 35
    1   libsystem_c.dylib                       0x9322fb85 __memcpy_chk + 37
    2   com.apple.ImageIO.framework             0x91a2fba8 _CGImageSourceBindToPlugin + 240
    3   com.apple.ImageIO.framework             0x91a2faa3 CGImageSourceGetType + 55
    4   com.apple.iPhoto                        0x006f304b 0xda000 + 6393931
    5   com.apple.iPhoto                        0x001f83a2 0xda000 + 1172386
    6   com.apple.iPhoto                        0x001f7ead 0xda000 + 1171117
    7   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    8   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 25:: Import thread 4
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x932b30a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto                        0x006fc65f 0xda000 + 6432351
    4   com.apple.iPhoto                        0x006fb6da 0xda000 + 6428378
    5   com.apple.iPhoto                        0x001f80f6 0xda000 + 1171702
    6   com.apple.iPhoto                        0x001f7ead 0xda000 + 1171117
    7   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    8   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 26:: Import thread 5
    0   libsystem_kernel.dylib                  0x92d94be6 __select + 10
    1   com.apple.iPhoto                        0x0026f9a2 0xda000 + 1661346
    2   com.apple.iPhoto                        0x00268993 0xda000 + 1632659
    3   com.apple.iPhoto                        0x002621f9 0xda000 + 1606137
    4   com.apple.iPhoto                        0x00261fa4 0xda000 + 1605540
    5   com.apple.iPhoto                        0x0026a205 0xda000 + 1638917
    6   com.apple.iPhoto                        0x0026a62b 0xda000 + 1639979
    7   com.apple.iPhoto                        0x0026a417 0xda000 + 1639447
    8   com.apple.iPhoto                        0x003e1367 0xda000 + 3175271
    9   com.apple.iPhoto                        0x003e13bd 0xda000 + 3175357
    10  com.apple.iPhoto                        0x006fb72d 0xda000 + 6428461
    11  com.apple.iPhoto                        0x001f80f6 0xda000 + 1171702
    12  com.apple.iPhoto                        0x001f7ead 0xda000 + 1171117
    13  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    14  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 27:: Import thread 6
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x932b30a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto                        0x006fc65f 0xda000 + 6432351
    4   com.apple.iPhoto                        0x006fb6da 0xda000 + 6428378
    5   com.apple.iPhoto                        0x001f80f6 0xda000 + 1171702
    6   com.apple.iPhoto                        0x001f7ead 0xda000 + 1171117
    7   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    8   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 28:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9322d512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo                     0x9781bfe9 CVDisplayLink::waitUntil(unsigned long long) + 297
    4   com.apple.CoreVideo                     0x9781b078 CVDisplayLink::runIOThread() + 658
    5   com.apple.CoreVideo                     0x9781adce startIOThread(void*) + 160
    6   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    7   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 29:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x92d94c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x932b2a61 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x932b292a usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x963ced4d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    7   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 30:
    0   libsystem_kernel.dylib                  0x92d94be6 __select + 10
    1   com.apple.iPhoto                        0x0026f9a2 0xda000 + 1661346
    2   com.apple.iPhoto                        0x00268993 0xda000 + 1632659
    3   com.apple.iPhoto                        0x002621f9 0xda000 + 1606137
    4   com.apple.iPhoto                        0x00261fa4 0xda000 + 1605540
    5   com.apple.iPhoto                        0x0026a205 0xda000 + 1638917
    6   com.apple.CoreFoundation                0x9201dd6d __invoking___ + 29
    7   com.apple.CoreFoundation                0x9201dca7 -[NSInvocation invoke] + 279
    8   com.apple.RedRock                       0x026ff85b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x027105f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  libobjc.A.dylib                         0x92e425d3 -[NSObject performSelector:withObject:] + 70
    11  com.apple.proxtcore                     0x02098df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  libobjc.A.dylib                         0x92e425d3 -[NSObject performSelector:withObject:] + 70
    13  com.apple.proxtcore                     0x0209122c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore                     0x02090aef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore                     0x02090313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore                     0x0208ef10 -[XTThread run:] + 434
    17  com.apple.Foundation                    0x922171d8 -[NSThread main] + 45
    18  com.apple.Foundation                    0x9221715b __NSThread__main__ + 1396
    19  libsystem_c.dylib                       0x93228557 _pthread_start + 344
    20  libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 31:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x932baafc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x912b7556 0x90baa000 + 7394646
    4   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    5   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 32:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x932baafc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x912b7556 0x90baa000 + 7394646
    4   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    5   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 33:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x932baafc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x912b7556 0x90baa000 + 7394646
    4   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    5   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 34:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x932baafc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x912b7556 0x90baa000 + 7394646
    4   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    5   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 35:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x932baafc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x912b7556 0x90baa000 + 7394646
    4   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    5   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 36:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x932baafc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x912b7556 0x90baa000 + 7394646
    4   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    5   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 37:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x92d948e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9322d289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x932baafc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x912b7556 0x90baa000 + 7394646
    4   libsystem_c.dylib                       0x93228557 _pthread_start + 344
    5   libsystem_c.dylib                       0x93212cee thread_start + 34
    Thread 24 crashed with X86 Thread State (32-bit):
      eax: 0x00000004  ebx: 0x7dd82820  ecx: 0x00000001  edx: 0x00000004
      edi: 0xb1ecde28  esi: 0x1e554000  ebp: 0xb1ecddb8  esp: 0xb1ecddac
       ss: 0x00000023  efl: 0x00010202  eip: 0x932131a1   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x1e554000
    Logical CPU: 5
    Binary Images:
       0xda000 -   0xdc6feb  com.apple.iPhoto (9.4.2 - 9.4.2) <3AC6405B-33E2-3184-9F20-4C9CC5256A3A> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xf5b000 -  0x1035ffc  org.python.python (2.6.7 - 2.6.7) <AEF0F842-12A1-3139-9187-6B33EBE4100F> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1080000 -  0x1088fff  com.apple.PhotoFoundation (1.0 - 10.17) <D48FDC95-21FC-328C-9F4F-89C28A260C2D> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10f6000 -  0x12d2ffb  com.apple.geode (1.5.3 - 270.7) <DFD97416-FD86-3AF1-BFF0-79A47DADE257> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x1361000 -  0x1366ff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <65A74F18-5020-31EC-B7E9-EBC14E2D9CA1> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x136e000 -  0x139dff7  com.apple.iLifeAssetManagement (2.7 - 40.34) <2B65BA8A-2C25-360D-B50E-0A9EECA1CE57> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x13c2000 -  0x13e9ff3  com.apple.iPhoto.Tessera (1.1 - 70.18) <F190FD9B-9CC9-3D4D-9744-113F7CA36097> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x13fe000 -  0x1422ffb  com.apple.iPhoto.Tellus (1.3 - 70.18) <768463A7-60B4-3D50-B36B-D6E5AFA43DC9> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x143b000 -  0x1446fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <86E53BF3-BCAD-36F9-999B-013E359EF079> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x1454000 -  0x1469ffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <4A781CBF-9764-3531-91E0-94C5B4DFCFDF> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x1477000 -  0x14a0ff3  com.apple.DiscRecordingUI (7.0 - 7000.2.4) <F503C1F1-2E26-348A-86C1-B2E447112AC9> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x14bb000 -  0x14bdfff  com.apple.ExceptionHandling (1.5 - 10) <435C80BD-F463-360B-86CA-5E001CACD421> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x14c5000 -  0x14d0ff7  com.apple.UpgradeChecker (9.2 - 9.2) <D34CC218-8200-34D7-816C-B747EE4BF5F7> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14db000 -  0x155aff7  com.apple.iLifeMediaBrowser (2.7.2 - 546) <824E7748-CA28-3105-B5C3-27E9D8C6D465> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x159f000 -  0x16bdff3  com.apple.WebKit (8536 - 8536.26.14) <C98F734D-D579-3F89-9A58-9EE890B1748E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x1771000 -  0x1786ff7  com.apple.iChat.InstantMessage (7.0.1 - 3305) <2EB77610-6036-3CCD-9A93-51F7D6DE6EB2> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x1797000 -  0x1b30ff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <B03978EF-A395-30D4-833B-7C474E1F5F12> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1c2e000 -  0x1ebfff3  com.apple.iLifePageLayout (1.3 - 200.9) <067ACE80-5B73-39EE-850B-E392F6573AAC> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1f99000 -  0x2030ff7  com.apple.MobileMe (13 - 1.0.4) <5E6C6DEC-1F48-358F-8117-40FAAEB8AFAD> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x208b000 -  0x20f3ff3  com.apple.proxtcore (1.4.1 - 250.56) <BBADA727-FB78-32AF-8D45-4498F68343A7> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x2135000 -  0x2233ff7  com.apple.iLifeSQLAccess (1.7.1 - 60.5) <845C6292-8EC2-3B4A-8E2E-8D98986148C2> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x227d000 -  0x22a8ffb  com.apple.ProUtils (1.1 - 200.36) <E286BD1F-0BE8-3151-B758-89870AB4AC89> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x22c3000 -  0x232efff  com.apple.iLifeKit (1.3.1 - 156.11) <F93283F4-046D-3653-9607-8B0F850E6318> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x2375000 -  0x25a6ff3  com.apple.prokit (7.3.1 - 1943) <4F8BB1EA-FA77-3B98-8889-8045F3F23A38> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x26c0000 -  0x2becffb  com.apple.RedRock (1.9.4 - 310.33) <548258F5-3AE9-3AD4-B986-A9674D131164> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2deb000 -  0x2e0effb  com.apple.AOSAccounts (1.1.2 - 1.1.94) <B0C709CB-DB8D-37D3-A58C-542703F4856B> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2e29000 -  0x2e29fff  com.apple.SafariServices.framework (8536 - 8536.26.17) <7AC5C0A5-0A71-33DD-A5C2-72545BEE3D3C> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x2e31000 -  0x2e38ff7  com.apple.AOSNotification (1.7.0 - 636.2) <F68F735D-0B5C-3F27-9E39-FB296CF82958> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x2e45000 -  0x2e45ffc  com.apple.SafariDAVNotifier (1.1.1 - 1) <4173B9EB-A1C5-31BD-955B-E9D3CAB862C4> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2e4d000 -  0x30bcfff  com.apple.CalendarStore (6.0 - 1245) <F1909196-2119-3516-952D-32E756BCC04D> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x31c2000 -  0x321efff  com.apple.corelocation (1.0 - 1239.39) <8159C021-DE49-332F-859E-00D7544EB568> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x324b000 -  0x324bff7 +cl_kernels (???) <69CFB0E9-F2D0-4DB0-AC00-54474AADD5F1> cl_kernels
    0x324d000 -  0x327fff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x3293000 -  0x329cfff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x32a6000 -  0x32aeff3  com.apple.AppSandbox (2.0 - 1) <5C586FB0-9EBB-3F14-A63F-497C7A034359> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x32b8000 -  0x32fcff3  com.apple.CalDAV (6.0 - 112.5) <DF589033-DBDE-3162-A17D-401B39897767> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x332e000 -  0x3337ff3  com.apple.CalendarAgentLink (1.0 - 37) <2D0AFE12-0235-3B60-B786-0EC07AC9F52C> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x3347000 -  0x3358fff  com.apple.CalendarFoundation (1.0 - 29) <D8714276-78B5-35A5-8C34-694E51AD9EB6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x336a000 -  0x33ccfff  com.apple.coredav (1.0.1 - 179.6) <80D3EE71-AA9C-3954-B262-6BB8FCB293BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x3408000 -  0x3455ffb  com.apple.ExchangeWebServices (3.0 - 157) <29FBE8CC-2EC5-3209-B2CB-DD32E3E2ECC7> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x34ab000 -  0x34f9fff  com.apple.iCalendar (6.0 - 126.5) <C30CAF95-3D02-3E2E-8855-51DCDF8DB219> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x3526000 -  0x3533ffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x353f000 -  0x368bfff  com.apple.syncservices (7.0 - 713) <442C8E15-8870-3D65-98EC-82C0E2580EC0> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x3708000 -  0x3775ffb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <6879CD26-8E35-315B-897C-D52B6EB741F6> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x37a4000 -  0x37cbff3  libsandbox.1.dylib (220) <E0C000DD-DA39-3A7E-BDA9-4699D264729E> /usr/lib/libsandbox.1.dylib
    0x37d3000 -  0x37e6ff3  com.apple.AppContainer (2.0 - 1) <799C8E8B-F983-3A3D-91CF-A2C9B5B7D007> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x37f6000 -  0x37fafff  com.apple.SecCodeWrapper (2.0 - 1) <EBB54594-C7F3-37FA-9759-09BD098ED688> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x3802000 -  0x3806ffe  libMatch.1.dylib (17) <29090908-32A9-3087-B197-00128F5954CD> /usr/lib/libMatch.1.dylib
    0x380b000 -  0x380dffb  com.apple.LibraryRepair (1.0 - 1) <73246564-BF68-3833-B9A3-3CDA607BA706> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x3815000 -  0x386ffff  com.apple.proapps.MIO (1.0.6 - 512) <8321DF77-4AD8-376B-9465-83F471AA61D2> /Applications/iPhoto.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x3887000 -  0x4516ff3  com.apple.WebCore (8536 - 8536.26.14) <82E97E6B-3F31-39A7-B41F-CD308E6EF238> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x4c9b000 -  0x4c9cfff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
    0x4ca1000 -  0x4ca2ffd +cl_kernels (???) <A26154C1-9860-4ADE-B5EB-235F89E1CF7A> cl_kernels
    0x4ca4000 -  0x4cc9ff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
    0x4cd5000 -  0x4d09fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
    0x4d14000 -  0x4e7bfff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
    0x4e82000 -  0x4edefff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <DC8444CC-FAAB-3DCA-A644-8712001A5F2E> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x4ef7000 -  0x5011ff3  com.apple.avfoundation (2.0 - 361.25) <0CB46B4A-8330-3BD8-B081-71314C6687A5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x50b0000 -  0x50e8ff3  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311.1) <1F651752-FD09-3CF5-BCCC-5C1366DDFACD> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x5105000 -  0x512cff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D963392A-4B4C-3B81-A873-E1C06C6829E6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x5141000 -  0x5172ff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x5189000 -  0x51d1ffb  com.apple.CoreMediaIOServices (171.0 - 3244) <9563BB38-F23A-3FC6-855D-05487E700465> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x51f4000 -  0x5293fff  com.apple.imcore (8.0 - 900) <2052F6C8-BDD3-339B-B0E2-6A3E282010A4> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x52bb000 -  0x530fff7  com.apple.imfoundation (8.0 - 900) <7A1506BB-DDAD-3DB7-8557-19AB1B519FB0> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x533c000 -  0x5344ff7  com.apple.marco (8.0 - 900) <C2AE3F46-EFC9-349E-8D24-DF686C9BE2E7> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x534d000 -  0x5374ff7  com.apple.ExpressCheckout (1.0 - 1.0) <ACE460FA-35FB-3C0E-9BA8-937F560F0847> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/ExpressCheckout.framework/Versions/A/ExpressCheckout
    0x5390000 -  0x53beffb  com.apple.iLifeImageAnalysis (3.0 - 3) <82BEE3DD-958D-35A6-B167-C8C0C31227DB> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/iLifeImageAnalysis.framework/Versions/A/iLifeImageAnalysis
    0xcf1d000 -  0xcf2aff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xd857000 -  0xd85bff7  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <08137D06-718F-30B1-8BF3-9498BEAFA5C6> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xd877000 -  0xd879fff +com.unsanity.menuextraenabler (1.0.3 - 1.0.3) /Library/InputManagers/*/Menu Extra Enabler.bundle/Contents/MacOS/Menu Extra Enabler
    0xd888000 -  0xdb14ffb  com.apple.RawCamera.bundle (4.03 - 676) <53F1CD12-96E9-3E41-BEA9-46B75FC707D4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x13185000 - 0x13186ffe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1167) <341A7E90-613E-3306-919F-8F49EE350831> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x1318b000 - 0x1318cffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x131b6000 - 0x13342ff8  GLEngine (8.6.1) <2660B1D4-5783-3BED-8C05-F5A4C5A29715> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x13379000 - 0x134caff7  libGLProgrammability.dylib (8.6.1) <E134D5DE-5A89-338A-A938-C7D80F272C9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x134f8000 - 0x13785fff  com.apple.ATIRadeonX2000GLDriver (8.0.61 - 8.0.0) <62F8082A-963D-3F5A-9917-2AAF68EF6DF9> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x137bb000 - 0x137c7ffb  libGPUSupport.dylib (8.6.1) <FB98F9CE-31D0-321C-90FE-87D30294921B> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x137ce000 - 0x137faffa  GLRendererFloat (8.6.1) <D0348D87-ADBD-302B-95D0-FB3100C219BA> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x13803000 - 0x1380bffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x13812000 - 0x13814fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x1383a000 - 0x138ccff7  unorm8_bgra.dylib (2.1.19) <A2C66114-F581-3D86-9BC9-9994156640AF> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x138de000 - 0x13920fff  com.apple.facetimeservices (8.0 - 900) <CB59547A-C7DE-3F20-8A1F-724AF15F664E> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x13938000 - 0x1393bffe  com.apple.DirectoryServicesSource (2.1 - 1167) <2A3AD43B-950C-32AD-A578-3271EAD55E3E> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x13941000 - 0x13992ff7  com.apple.AddressBook.CardDAVPlugin (10.8 - 332) <DED18914-309A-31FF-A367-BB0D62384728> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x139af000 - 0x139beffd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <F44F3EFC-380F-3CA2-A04E-E0306100570A> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x13f7e000 - 0x13f83ffe  com.apple.iphoto.accountconfig.Email (9.2 - 9.2) <50B32E94-2383-3409-A2AE-8367DE6CD6EF> /Applications/iPhoto.app/Contents/PlugIns/Email.accountconfigplugin/Contents/Ma cOS/Email
    0x13fae000 - 0x13fb1fff  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <A69EF05F-5213-3D42-B6C5-97D4C8C5E7A7> /Applications/iPhoto.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents /MacOS/Facebook
    0x15ffd000 - 0x160bbff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FD

    On the destination computer  launch iPhoto with the Option key held down and create a new, test library.  Import some photos and check to see if the same problem persists. If you can import a couple of times successfully the problem lies with your orignal library on the destination Mac. 
    If that's the case  make a temporary, backup copy of your library if you don't already have one (Control-click on the library and select Duplicate from the contextual menu) and  apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #3, followed by #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.

  • Shared library extended class Error #1065: Variable is not defined

    Right, bit of a complicated set-up  here. I've got a class structure which includes the View class:
    com.website.buttons.MyButton
    Then i've got a shared library swc called sharedassets.swc  that contains a MovieClip in the library that uses  'com.website.buttons.MyButton' as its 'Linkage Properties' base class,  extending with the following empty class:
    com.website.timeline.sharedassets.BackButton
    Then i've got a second  swc that  imports the BackButton mc into its own library as a shared library asset, and uses an instance of  it on the stage in a MovieClip of it's own called LinearNavBar.  LinearNavBar's Linkage Properties are thus:
    Class: com.website.timeline.sequence.LinearNavBar
    Base class: com.website.navigation.LinearNavbar
    Again, 'com.website.navigation.LinearNavbar' is an actual class in the code base, whilst 'com.website.timeline.sequence.LinearNavBar' does not exits (ie: its dynamically created by the swc at compile time). 'Automatically declare stage instances' is unchecked
    Over in the class structure in my  Flash Builder project, I've got another class
    com.website.navigation.Sequence
    Which instantiates a new version of  LinearNavBar and adds it to the stage:
    var navBar:Navbar = new LinearNavBar();
    addChild(navBar);
    At which point the following error is  shown:
    ReferenceError: Error #1065: Variable BackButton is not defined.
    It seems Flash Builder cannot find 'com.website.timeline.sharedassets.BackButton', even though BOTH compiled swcs are included as part of the projects.
    What gives, my friends? I am most heartily perplexed.

    I have on the permit debugging option but it says nothing but these errors
    ReferenceError: Error #1065: Variable Button is not defined.
    ReferenceError: Error #1065: Variable ComponentShim is not defined.
    ReferenceError: Error #1065: Variable LoaderProV3AS3 is not defined.

  • OCCI client application crashing, when implemented in a shared library

    Dear All,
    I have a problem running my Oracle C++ client using OCCI.
    The client crashes when it tries to call the OCCI createConnection method.
    The crash happen only if the connection method is implemented inside of an object that it is build in a shared library, which after it is linked to the main program. If I implement everything in the main function the crash does not happen.
    I am building and running my client on SLES9 service pack 2 (Linux kernel 2.6.5) using Oracle 10.2g (10.2.0.1) and gcc 3.3.3, glibc 2.3.3 and libaio-0.3 and libaio-devel-0.3.
    ==================================================
    Attaching the core with gdb, I get the following stack:
    #0 0x400c2f4e in parse_lsda_header () from /usr/lib/libstdc++.so.5
    #1 0x400c324c in __gxx_personality_v0 () from /usr/lib/libstdc++.so.5
    #2 0x40111454 in UnwindRaiseException () from /lib/libgcc_s.so.1
    #3 0x401115dc in UnwindResume_or_Rethrow () from /lib/libgcc_s.so.1
    #4 0x400c368f in __cxa_rethrow () from /usr/lib/libstdc++.so.5
    #5 0x40284b8a in TAG_PACKET_38 () from /home/oracle/app/10.2g/lib/libocci.so.10.1
    #6 0x402819da in ZN6oracle4occi14ConnectionImplC9EPNS015EnvironmentImplERKSsS5_S5_ () from /home/oracle/app/10.2g/lib/libocci.so.10.1
    #7 0x4028606f in oracle::occi::ConnectionImpl::ConnectionImpl () from /home/oracle/app/10.2g/lib/libocci.so.10.1
    #8 0x4028074b in oracle::occi::EnvironmentImpl::createConnection () from /home/oracle/app/10.2g/lib/libocci.so.10.1
    #9 0x4001ba2a in oralib::connect (this=0x804a008) at oraclelib.cpp:46
    #10 0x08048a27 in main () at oramain.cpp:14
    When, I run my client with valgrind that the output is the following:
    oracle@nemesis:~/app/10.2g/rdbms/demo/parc_example> valgrind ./oramain
    ==32212== Memcheck, a memory error detector.
    ==32212== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al.
    ==32212== Using LibVEX rev 1732, a library for dynamic binary translation.
    ==32212== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP.
    ==32212== Using valgrind-3.2.3, a dynamic binary instrumentation framework.
    ==32212== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al.
    ==32212== For more details, rerun with: -v
    ==32212==
    === Calling init()
    *** Creating the environment...
    - m_env = 0x5390318
    done!
    === Calling connect()
    *** Connecting using following setting:
    - user : SCOTT
    - passwd : TIGER
    - connString :
    ==32213==
    ==32213== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 32 from 1)
    ==32213== malloc/free: in use at exit: 724,565 bytes in 377 blocks.
    ==32213== malloc/free: 611 allocs, 234 frees, 757,833 bytes allocated.
    ==32213== For counts of detected errors, rerun with: -v
    ==32213== searching for pointers to 377 not-freed blocks.
    ==32213== checked 1,912,228 bytes.
    ==32213==
    ==32213== LEAK SUMMARY:
    ==32213== definitely lost: 39 bytes in 1 blocks.
    ==32213== possibly lost: 3,030 bytes in 2 blocks.
    ==32213== still reachable: 721,496 bytes in 374 blocks.
    ==32213== suppressed: 0 bytes in 0 blocks.
    ==32213== Rerun with --leak-check=full to see details of leaked memory.
    ==32212== Invalid read of size 1
    ==32212== at 0x40CAF4E: parse_lsda_header(_Unwind_Context*, unsigned char const*, lsda_header_info*) (in /usr/lib/libstdc++.so.5.0.6)
    ==32212== by 0x40CB24B: __gxx_personality_v0 (in /usr/lib/libstdc++.so.5.0.6)
    ==32212== by 0x411A453: UnwindRaiseException (in /lib/libgcc_s.so.1)
    ==32212== by 0x411A5DB: UnwindResume_or_Rethrow (in /lib/libgcc_s.so.1)
    ==32212== by 0x40CB68E: __cxa_rethrow (in /usr/lib/libstdc++.so.5.0.6)
    ==32212== by 0x428CB89: oracle::occi::ConnectionImpl::openConnection(OCIEnv*, OCIError*, void*, unsigned, void*, unsigned, void*, unsigned, void*, unsigned, unsigned) (
    in /home/oracle/app/10.2g/lib/libocci.so.10.1)
    ==32212== by 0x42899D9: ZN6oracle4occi14ConnectionImplC9EPNS015EnvironmentImplERKSsS5_S5_ (in /home/oracle/app/10.2g/lib/libocci.so.10.1)
    ==32212== by 0x428E06E: oracle::occi::ConnectionImpl::ConnectionImpl(oracle::occi::EnvironmentImpl*, std::string const&, std::string const&, std::string const&) (in /ho
    me/oracle/app/10.2g/lib/libocci.so.10.1)
    ==32212== by 0x428874A: oracle::occi::EnvironmentImpl::createConnection(std::string const&, std::string const&, std::string const&) (in /home/oracle/app/10.2g/lib/liboc
    ci.so.10.1)
    ==32212== by 0x4023A29: oralib::connect() (oraclelib.cpp:46)
    ==32212== by 0x8048A26: main (oramain.cpp:14)
    ==32212== Address 0x123 is not stack'd, malloc'd or (recently) free'd
    ==32212==
    ==32212== Process terminating with default action of signal 11 (SIGSEGV)
    ==32212== Access not within mapped region at address 0x123
    ==32212== at 0x40CAF4E: parse_lsda_header(_Unwind_Context*, unsigned char const*, lsda_header_info*) (in /usr/lib/libstdc++.so.5.0.6)
    ==32212== by 0x40CB24B: __gxx_personality_v0 (in /usr/lib/libstdc++.so.5.0.6)
    ==32212== by 0x411A453: UnwindRaiseException (in /lib/libgcc_s.so.1)
    ==32212== by 0x411A5DB: UnwindResume_or_Rethrow (in /lib/libgcc_s.so.1)
    ==32212== by 0x40CB68E: __cxa_rethrow (in /usr/lib/libstdc++.so.5.0.6)
    ==32212== by 0x428CB89: oracle::occi::ConnectionImpl::openConnection(OCIEnv*, OCIError*, void*, unsigned, void*, unsigned, void*, unsigned, void*, unsigned, unsigned) (
    in /home/oracle/app/10.2g/lib/libocci.so.10.1)
    ==32212== by 0x42899D9: ZN6oracle4occi14ConnectionImplC9EPNS015EnvironmentImplERKSsS5_S5_ (in /home/oracle/app/10.2g/lib/libocci.so.10.1)
    ==32212== by 0x428E06E: oracle::occi::ConnectionImpl::ConnectionImpl(oracle::occi::EnvironmentImpl*, std::string const&, std::string const&, std::string const&) (in /ho
    me/oracle/app/10.2g/lib/libocci.so.10.1)
    ==32212== by 0x428874A: oracle::occi::EnvironmentImpl::createConnection(std::string const&, std::string const&, std::string const&) (in /home/oracle/app/10.2g/lib/liboc
    ci.so.10.1)
    ==32212== by 0x4023A29: oralib::connect() (oraclelib.cpp:46)
    ==32212== by 0x8048A26: main (oramain.cpp:14)
    ==32212==
    ==32212== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 32 from 1)
    ==32212== malloc/free: in use at exit: 680,744 bytes in 222 blocks.
    ==32212== malloc/free: 616 allocs, 394 frees, 760,162 bytes allocated.
    ==32212== For counts of detected errors, rerun with: -v
    ==32212== searching for pointers to 222 not-freed blocks.
    ==32212== checked 1,870,208 bytes.
    ==32212==
    ==32212== LEAK SUMMARY:
    ==32212== definitely lost: 132 bytes in 1 blocks.
    ==32212== possibly lost: 960 bytes in 1 blocks.
    ==32212== still reachable: 679,652 bytes in 220 blocks.
    ==32212== suppressed: 0 bytes in 0 blocks.
    ==32212== Rerun with --leak-check=full to see details of leaked memory.
    Segmentation fault
    Any Idea?
    Thanks in advance and Regards

    Dear All,
    I found the solution.
    It is enough to add the build flag: "-fPIC" to the g++

  • Loading shared library failed: Reports fatal: libgcc_s.so.1 : open failed

    Hi,
    I am developing a shared library in solaris. While loading the shared library it reports "ld.so.1: tn-tipc-config-bin: fatal: libgcc_s.so.1: open failed: No such file or directory". I noticed that libgcc_so.1 is available at /usr/sfw/lib. But this library is missing in some solaris build/install configuration. I want my library to loaded in any solaris system. So I want to reduce dependency over libgcc_s.so.1. By looking at the objdump of my shared library, I found that references to
    __register_frame_info and __deregister_frame_info which are provided by libgcc_s.so.1. Looks like these references are added by gccfss compiler since I dont call these functions in my code. Please suggest a method to remove reference for these functions.
    Thanks
    Shankar

    If you don't want to bring libraries your app depends on with you, the only choice you have is linking statically. It is a very bad idea to manually "detach" compiler-supplied library from the application unless you know exactly what you are doing. Even if your library does not call anything directly, initialization routines inserted by compiler may need routines from that library (just as an example).

  • Using V9 C++ parser within shared library (Solaris)

    I am trying to use the latest C++ version of XML parser within a shared library on Solaris (v8) but I am having a problem with an unresolved symbol when the shared library is loaded.
    ../bin/Release/xxsd: fatal: relocation error: file /space/xxs/bin/Release/libxxtOracle.so: symbol __0fJXMLParserHxmlinitPUcPFPvPCUcUi_vPvP6IxmlsaxcbTDTB: referenced symbol not found
    Compiler is Forte V6.
    We currently successfully use the previous version of the parser on Solaris (oraxml8) with same build settings within our application.
    I am able to build and run the sample demo successfully.
    Any suggestions as to what the problem is and how to get round it?.
    Mike

    All works fine!...
    $ mkdir /tmp/xxx
    $ cat > dllfile.c
    $ cat > dlluser.c
    $ gcc -fPIC -c dllfile.c
    $ gcc -shared -W1,-soname,libdllfile.so.1 -o libdllfile.so dllfile.o
    $ gcc -o prog dlluser.c -ldl
    $ ls -l
    total 56
    -rw-r--r-- 1 xxxxxx users 80 &#1040;&#1087;&#1088; 8 17:04 dllfile.c
    -rw-r--r-- 1 xxxxxx users 908 &#1040;&#1087;&#1088; 8 17:15 dllfile.o
    -rw-r--r-- 1 xxxxxx users 368 &#1040;&#1087;&#1088; 8 17:03 dlluser.c
    -rwxr-xr-x 1 xxxxxx users 5260 &#1040;&#1087;&#1088; 8 17:15 libdllfile.so
    -rwxr-xr-x 1 xxxxxx users 6412 &#1040;&#1087;&#1088; 8 17:16 prog
    $
    $ file *
    dllfile.c:     c program text
    dllfile.o:     ELF 32-bit MSB relocatable SPARC Version 1
    dlluser.c:     c program text
    libdllfile.so:     ELF 32-bit MSB dynamic lib SPARC Version 1, dynamically linked, not stripped
    prog:          ELF 32-bit MSB executable SPARC Version 1, dynamically linked, not stripped
    $
    $ su
    Password:
    # mkdir -p /root/shared_library/
    # cp libdllfile.so /root/shared_library/
    # exit
    $ ./prog
    With the changes
    library loaded
    Inside function
    $

Maybe you are looking for

  • K8N Neo4 Platinum random lock-ups and BSOD

    I built a new PC about 3 months ago and from day 1 it has always locked up / frozen at random intervals. Sometimes it also BSOD's with a Machine Check Exception. Seems to lock up / freeze more often when have multifple windows open eg. Multiple IE ru

  • Can't scan from my computer or to my computer from the scanner

    I used to be able to scan from my computer. Then the scanner function from the computer disappeared, but I could still scan at the HP8600 printer, and send it to my computer, but now my computer doesn't show up as an option in the scan function, and

  • Boot Camp Slipstream Says a Full Install is an Upgrade, Stalls Out?

    I'm attempting to install XP on a 2.16 GHz C2D MBP with Snow Leopard. I have created a 20gb partition using the Boot Camp Assistant. I have created a slipstream CD-R from a combination of a XP SP1 disc (bought the first day XP was released!) and the

  • I am interested in buying Business Catalyst as a UK Customer? What's the price please?

    I am interested in buying Business Catalyst as a UK Customer? What's the price please? I hope an Adobe agent will help. I tried to google it, but could not find a clear answer to my question. Thanks

  • Restore on Differnent Server

    Dear expert, I am using ECC 6.0 with Oracle 10.2 on HP Unix Server . Now I want to Change my Server. How I can backup of  my old server ? In my Old server 4 Client is there . I want to do that my new server as the same as old server . How should we t