Program crashes in OCI calls

All,
The program has set of OCI datatype converion calls from C native to Oracle types. The program crashes in OCI calls specifically in OCINumberFromReal. Below is the stack for the core dump created.
In call to OCINumberFromReal, when it refences lnxren function, the program crashes with SIGBUS.
The application in on solaris 10 and Oracle 11g.
pstack corecore 'core' of 163: quartzCABT -C dom=seirel620 -g 1 -i 127 -u sei4800 -U /home3/seirel620
f2520b7c _kill    (2, ffbfb374, 1, f4517e90, f43e1c74, ffbfb370) + 8
f37fcfc0 skgesig_sigactionHandler (1, 9a400, 9bd08, 0, 0, 1) + 25c
f24656c8 __sighndlr (a, ffbfc898, ffbfc5e0, f37fcd64, 0, 0) + c
f245f320 call_user_handler (a, ffbfc898, ffbfc5e0, 0, 0, 0) + 234
f245f4d0 sigacthandler (a, ffbfc898, ffbfc5e0, de79ff, 44, 80ee8) + 64
--- called from signal handler with signal 10 (SIGBUS) ---
f341ebcc lnxren (d6694c, 8, de7b42, 0, 0, caee98) + 514
f36617f4 OCINumberFromReal (f432df90, caed70, 3, de7b42, 13d4, 0) + 5d4
ff3653f0 __1cPedbCreateCommit6FpnIxlDArray_r1rpc_nMMESSAGE_TYPE__ (d66ab0, ffbfd950, ffbfd7dc, fffffff8, 0, dc5da8) + 948
ff36cc8c __1cUinvokeExtnlDBService6FipnIxlDArray_r1_nMMESSAGE_TYPE__ (1, d66ab0, ffbfd950, 1, 2, abc14d) + 8c
002b9b48 __1cUCA_GLOBAL_SUBCA_LINKXCABT4003ModGlblSubCALnk6MpnIxlDArray__nMMESSAGE_TYPE__ (abc152, d64ae0, 13b88, b49cac, f476a08c, 20) + bb0
002ba774 sh_CABT4003ModG (ffbfdc44, abc1ea, ffbfdc2c, abc1f4, ffbfdbf4, abc209) + 9cc
Please suggest on how to resolve this.
Thanks in advance
satish

hi Nikeda,
I replaced the sizeof(double) to DBL_DIG/FLT_DIG constant, now the program doesn't crashes but the conversion is not happening properly.
The result of any number after conversion is "0".
Any suggestions, Thanks in advance .. below is the code snippet u asked for ..
class ABC
double qty ;
ott structure
struct abc_ott
OCINumber qty ;
// pro*c code
EXEC SQL BEGIN DECLARE SECTION ;
abc_ott * abc_ott_inst ;
EXEC SQL END DECLARE SECTION ;
EXEC SQL ALLOCATE :abc_ott_inst ;
ABC * abc = new ABC ;
abc->qty = 100.0 ;
OCINumberFromReal(ociError, &abc->qty, (uword)sizeof(double), &abc_ott_inst->qty ) ;
// call with DBL_DIG
OCINumberFromReal(ociError, &abc->qty, DBL_DIG, &abc_ott_inst->qty ) ;
Edited by: user3894537 on May 20, 2010 8:25 AM
Edited by: user3894537 on May 20, 2010 8:38 AM

Similar Messages

  • Problem with OCI call  and  how to install and use 'DEBUG_EXTPROC' on Linux

    Hi,
    Can any one let me know how I can install and use this debug_extproc package. I have installed oracle XE server on Linux machine(32-bit).
    When I use : DEBUG_EXTPROC.STARTUP_EXTPROC_AGENT' ... i get an error saying that : it is not declared.
    I tried looking in all the directories but did not find the dbgextp.sql(which is required in order to install that package).And tried searching on google but could not get any relevant information.
    Also I am newbie to OCI call interface and also to C programming too: I have coded a external procedure or custom user aggregate in C. But since I was using C++ : 'set' STL. I have compiled my program using g++ instead of gcc and I have correspondingly modified the make file in public/demo directory.
    So, is it fine to do it that way: using OCI (instead of OCCI(C++)) but again compiling the pgm as a regular C++ using g++ instead of gcc.(But rest of the pgm including printf statements : everything is in C).
    Also I have created the library from my : custagg.so library:
    SQL> create or replace library custagg is '$ORACLE_HOME/lib/custagg.so'
    But my aggregate function implemented as external C function using OCI is either not recognised or else : if recognized then there is some error because of which i am getting the following errors : ORA-06522
    SQL> select MinDistance(TT) from egg1;
    select MinDistance(TT) from egg1
    ERROR at line 1:
    ORA-06520: PL/SQL: Error loading external library
    ORA-06522: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/lib/custagg.so:
    cannot dynamically load executable
    Please kindly answers my queries and trying to resolve this for almost 4 days now and could not find any clue on how to get this done.
    Thanks,
    -NN

    #/bin/make
    # Make file for OCI,OCCI and ODBC demos
    # Usage :
    # For compiling & linking the cdemo81.c file
    # make -f demo_xe.mk buildoci CDEMOEXE=cdemo81 CDEMOOBJS=cdemo81.o
    .SUFFIXES: .o .c .cpp
    ICINCHOME=$(ORACLE_HOME)/rdbms/public/
    ICLIBHOME=$(ORACLE_HOME)/lib
    ICLIBPATH=-L$(ICLIBHOME)
    THREADLIBS=-lthread
    CCLIB=$(ICLIBPATH) -lclntsh $(THREADLIBS)
    OCCILIB=$(ICLIBPATH) -locci -lclntsh $(THREADLIBS)
    CCINCLUDES = -I$(ICINCHOME)
    CCFLAGS=$(CCINCLUDES) -D_REENTRANT -g -xs
    LDFLAGS=
    SO_EXT=.so
    EXTLDFLAGS=$(LDFLAGS) -shared
    REMOVE=rm -rf
    MKLINK=ln
    MAKE=make
    MAKEFILE=demo_xe.mk
    CDEMOEXE=custagg.so
    CDEMOOBJS=custagg.o
    OCCIDEMO=occidml
    OCCIOBJDEMO=occiobj
    OTT=$(ORACLE_HOME)/bin/ott
    OCCIOTTUSR=hr
    OCCIOTTPWD=hr
    ODBCDEMOEXE=odbcdemo
    ODBCDEMOOBJS=odbcdemo.o
    AQDEMOEXE=ociaqdemo00
    AQDEMOOBJS=ociaqdemo00.o
    EXTDEMO=extdemo2.so
    CC=/usr/bin/g++
    echo "LIBCLNT value is :" $(LIBCLNT)
    echo "CC value is :" $(CC)
    .c.o:
    g++ -c -I$(ICINCHOME) $(CCFLAGS) $<
    all: clean buildoci
    echo "LIBCLNT value is :" $(LIBCLNT)
    buildoci: $(LIBCLNT) $(CDEMOOBJS)
    g++ -o $(CDEMOEXE) $(LDFLAGS) $(CDEMOOBJS) $(CCLIB)
    echo "CC value is :" $(CC)
    echo "LIBCLNT value is :" $(LIBCLNT)
    clean:
    $(REMOVE) $(CDEMOOBJS) $(CDEMOEXE)
    # This port-specific file is currently empty on Solaris. Product
    # lines may use this file to override compiler definitions and
    # flags used in occi.mk.
    # Linux compiler definitions
    CC=/usr/bin/gcc
    cc=/usr/bin/gcc
    CCFLAGS=$(CCINCLUDES) -DLINUX -D_GNU_SOURCE -D_REENTRANT -g
    LDFLAGS=-g
    # This macro CCINCLUDES has to be redefined on Linux because of
    # the existence of the 'new' directory in t_work. The name new
    # clashes with a system header file.
    CCINCLUDES = -idirafter .
    THREADLIBS=-lpthread
    ifdef BUILD_CCC296
    CC=/usr/bin/g++296
    endif
    And I am executing the make file using the command :
    make -f demo12.mk buildoci CDEMOEXE=custagg.so CDEMOOBJS=custagg.o
    I am not getting any error while running this make file.
    Can you please tell me whether PLSQL/Oracle is able to locate the file or not. Incase, if it is locating the file but due to some error in the custagg.so it is throwing that error. If this is the case, is there any way that i can debug the C program .....how can i install the debug_extproc package.. I am really new to C & OCI ... if the custagg.so is being located then there might be some problem with the way I am dynamically allocating memory to some variables.
    Please kindly reply to this Post/response.
    Please let me know if you also want to see my program code.
    Thanks & Regards,
    -NN

  • Invalid datatype in OCI call ?

    Hello,
    Why i got
    ORA-01024: invalid datatype in OCI call
    when i'm trying to select a clob column from a table? that column contains 'hello world'. i don't know what causes this error..
    Thanks

    ORA-01024:     invalid datatype in OCI call
    Cause:     An OCI program call specified an invalid datatype. In OCI calls, Oracle datatypes are specified as numbers between 1 and 7.
    Action:     Check the datatype description and enter the correct number for the datatype. Please use search, before posting.

  • Programs crashing in Lion

    For the past two weeks I have experienced a number of program crashes with Lion.  They all are due to bad some type of kernel error and the latest program to continually crash is iTunes which has now crashed 5 times this morning.   I have done everything from resetting the PRAM to resinstalling Lion and from reading the posts in the discussion area it seems to be an issue with the 10.6.3 update and the graphics driver.   If anyone has a fix or knows what is going on PLEASE post a response here.
    Process:         iTunes [10163]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         10.4.1 (10.4.1)
    Build Info:      iTunes-10411001~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [254]
    Date/Time:       2011-09-27 06:05:27.684 -0700
    OS Version:      Mac OS X 10.7.1 (11B26)
    Report Version:  9
    Interval Since Last Report:          322266 sec
    Crashes Since Last Report:           48
    Per-App Interval Since Last Report:  339217 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      EE9223DB-0074-42EC-BF0A-555C28801AEC
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00007fff7973d000
    VM Regions Near 0x7fff7973d000:
        __DATA                 00007fff79739000-00007fff7973d000 [   16K] rw-/rwx SM=COW  /usr/lib/libcups.2.dylib
    --> Submap                 00007fff7973d000-00007fff80000000          r--/rwx process-only submap
        Submap                 00007fff80000000-00007fffc0000000          r--/rwx machine-wide submap
    Application Specific Information:
    objc[10163]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x00007fff8e167d80 memmove$VARIANT$sse42 + 195
    1   libobjc.A.dylib                         0x00007fff900bccd0 _memdup_internal + 56
    2   libobjc.A.dylib                         0x00007fff900bcb3e fixupMethodList(method_list_t*, signed char) + 41
    3   libobjc.A.dylib                         0x00007fff900bc988 attachMethodLists(class_t*, method_list_t**, int, signed char, signed char*) + 321
    4   libobjc.A.dylib                         0x00007fff900bc61d realizeClass(class_t*) + 3971
    5   libobjc.A.dylib                         0x00007fff900c18cb _class_getNonMetaClass + 114
    6   libobjc.A.dylib                         0x00007fff900c1538 _class_initialize + 22
    7   libobjc.A.dylib                         0x00007fff900c1517 prepareForMethodLookup + 237
    8   libobjc.A.dylib                         0x00007fff900c12bb lookUpMethod + 63
    9   libobjc.A.dylib                         0x00007fff900bef3c objc_msgSend + 188
    10  com.apple.WebCore                       0x00007fff8b8fbc9c WebCore::PlatformCAAnimation::setValueFunction(WebCore::PlatformCAAnimation::Va lueFunctionType) + 166
    11  com.apple.WebCore                       0x00007fff8b8fb6a0 WebCore::GraphicsLayerCA::setTransformAnimationEndpoints(WebCore::KeyframeValue List const&, WebCore::Animation const*, WebCore::PlatformCAAnimation*, int, WebCore::TransformOperation::OperationType, bool, WebCore::IntSize const&) + 1968
    12  com.apple.WebCore                       0x00007fff8b8fa379 WebCore::GraphicsLayerCA::createTransformAnimationsFromKeyframes(WebCore::Keyfr ameValueList const&, WebCore::Animation const*, ***::String const&, double, WebCore::IntSize const&) + 561
    13  com.apple.WebCore                       0x00007fff8b8fa0ef WebCore::GraphicsLayerCA::addAnimation(WebCore::KeyframeValueList const&, WebCore::IntSize const&, WebCore::Animation const*, ***::String const&, double) + 319
    14  com.apple.WebCore                       0x00007fff8b9192b6 WebCore::RenderLayerBacking::startTransition(double, int, WebCore::RenderStyle const*, WebCore::RenderStyle const*) + 1468
    15  com.apple.WebCore                       0x00007fff8b8f301a WebCore::ImplicitAnimation::startAnimation(double) + 54
    16  com.apple.WebCore                       0x00007fff8b8dd110 WebCore::AnimationBase::updateStateMachine(WebCore::AnimationBase::AnimStateInp ut, double) + 722
    17  com.apple.WebCore                       0x00007fff8b7199c5 WebCore::AnimationControllerPrivate::styleAvailable() + 107
    18  com.apple.WebCore                       0x00007fff8b719914 WebCore::AnimationController::endAnimationUpdate() + 20
    19  com.apple.WebCore                       0x00007fff8b74e00e WebCore::Document::updateStyleForAllDocuments() + 138
    20  com.apple.WebCore                       0x00007fff8b8f40fc WebCore::ScheduledAction::execute(WebCore::Document*) + 170
    21  com.apple.WebCore                       0x00007fff8b8f3eda WebCore::DOMTimer::fired() + 362
    22  com.apple.WebCore                       0x00007fff8b6a4a4e WebCore::ThreadTimers::sharedTimerFiredInternal() + 120
    23  com.apple.WebCore                       0x00007fff8b6a49a7 _ZN7WebCoreL10timerFiredEP16__CFRunLoopTimerPv + 55
    24  com.apple.CoreFoundation                0x00007fff8b169694 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    25  com.apple.CoreFoundation                0x00007fff8b1691e6 __CFRunLoopDoTimer + 534
    26  com.apple.CoreFoundation                0x00007fff8b149ba1 __CFRunLoopRun + 1617
    27  com.apple.CoreFoundation                0x00007fff8b149216 CFRunLoopRunSpecific + 230
    28  com.apple.HIToolbox                     0x00007fff8aa224ff RunCurrentEventLoopInMode + 277
    29  com.apple.HIToolbox                     0x00007fff8aa29c21 ReceiveNextEventCommon + 355
    30  com.apple.HIToolbox                     0x00007fff8aa29aae BlockUntilNextEventMatchingListInMode + 62
    31  com.apple.AppKit                        0x00007fff904f0191 _DPSNextEvent + 659
    32  com.apple.AppKit                        0x00007fff904efa95 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    33  com.apple.AppKit                        0x00007fff904ec3d6 -[NSApplication run] + 463
    34  com.apple.iTunes                        0x000000010ae54f9d 0x10ae52000 + 12189
    35  com.apple.iTunes                        0x000000010ae54e04 0x10ae52000 + 11780
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff89c277e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff9307160e _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff9307019e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff89c27192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e190594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8e191b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff89c27192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e190594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8e191b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff89c2567a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89c24d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8b14129c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8b149a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8b149216 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8b158f2f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010ae60894 0x10ae52000 + 59540
    7   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff89c26bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e192274 _pthread_cond_wait + 840
    2   com.apple.iTunes                        0x000000010ae60a37 0x10ae52000 + 59959
    3   com.apple.iTunes                        0x000000010ae9512b 0x10ae52000 + 274731
    4   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff89c26df2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8b19266b __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff89c2567a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89c24d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8b14129c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8b149a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8b149216 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8b158f2f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010ae9d38e 0x10ae52000 + 308110
    7   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff89c26bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e192274 _pthread_cond_wait + 840
    2   libgnsdk_sdkmanager.1.9.1.dylib          0x000000010c56859f gnsdk_sdkmanager_register_interface + 423855
    3   libgnsdk_sdkmanager.1.9.1.dylib          0x000000010c567525 gnsdk_sdkmanager_register_interface + 419637
    4   libgnsdk_sdkmanager.1.9.1.dylib          0x000000010c569282 gnsdk_sdkmanager_register_interface + 427154
    5   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff89c2647a __accept + 10
    1   com.apple.iTunes                        0x000000010b58200d 0x10ae52000 + 7536653
    2   com.apple.iTunes                        0x000000010b56b60f 0x10ae52000 + 7443983
    3   com.apple.iTunes                        0x000000010b56b7b2 0x10ae52000 + 7444402
    4   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff89c2647a __accept + 10
    1   com.apple.iTunes                        0x000000010b58200d 0x10ae52000 + 7536653
    2   com.apple.iTunes                        0x000000010b56b60f 0x10ae52000 + 7443983
    3   com.apple.iTunes                        0x000000010b56b7b2 0x10ae52000 + 7444402
    4   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff89c2567a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89c24d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8b14129c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8b149a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8b149216 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8b158f2f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010ae60894 0x10ae52000 + 59540
    7   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 12:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff89c26bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e192274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff92062ba0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                       0x00007fff8b6a72ba ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore                       0x00007fff8b6a7213 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore                       0x00007fff8b6a715b WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 13:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff89c2567a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89c24d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8b14129c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8b149a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8b149216 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff88255a97 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff8824a1ea -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff8824a162 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 14:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib                  0x00007fff89c2567a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89c24d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8b14129c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8b149a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8b149216 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8b158f2f CFRunLoopRun + 95
    6   com.apple.QTKit                         0x00007fff887d4702 listenOnDelegatePort + 418
    7   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 15:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib                  0x00007fff89c2567a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89c24d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8b14129c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8b149a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8b149216 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8b158f2f CFRunLoopRun + 95
    6   com.apple.QTKit                         0x00007fff887d4b99 listenOnNotificationPort + 376
    7   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 16:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff89c26bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e192274 _pthread_cond_wait + 840
    2   com.apple.CoreVideo                     0x00007fff94293b3a CVDisplayLink::runIOThread() + 710
    3   com.apple.CoreVideo                     0x00007fff9429385b _ZL13startIOThreadPv + 148
    4   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff89c27192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e190594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8e191b85 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff89c2567a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89c24d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8b14129c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8b149a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8b149216 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8b158f2f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010ae60894 0x10ae52000 + 59540
    7   libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff89c2567a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89c24d71 mach_msg + 73
    2   com.apple.iTunes                        0x000000010af767e3 0x10ae52000 + 1198051
    3   com.apple.iTunes                        0x000000010aea6676 0x10ae52000 + 345718
    4   com.apple.iTunes                        0x000000010af7708c 0x10ae52000 + 1200268
    5   com.apple.iTunes                        0x000000010af795f7 0x10ae52000 + 1209847
    6   com.apple.iTunes                        0x000000010b480a68 0x10ae52000 + 6482536
    7   com.apple.iTunes                        0x000000010b482941 0x10ae52000 + 6490433
    8   com.apple.iTunes                        0x000000010b486ea1 0x10ae52000 + 6508193
    9   com.apple.iTunes                        0x000000010af76c57 0x10ae52000 + 1199191
    10  com.apple.iTunes                        0x000000010af7681c 0x10ae52000 + 1198108
    11  com.apple.iTunes                        0x000000010af6d534 0x10ae52000 + 1160500
    12  libsystem_c.dylib                       0x00007fff8e18e8bf _pthread_start + 335
    13  libsystem_c.dylib                       0x00007fff8e191b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0xffff800253c6dc0f  rbx: 0x00000000f14b1ed8  rcx: 0xffffffff0fcebd40  rdx: 0x0000000000000018
      rdi: 0x00000002bd6beec0  rsi: 0x0000800069a512b1  rbp: 0x00007fff6aa4fa00  rsp: 0x00007fff6aa4fa00
       r8: 0x0000000000000564   r9: 0x00000000000001cc  r10: 0x0000000000000000  r11: 0x00000001cc20d000
      r12: 0x0000000000000000  r13: 0x0000000000000001  r14: 0x00007fff7859f3f1  r15: 0x00000001cc20d000
      rip: 0x00007fff8e167d80  rfl: 0x0000000000010282  cr2: 0x00007fff7973d000
    Logical CPU: 6
    Binary Images:
           0x10ae52000 -        0x10bd8eff7  com.apple.iTunes (10.4.1 - 10.4.1) <F88E03A5-CC9A-EF15-C4C3-16DE46FBCF09> /Applications/iTunes.app/Contents/MacOS/iTunes
           0x10c032000 -        0x10c0b7fff  com.apple.iTunes.iPodUpdater (10.4 - 10.4) <0BB55A3D-A8CD-6029-3DCE-5361636FA9FD> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
           0x10c108000 -        0x10c134ff7  com.apple.avfoundationcf (2.0 - 63) <6F363147-C007-31A6-A050-7D3C04E36E16> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
           0x10c165000 -        0x10c16bfff  com.apple.agl (3.1.4 - AGL-3.1.4) <FF5AC177-9B51-3FB8-9AD3-E2296CFC6BCA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10c174000 -        0x10c17afff  com.apple.iPod (1.7 - 19) <316D12C0-BB7B-30DC-97CE-33679C75E558> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x10c183000 -        0x10c461fe3 +libgnsdk_dsp.1.9.1.dylib (1.9.1 - compatibility 1.9.1) /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.1.dylib
           0x10c493000 -        0x10c4b4fef +libgnsdk_musicid.1.9.1.dylib (1.9.1 - compatibility 1.9.1) /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.1.dylib
           0x10c4cd000 -        0x10c5a5fff +libgnsdk_sdkmanager.1.9.1.dylib (1.9.1 - compatibility 1.9.1) /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.1.dylib
           0x10c5c9000 -        0x10c60cfff +libgnsdk_submit.1.9.1.dylib (1.9.1 - compatibility 1.9.1) /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.1.dylib
           0x10cad4000 -        0x10d8f0ff7  com.apple.CoreFP (1.12.20 - 1.12.20) <1C6B4F4F-F47A-F729-3BB2-4086E7E5BA0C> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x10ee3d000 -        0x10ef20fff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
           0x10f17f000 -        0x10f181fff  com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10ff90000 -        0x1100d9ff7  com.apple.audio.units.Components (1.7 - 1.7) <A68668EB-624D-3867-A392-5D2E026AF14A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x11014b000 -        0x11014ffff  com.apple.audio.AudioIPCPlugIn (1.2.0 - 1.2.0) <BFC42478-E85B-3ED5-960E-ACBFB580FF1B> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x110154000 -        0x11015afff  com.apple.audio.AppleHDAHALPlugIn (2.1.1 - 2.1.1f12) <B2B0AAA1-157C-3E65-B8A1-79C50D0191A3> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x1101e2000 -        0x11025cfff  com.apple.mobiledevice (423.2 - 423.2) <727DF3A6-8F67-943C-69CA-5D6B18B8F7AC> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x11029d000 -        0x1102c4fff  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <B0925A5D-5355-3ECE-BF2F-E576FF105F5A> /usr/lib/libssl.0.9.7.dylib
           0x1102e7000 -        0x1104c7ff7  com.apple.audio.codecs.Components (2.1 - 2.1) <F5E34804-C101-3086-B5C5-9A4C753198B1> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x111789000 -        0x111794fff  AppleIntelSNBVA (??? - ???) <17871C8B-6CB2-32FF-A142-7C87B9F9D70A> /System/Library/Extensions/AppleIntelSNBVA.bundle/Contents/MacOS/AppleIntelSNBV A
           0x112b4f000 -        0x112b7dff7  GLRendererFloat (??? - ???) <5002CC04-3AB8-3F8B-827F-DA07FC045617> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x113d64000 -        0x113eabfef  com.apple.AppleGVAFramework (2.2.69 - 2.2.69) <2C62A418-9115-38A5-83DC-96677D3AE358> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
           0x113ec6000 -        0x113f02fff  com.apple.ATIRadeonX3000VADriver (7.8.12 - 7.0.8) <ECA89B2A-2D30-39E9-8434-0C63C5580229> /System/Library/Extensions/ATIRadeonX3000VADriver.bundle/Contents/MacOS/ATIRade onX3000VADriver
           0x1143bb000 -        0x1144e7ff7  com.apple.AppleIntelHDGraphicsVADriver (7.8.12 - 7.0.8) <3EE1E288-E10F-32CC-9EE3-624EB8A590DA> /System/Library/Extensions/AppleIntelHDGraphicsVADriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsVADriver
           0x11973b000 -        0x1198d3ff7  GLEngine (??? - ???) <C8CED0FB-71CA-3E5A-B76F-87257BB0B586> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x119906000 -        0x1199fffff  libGLProgrammability.dylib (??? - ???) <B47BCF02-2C2A-3141-A5A5-60779E852640> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x119a25000 -        0x119d1bfe7  com.apple.ATIRadeonX3000GLDriver (7.8.12 - 7.0.8) <AB32BAD0-BC62-3F92-84D7-C760F2D5845D> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
           0x11a2f9000 -        0x11abaefef  com.apple.CoreKE (1.0.8 - 1.0.8) <BADE966D-0016-CF42-B365-BBADD2CEA01E> /System/Library/PrivateFrameworks/CoreKE.framework/CoreKE
        0x7fff6aa52000 -     0x7fff6aa86ac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
        0x7fff87bd7000 -     0x7fff87c6dff7  libvMisc.dylib (325.3.0 - compatibility 1.0.0) <AC5A384A-FA5A-3307-9CED-BD69E6F12A09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff87e45000 -     0x7fff87e99ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff87e9a000 -     0x7fff87ea8fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff87ea9000 -     0x7fff87fe2fef  com.apple.vImage (5.0 - 5.0) <C45D2CBE-FA15-3D13-9E9D-A3BF57B84BBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff87fe3000 -     0x7fff87fe9fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff87fea000 -     0x7fff8806cfff  com.apple.Metadata (10.7.0 - 627.9) <F293A9A7-9790-3629-BE81-D19C158C5EA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff880b4000 -     0x7fff88110ff7  com.apple.QuickLookFramework (3.0 - 489.1) <26470DFE-B3D7-3E05-A4D7-98B64FCB230B> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff88111000 -     0x7fff8812efff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <CC86755A-6CF1-3DDF-A1B0-6F7F5BD7BB39> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8812f000 -     0x7fff881a5fff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff881a6000 -     0x7fff881d5fff  com.apple.DictionaryServices (1.2 - 158) <2CE51CD1-EE3D-3618-9507-E39A09C9BB8D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff881f0000 -     0x7fff88502fff  com.apple.Foundation (6.7 - 833.1) <618D7923-3519-3C53-9CBD-CF3C7130CB32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff88503000 -     0x7fff8855afff  libTIFF.dylib (??? - ???) <9E32B490-4C5B-3D96-AF27-9C085C606403> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8855b000 -     0x7fff8855bfff  com.apple.vecLib (3.7 - vecLib 3.7) <29927F20-262F-379C-9108-68A6C69A03D0> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff885ea000 -     0x7fff885fcff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff885fd000 -     0x7fff887befe7  com.apple.CoreData (103 - 358.4) <8D8ABA2E-0161-334D-A7C9-79E5297E188B> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff887bf000 -     0x7fff887c0ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff887c1000 -     0x7fff8894bff7  com.apple.QTKit (7.7.1 - 2246) <C8A57DE8-A86A-34B6-B6BA-565EE3B6D140> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8894c000 -     0x7fff88c65fff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <398ABDD7-BB95-3C05-96D2-B54243FC4745> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff88d46000 -     0x7fff88d4efff  libsystem_dnssd.dylib (??? - ???) <407A48F3-64A0-348B-88E6-70CECD3D0D67> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff88d4f000 -     0x7fff88f51fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <82DCB94B-3819-3CC3-BC16-2AACA7F64F8A> /usr/lib/libicucore.A.dylib
        0x7fff88f52000 -     0x7fff88f52fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff88f53000 -     0x7fff88f54ff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <C6C49FB7-1892-32E4-86B5-25AD165131AA> /usr/lib/system/libremovefile.dylib
        0x7fff88f55000 -     0x7fff88f62fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <931F40EB-CA75-3A90-AC97-4DB8E210BC76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff88f63000 -     0x7fff88f63fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <3E4582EB-CFEF-34EA-9DA8-8421F1C3C77D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff88ff4000 -     0x7fff89018ff7  com.apple.Kerberos (1.0 - 1) <2FF2569B-F59A-371E-AF33-66297F512CB3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff89019000 -     0x7fff89019fff  com.apple.CoreServices (53 - 53) <5946A0A6-393D-3087-86A0-4FFF6A305CC0> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff89074000 -     0x7fff890defff  com.apple.framework.IOKit (2.0 - ???) <17181E34-343F-3374-A2EA-BA4D81A9AC72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff890f4000 -     0x7fff89111fff  libPng.dylib (??? - ???) <75DA9F95-C2A1-3534-9F8B-14CFFDE2A290> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff89112000 -     0x7fff8921ffff  libJP2.dylib (??? - ???) <D8257CEE-A1C3-394A-8193-6DB7C29A15A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff89220000 -     0x7fff89229fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <BD08553D-8088-38A8-8007-CF5C0B8F0404> /usr/lib/system/libnotify.dylib
        0x7fff8922a000 -     0x7fff892c4ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <B7573888-BAF6-333D-AB00-C0D2BF88DF0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff892c5000 -     0x7fff892c8fff  libCoreVMClient.dylib (??? - ???) <5C607B1C-E4DB-3050-B4BB-3A12CF9AC1C4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff89623000 -     0x7fff897adfff  com.apple.WebKit (7534 - 7534.48.3) <03AC8252-B3A1-3A7C-9DAF-99CC9DC56D5D> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff897ae000 -     0x7fff897affff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff89819000 -     0x7fff89860ff7  com.apple.CoreMedia (1.0 - 705.35) <6BEC7E0A-BC2E-30DA-8E18-7AF6E8A7821F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff89a82000 -     0x7fff89a82fff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <D75971EE-0D74-365A-8E52-46558EA49E87> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff89b29000 -     0x7fff89b30fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff89b31000 -     0x7fff89c0fff7  com.apple.DiscRecording (6.0 - 6000.4.1) <DB0D0211-953B-3261-A4FD-74D2AC671DA6> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff89c10000 -     0x7fff89c30fff  libsystem_kernel.dylib (1699.22.81 - compatibility 1.0.0) <B9E259FC-73EA-31E3-8E68-7F980DEBA8A6> /usr/lib/system/libsystem_kernel.dylib
        0x7fff89c5f000 -     0x7fff89c8cff7  com.apple.opencl (1.50.62 - 1.50.62) <616ADE61-11D1-3816-A255-3F0F80F2EAC8> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff89c8d000 -     0x7fff89c8fff7  com.apple.print.framework.Print (7.0 - 247) <579D7E49-A7F4-3C41-9434-3114B8A9B96C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff89c90000 -     0x7fff89d03fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff89d95000 -     0x7fff89da9ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff89daa000 -     0x7fff8a247fff  com.apple.RawCamera.bundle (3.8.0 - 577) <38481531-657E-DFFA-1EF4-ADFCA15DAC49> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8a270000 -     0x7fff8a365fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff8a366000 -     0x7fff8a3c8ff7  com.apple.coreui (0.3 - 162) <A752F9D0-1CAE-340F-B2D2-95EEF242B301> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8a3c9000 -     0x7fff8a3d4ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8a3e3000 -     0x7fff8a810fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8a811000 -     0x7fff8a86bfff  com.apple.HIServices (1.9 - ???) <8791E8AA-C034-330D-B2BA-5141154C21CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8aa15000 -     0x7fff8aa1fff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
        0x7fff8aa20000 -     0x7fff8ad43fff  com.apple.HIToolbox (1.7 - ???) <10FA3432-6638-39D9-8681-9E95298D239E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8ad44000 -     0x7fff8ad45fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8ad4e000 -     0x7fff8b025fff  com.apple.security (7.0 - 55010) <2418B583-D3BD-3BC5-8B07-8289C8A5B43B> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8b08c000 -     0x7fff8b110ff7  com.apple.ApplicationServices.ATS (5.0 - ???) <F10B1918-A06E-3ECF-85EF-05F0CF27187E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8b111000 -     0x7fff8b2e4ff7  com.apple.CoreFoundation (6.7 - 635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8b2e5000 -     0x7fff8b2eafff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff8b2fa000 -     0x7fff8b30dff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8b30e000 -     0x7fff8b57ffff  com.apple.CoreImage (7.77 - 1.0.1) <AB6ECCF3-4B04-3363-9158-08F305BF15FA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8b580000 -     0x7fff8b585fff  com.apple.OpenDirectory (10.7 - 144) <E8AACF47-C423-3DCE-98F6-A811612B1B46> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8b586000 -     0x7fff8b5d9fff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <5FA4AED9-8E55-389C-9F5B-02FFE5BCBB75> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b5da000 -     0x7fff8b62dfff  libFontRegistry.dylib (??? - ???) <8FE14D77-1286-3619-A02E-0AC1A622596E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8b62e000 -     0x7fff8b62ffff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
        0x7fff8b630000 -     0x7fff8b64dff7  libxpc.dylib (77.16.0 - compatibility 1.0.0) <0A4B4775-29A9-30D6-956B-3BE1DBF98090> /usr/lib/system/libxpc.dylib
        0x7fff8b64e000 -     0x7fff8b653fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff8b684000 -     0x7fff8c37dfef  com.apple.WebCore (7534 - 7534.48.3) <7C5A681C-3749-382C-9551-C197EF878C22> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8c443000 -     0x7fff8c445fff  com.apple.TrustEvaluationAgent (2.0 - 1) <80AFB5D8-5CC4-3A38-83B9-A7DF5820031A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8c8d1000 -     0x7fff8c8fcff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
        0x7fff8c8fd000 -     0x7fff8c928fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff8c929000 -     0x7fff8cac8fff  com.apple.QuartzCore (1.7 - 269.0) <E0AFC745-4AC5-36E3-9827-E5344721071D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8cafa000 -     0x7fff8cb4cff7  libGLU.dylib (??? - ???) <29D31138-F6BE-3BA6-8248-7A0F90179230> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8cb4d000 -     0x7fff8cf7ffe7  com.apple.VideoToolbox (1.0 - 705.35) <B1B9F159-EEE2-38BB-A55E-CDB335A7A226> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8d02d000 -     0x7fff8d053fff  com.apple.framework.internetaccounts (1.0 - 1) <64CC50BB-9EE4-36D1-969A-FDD2210026DC> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8d054000 -     0x7fff8d058ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8d792000 -     0x7fff8d796fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <5EEAD17D-006C-3855-8093-C7A4A97EE0D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8d797000 -     0x7fff8d798fff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <0F55CD76-DB24-309B-BD12-62B00C1AAB9F> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff8d799000 -     0x7fff8d7e7ff7  libauto.dylib (??? - ???) <F0004B88-CA01-37D0-A77F-6651C4EC7D8E> /usr/lib/libauto.dylib
        0x7fff8d7e8000 -     0x7fff8d7f6ff7  libkxld.dylib (??? - ???) <9C937433-A362-3E40-BF71-FDABA986B56C> /usr/lib/system/libkxld.dylib
        0x7fff8d7f7000 -     0x7fff8d7f7fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8d7f8000 -     0x7fff8d85cfff  com.apple.Symbolication (1.2 - 83.1) <0C6F8907-6829-3409-99AC-ACC62923DE98> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8d85d000 -     0x7fff8d85ffff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
        0x7fff8d860000 -     0x7fff8d861fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff8d88c000 -     0x7fff8d8b5fff  com.apple.CoreServicesInternal (113.7 - 113.7) <ACAC98CD-5941-39DB-951A-2509DCCD22FD> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8d8c5000 -     0x7fff8d8c9fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff8df24000 -     0x7fff8df3bfff  com.apple.MultitouchSupport.framework (220.62 - 220.62) <70B99E43-6D0F-30E8-A6EA-8159F1F14958> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8e140000 -     0x7fff8e21dfef  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
        0x7fff8e21e000 -     0x7fff8e2a3ff7  com.apple.Heimdal (2.1 - 2.0) <E4CD970F-8DE8-31E4-9FC0-BDC97EB924D5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8e2a4000 -     0x7fff8e2affff  com.apple.CommonAuth (2.1 - 2.0) <49949286-61FB-3A7F-BF49-0EBA45E2664E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8e2b0000 -     0x7fff8e2d6ff7  com.apple.framework.familycontrols (3.0 - 300) <7AF88AB8-38AE-38F7-8D07-E6FC50D3E602> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8e40d000 -     0x7fff8e43afff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8e43b000 -     0x7fff8e801fff  com.apple.MediaToolbox (1.0 - 705.35) <EC6755D1-58BC-36F5-AB66-143D03A0AF8C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff8e802000 -     0x7fff8e965fff  com.apple.CFNetwork (520.0.13 - 520.0.13) <67E3BB43-2A22-3F5A-964E-391375B24CE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8e966000 -     0x7fff8f0349df  com.apple.CoreGraphics (1.600.0 - ???) <B3C42497-53F5-31BB-987E-D1E76746B0E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8f035000 -     0x7fff8f0e7fff  com.apple.CoreText (4.0.0 - ???) <D7BD85FD-277A-3A97-B1AD-5EE14215237E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8f0e8000 -     0x7fff8f12aff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8f12b000 -     0x7fff8f166fff  com.apple.LDAPFramework (3.0 - 120.1) <0C23534F-A8E7-3144-B2B2-50F9875101E2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8f167000 -     0x7fff8f1a3fff  libsystem_info.dylib (??? - ???) <BC49C624-1DAB-3A37-890F-6EFD46538424> /usr/lib/system/libsystem_info.dylib
        0x7fff8f1a4000 -     0x7fff8f2a9ff7  libFontParser.dylib (??? - ???) <22AADE96-E54D-3918-9DFA-1967F8B21E54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8f2ff000 -     0x7fff8f315fff  libGL.dylib (??? - ???) <22064411-0A62-373C-828B-0AA2BA2A8D34> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8f316000 -     0x7fff8f343fe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <B0545756-3AE7-3D59-AB0C-F0CF3EA57044> /usr/lib/libSystem.B.dylib
        0x7fff8f344000 -     0x7fff8f65dff7  com.apple.AddressBook.framework (6.0 - 1043) <A6302279-FD1B-3BB7-8419-362425FC5568> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8f65e000 -     0x7fff8fdf2fff  com.apple.CoreAUC (6.11.03 - 6.11.03) <5A56B2DC-A0A6-357B-ADF2-5714AFEBD926> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8fdf3000 -     0x7fff8fdf5fff  libCVMSPluginSupport.dylib (??? - ???) <458A1115-6338-3119-9D38-3097CBBE3985> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8fe16000 -     0x7fff8fe17fff  libsystem_sandbox.dylib (??? - ???) <8D14139B-B671-35F4-9E5A-023B4C523C38> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8fe18000 -     0x7fff8fe18fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <4CC14F7C-BCA7-3CAC-BEC9-B06576E5A15B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8fe19000 -     0x7fff8fe36ff7  com.apple.openscripting (1.3.3 - ???) <A64205E6-D3C5-3E12-B1A0-72243151AF7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8fe37000 -     0x7fff8fed9ff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8ff23000 -     0x7fff8ff28fff  libGIF.dylib (??? - ???) <21851808-BFD2-3141-8354-A419479726BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8ff29000 -     0x7fff8ff99fff  com.apple.datadetectorscore (3.0 - 179.3) <AFFBD606-91DE-3F91-8E38-C037D9FBFA8B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8ffaa000 -     0x7fff9001fff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff90025000 -     0x7fff90037ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff900b5000 -     0x7fff90199def  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
        0x7fff9019a000 -     0x7fff901b1fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff901b2000 -     0x7fff901befff  com.apple.DirectoryService.Framework (10.7 - 144) <067ACB41-E9B7-3177-9EDE-C188D9B352DC> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff901e7000 -     0x7fff90262ff7  com.apple.print.framework.PrintCore (7.0 - 366) <E663DF78-6729-332D-B763-ABB63A6BBB55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff90263000 -     0x7fff902a6ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <2B1571E1-8E87-364E-BC36-C9C9B5D3EAC4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff902a7000 -     0x7fff902e6fff  com.apple.AE (527.6 - 527.6) <6F8DF9EF-3250-3B7F-8841-FCAD8E323954> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff902e7000 -     0x7fff902f6fff  com.apple.opengl (1.7.4 - 1.7.4) <971DF1AE-2E9D-31E7-9836-8EE7F4299931> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff903fa000 -     0x7fff903fffff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff9041c000 -     0x7fff9043bfff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
        0x7fff90442000 -     0x7fff904e6fef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff904e7000 -     0x7fff910dffff  com.apple.AppKit (6.7 - 1138) <C8D2FDDA-B9D5-3948-A376-6B9B6F0596C6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff9122c000 -     0x7fff91341fff  com.apple.DesktopServices (1.6.0 - 1.6.0) <208D40FC-8BBE-330F-B999-18771BEA6895> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff91342000 -     0x7fff9137cfff  com.apple.DebugSymbols (2.1 - 85) <AEF473A5-25BF-3FB7-9A07-320D9CB85959> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff91383000 -     0x7fff91384fff  libScreenReader.dylib (??? - ???) <146BA4A2-BD07-3E78-A905-EE1761F6E398> /usr/lib/libScreenReader.dylib
        0x7fff91385000 -     0x7fff913befe7  libssl.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <D634E4B6-672F-3F68-8B6F-C5028151A5B4> /usr/lib/libssl.0.9.8.dylib
        0x7fff9141b000 -     0x7fff91574ff7  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <296F10D0-A871-39C1-B8B2-9200AB12B5AF> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff91575000 -     0x7fff917efff7  com.apple.imageKit (2.1 - 1.0) <03200568-184B-36E8-AFE9-04D1FACDC926> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff917f0000 -     0x7fff91dd4faf  libBLAS.dylib (??? - ???) <D62D6A48-5C7A-3ED6-875D-AA3C2C5BF791> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff91dd5000 -     0x7fff91df8ff7  com.apple.RemoteViewServices (1.0 - 1) <EB549657-8EDC-312A-B8BE-DEC3E160AC3D> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff91df9000 -     0x7fff91e13fff  com.apple.CoreMediaAuthoring (2.0 - 889) <99D8E4C6-DDD3-3B0C-BBFB-A513877F10F6> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff91e14000 -     0x7fff91ea6fff  com.apple.CorePDF (3.0 - 3.0) <6056B710-155A-3543-9373-B9F3E5FC99CE> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff91ea7000 -     0x7fff91eb2fff  com.apple.DisplayServicesFW (2.5.1 - 310) <79ED658B-69B7-3333-B656-36217EAAE80C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff91eb3000 -     0x7fff91fafff7  com.apple.avfoundation (2.0 - 180.23) <C4383696-561D-33F3-AD7C-51E672F580B2> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff91fb0000 -     0x7fff91fbbff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff91fbc000 -     0x7fff92023ff7  com.apple.audio.CoreAudio (4.0.0 - 4.0.0) <72C4215B-9B71-385E-8E7D-1636FF6AAA4F> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff92024000 -     0x7fff92057fff  com.apple.GSS (2.1 - 2.0) <A150154E-40D3-345B-A92D-3A023A55AC52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff92058000 -     0x7fff92265fff  com.apple.JavaScriptCore (7534 - 7534.48) <99B60407-592A-3DDC-A3D0-86578B92B3F8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff9226a000 -     0x7fff9226afff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff9226b000 -     0x7fff922b6ff7  com.apple.SystemConfiguration (1.11.1 - 1.11) <F26E6001-1EEC-3A0A-AF8F-E09D055A6CA4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff922df000 -     0x7fff922e4ff7  libsystem_network.dylib (??? - ???) <4ABCEEF3-A3F9-3E06-9682-CE00F17138B7> /usr/lib/system/libsystem_network.dylib
        0x7fff922e5000 -     0x7fff922ebfff  libGFXShared.dylib (??? - ???) <F047CF07-F6AA-327F-890D-19C8AA5C3AD6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff922ec000 -     0x7fff9232bff7  libGLImage.dylib (??? - ???) <3C7093E9-CB04-38B4-8B0E-02124DFFC9A4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff92397000 -     0x7fff9239afff  libRadiance.dylib (??? - ???) <DCDA308D-4856-3631-B6D7-7A8B94169BC0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff9239b000 -     0x7fff9247bfff  com.apple.CoreServices.OSServices (478.25.1 - 478.25.1) <E7FD4DB7-7844-355A-83D0-C1F24BE71019> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff9252c000 -     0x7fff92533fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff92534000 -     0x7fff925d3fff  com.apple.LaunchServices (480.19 - 480.19) <41ED4C8B-C74B-34EA-A9BF-34DBA5F52307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff925d4000 -     0x7fff92842ff7  com.apple.QuartzComposer (5.0 - 232) <CE01B3AC-C19F-3148-9301-615E8FD6F356> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
     

    Tried to run hardware test and it locked up.  Called Apple Care and you're right it looks like the RAM has gone bad and needs to be replaced.  Have an appointment at the store for 9:30

  • My program crashes when I use  OCIHandleAlloc

    My program crashes when I pressure test, I think it maybe I did not use it properly.
    The backtrace is as follows:
    #0  0x00000030b5635fc5 in exit () from /lib64/libc.so.6
    #1  0x00007f101a59b519 in skgdbgcra () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #2  0x00007f101a8ed69c in kpeDbgCrash () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #3  0x00007f101a8ecf23 in kpeDbgSignalHandler () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #4  0x00007f101a59951d in skgesig_sigactionHandler () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #5  <signal handler called>
    #6  0x00007f10194f9b0b in sslssreghdlr () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #7  0x00007f1019606e93 in sskgpinit () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #8  0x00007f10195f60be in skgpinit () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #9  0x00007f10196fc316 in dbgrgpi_get_prodinst_id () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #10 0x00007f1019713d1a in kpeDbgInitDBGC () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #11 0x00007f1019713f37 in kpeDbgTLSInit () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #12 0x00007f101ab48968 in kpummTLSGET1 () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #13 0x00007f101932b67a in kpuhhini () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #14 0x00007f1019338f57 in kpughndl0 () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #15 0x00007f1019316ae1 in OCIHandleAlloc () from /home/oracle/client_1/lib/libclntsh.so.11.1
    #16 0x00000000004b6578 in otl_cur::open (this=0x7f0e3255d420, connect=<value optimized out>, var=0x0) at ../include/otlv4.h:27212
    #17 0x00000000004c6b51 in open (this=0x7f0e3255d400, aoverride=0x7f0e32498610, arr_size=<value optimized out>,
        sqlstm=0x7f0fec73a820 "select USER_NAME, RADIUS_SERVICE_DEF, SERVICE_STATE, to_char(UPDATE_TIME, 'yyyymmddhhmiss'), BMS_NODE_ID, AUTHEN_ATTRS, AUTHOR_ATTRS from PS_RADIUS where USER_NAME=:user_name<char[64]> and RADIUS_SERV"..., pdb=<value optimized out>, implicit_select=<value optimized out>,
        sqlstm_label=0x0) at ../include/otlv4.h:5809
    My client verison is: Release 11.1.0.6.0, and my server version is also too.
    It likes "sslssreghdlr()"  caught a sigal when it was running,  but I don't know what it was, can you help me?

    Hi, i have noticed something.... it seems like the sound card has nothing to do with the problem, because i also have my system hanging when i use my modem (which is also a pci device), so i guess that the problem is someway related to the pci bus, can anyone help me???
    The system works fine when i don't use the sound card or the modem, if i put some music it hangs before the first song ends, and with the modem it takes like 30 miutes to freeze, and i have to reboot.
    Wish someone can help me.

  • Since updating to LR 5.3 mac, program crashes on launch

    Anyone have any idea why 5.3 crashes at launch?   I've been using Lightroom since it was released many years ago, I've upgraded every version and done every update ... never had a problem till 5.3.  Now the program crashes on launch about once a day and the only fix seems to be to reinstall and then it works for a while,,, until it decides not to any more.
    I've done no hardware upgrades, nothing has changed except the update to LR 5.3.  Done a "Repair Disk Permissions" a few times ... I'm out of ideas.
    Getting really annoyed with reinstalling LR almost every time I want to use it.

    Does this mean anything to anyone?  This is what I get when I try to launch Lightroom.  Doesn't happen every time, but about once every day.  Reinstalling the program fixes it for a little while and then it just happens again about a day later.
    Process:    
    Adobe Photoshop Lightroom 5 [15223]
    Path:       
    /Applications/Adobe Photoshop Lightroom 5.app/Contents/MacOS/Adobe Photoshop Lightroom 5
    Identifier: 
    com.adobe.Lightroom5
    Version:    
    Adobe Photoshop Lightroom 5.3 [938183] (5.3)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [307]
    Date/Time:  
    2013-12-30 01:36:05.550 -0800
    OS Version: 
    Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:     
    416312 sec
    Crashes Since Last Report:      
    2
    Per-App Interval Since Last Report:  18178 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                 
    EA2E6C5C-FD56-4A1B-B121-B5B69553FCD7
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[15223]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'LuaRunException', reason: 'Pointer was null: sMainLuaUniverse'
    *** First throw call stack:
    0   CoreFoundation                 
    0x00007fff83d4ef56 __exceptionPreprocess + 198
    1   libobjc.A.dylib                
    0x00007fff82a67d5e objc_exception_throw + 43
    2   CoreFoundation                 
    0x00007fff83dd91b9 -[NSException raise] + 9
    3   AgKernel                       
    0x000000010b06f4ba AgLuaUniverse_createMainUniverse + 119
    4   Adobe Photoshop Lightroom 5    
    0x000000010b03a572 main + 894
    5   Adobe Photoshop Lightroom 5    
    0x000000010b03a1ec start + 52
    6   ???                            
    0x0000000000000002 0x0 + 2
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff86fbece2 __pthread_kill + 10
    1   libsystem_c.dylib        
    0x00007fff875cc7d2 pthread_kill + 95
    2   libsystem_c.dylib        
    0x00007fff875bda7a abort + 143
    3   libc++abi.dylib          
    0x00007fff8c2517bc abort_message + 214
    4   libc++abi.dylib          
    0x00007fff8c24efcf default_terminate() + 28
    5   libobjc.A.dylib          
    0x00007fff82a681b9 _objc_terminate + 94
    6   libc++abi.dylib          
    0x00007fff8c24f001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib          
    0x00007fff8c24f05c std::terminate() + 16
    8   libc++abi.dylib          
    0x00007fff8c250152 __cxa_throw + 114
    9   libobjc.A.dylib          
    0x00007fff82a67e7a objc_exception_throw + 327
    10  com.apple.CoreFoundation 
    0x00007fff83dd91b9 -[NSException raise] + 9
    11  com.adobe.ag.kernel      
    0x000000010b06f4ba AgLuaUniverse_createMainUniverse + 119
    12  com.adobe.Lightroom5     
    0x000000010b03a572 main + 894
    13  com.adobe.Lightroom5     
    0x000000010b03a1ec start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff86fbf7e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8867c786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff8867b316 _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff86fbf192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff875cc594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff875cdb85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff86fbf192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff875cc594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff875cdb85 start_wqthread + 13
    Thread 4:
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff6ac36a08  rdx: 0x0000000000000000
      rdi: 0x000000000000060b  rsi: 0x0000000000000006  rbp: 0x00007fff6ac36a30  rsp: 0x00007fff6ac36a08
       r8: 0x00007fff7328ffb8   r9: 0x0000000000000110  r10: 0x00007fff86fbed0a  r11: 0x0000000000000246
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x00007fff73292960  r15: 0x00007fff6ac36b80
      rip: 0x00007fff86fbece2  rfl: 0x0000000000000246  cr2: 0x00007fff73289a28
    Logical CPU: 0
    Binary Images:
    0x10b038000 -   
    0x10b046fff +com.adobe.Lightroom5 (Adobe Photoshop Lightroom 5.3 [938183] - 5.3) <23E59FC4-ABC5-3C79-ABB6-FA60E09BF1E3> /Applications/Adobe Photoshop Lightroom 5.app/Contents/MacOS/Adobe Photoshop Lightroom 5
    0x10b054000 -   
    0x10b094ff7 +com.adobe.ag.kernel (AgKernel Version 1.0 - 1.0) <F8367568-BB0E-3C4E-8CD2-E50AB30382B6> /Applications/Adobe Photoshop Lightroom 5.app/Contents/Frameworks/AgKernel.framework/Versions/A/AgKernel
    0x10b0a9000 -   
    0x10b0b1fff +com.adobe.asneu.framework (asneu version 1.7.1f01 - 1.7.1) <B361EAF4-A40E-0E96-75C4-5FBD910B4B38> /Applications/Adobe Photoshop Lightroom 5.app/Contents/Frameworks/asneu.framework/versions/a/asneu
    0x10b0b9000 -   
    0x10b172ff7 +com.adobe.ag.ui (views version 0.0.1d1 - ???) <7E1D397A-A084-3EDD-94A1-31433BDBE8B7> /Applications/Adobe Photoshop Lightroom 5.app/Contents/Frameworks/AgUI.framework/Versions/A/AgUI
    0x10b1b5000 -   
    0x10b1fafff +com.adobe.ag.substrate (com.adobe.ag.substrate 5.3 - 1.0) <58F05807-9273-3AB6-B117-170178696DE7> /Applications/Adobe Photoshop Lightroom 5.app/Contents/Frameworks/AgSubstrate.framework/Versions/A/AgSubstrate
    0x10b21c000 -   
    0x10b455fff +com.adobe.wichitafoundation (com.adobe.wichitafoundation 5.3 - 1.0) <B72D3773-926E-3E2F-A4E6-EEE3A5165C58> /Applications/Adobe Photoshop Lightroom 5.app/Contents/Frameworks/WichitaFoundation.agtoolkit/Versions/A/WichitaFoundation
    0x10b7da000 -   
    0x10b7dbfff +com.adobe.lightroom.AdobeCrashReporter (??? - 1.0) <7D9FDF86-4F82-30F7-B337-2C760957D552> /Applications/Adobe Photoshop Lightroom 5.app/Contents/PlugIns/Adobe Crash Reporter.bundle/Contents/MacOS/Adobe Crash Reporter
    0x10b7de000 -   
    0x10b7e0fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe Photoshop Lightroom 5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x7fff6ac38000 -
    0x7fff6ac6cbaf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
    0x7fff826d2000 -
    0x7fff8274dff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x7fff8274e000 -
    0x7fff827befff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x7fff827c7000 -
    0x7fff8281bfff  libFontRegistry.dylib (??? - ???) <60FF9C2C-5E44-3C49-8A08-F26101898F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x7fff82901000 -
    0x7fff82a1afff  com.apple.DesktopServices (1.6.5 - 1.6.5) <5E7DD5F4-B4DA-3F75-A14A-3494E81CFBA0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x7fff82a1b000 -
    0x7fff82a43fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x7fff82a50000 -
    0x7fff82a50fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff82a51000 -
    0x7fff82b35e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff82b36000 -
    0x7fff82b3aff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x7fff82b3b000 -
    0x7fff82ee5fe7  com.apple.MediaToolbox (1.0 - 705.94) <0719E69C-3275-3BD9-AD04-27DBADEB6E03> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff82ee6000 -
    0x7fff83884a27  com.apple.CoreGraphics (1.600.0 - ???) <576777EA-921B-3D94-98C3-40A9CF8EBD18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x7fff83a9a000 -
    0x7fff83ac7fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
    0x7fff83af8000 -
    0x7fff83b3aff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff83b3b000 -
    0x7fff83c98fff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <5F1E4695-BC74-3ADD-8345-627BCD68201A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff83c99000 -
    0x7fff83ca8ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
    0x7fff83ca9000 -
    0x7fff83caaff7  libsystem_sandbox.dylib (??? - ???) <5459F293-E1F2-33B3-B9B2-2ABB7B915B62> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff83cab000 -
    0x7fff83e7fff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff83e80000 -
    0x7fff83ee2ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff83f2c000 -
    0x7fff83f30fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8401b000 -
    0x7fff84337fff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <4FC1AB30-022C-3C67-AC46-FDCBFCB7EEDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x7fff8468c000 -
    0x7fff8488efff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <0176782F-9526-3905-813A-7A5676EC2C86> /usr/lib/libicucore.A.dylib
    0x7fff8488f000 -
    0x7fff848baff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
    0x7fff848bb000 -
    0x7fff84a46ff7  com.apple.QTKit (7.7.1 - 2348) <9F6E8775-002D-3B79-90CC-D5117C50DB00> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff84a47000 -
    0x7fff84a5dff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <1AD40E02-2126-377B-A0D2-CBB21D932558> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x7fff84a5e000 -
    0x7fff84ab9ff7  com.apple.opencl (2.0.19 - 2.0.19) <B05BF605-73B8-328F-A228-6FA59E1FC73A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff84ad8000 -
    0x7fff84af4ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x7fff84b78000 -
    0x7fff84c3fff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x7fff84d12000 -
    0x7fff84d18fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff84d19000 -
    0x7fff84d8fff7  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <A24FC3DA-4FFA-3DD2-9DCC-2B8D1B3BF97C> /usr/lib/libc++.1.dylib
    0x7fff84d90000 -
    0x7fff84d95fff  libGIF.dylib (??? - ???) <58A4492D-AAE7-3B8F-8B06-62867471A3EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x7fff84dd2000 -
    0x7fff84e1eff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff84e1f000 -
    0x7fff85141fff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <3A04B8FC-CFA6-3AEB-8FDF-B0525B5A4C82> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff85142000 -
    0x7fff85147fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff85148000 -
    0x7fff85173fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
    0x7fff85174000 -
    0x7fff85177ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x7fff85178000 -
    0x7fff85192fff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x7fff85197000 -
    0x7fff85408fff  com.apple.QuartzComposer (5.0 - 236.10) <F8560AEC-4E26-3A43-BE0A-B20FCB5B2E7D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x7fff8589a000 -
    0x7fff858e1ff7  com.apple.CoreMedia (1.0 - 705.94) <700C6863-7A8F-34FA-8B1D-7659EC95000B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff858e2000 -
    0x7fff85922ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <7D2E5016-A960-3ADE-B042-F74063E79550> /usr/lib/libcups.2.dylib
    0x7fff866a8000 -
    0x7fff866bffff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x7fff866cf000 -
    0x7fff8671dfff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    0x7fff86916000 -
    0x7fff86951fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    0x7fff86952000 -
    0x7fff86955fff  libCoreVMClient.dylib (??? - ???) <28CB0F3F-A202-391F-8CAC-FC9A1398A962> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff86956000 -
    0x7fff869beff7  com.apple.coreui (1.2.2 - 165.11) <9316266A-39CA-3EC7-9C9E-726462CEFF4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff869bf000 -
    0x7fff869c3fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
    0x7fff869de000 -
    0x7fff86ea5fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x7fff86ea6000 -
    0x7fff86eb1ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff86eb2000 -
    0x7fff86fa7fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
    0x7fff86fa8000 -
    0x7fff86fc8fff  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
    0x7fff86fc9000 -
    0x7fff87063ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x7fff87064000 -
    0x7fff87171fff  libJP2.dylib (??? - ???) <6AF1F5FC-34D4-3278-BEBB-0712B81890B4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x7fff8718e000 -
    0x7fff87197ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    0x7fff8722b000 -
    0x7fff87544fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff87545000 -
    0x7fff87575ff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x7fff87576000 -
    0x7fff8757bfff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8757c000 -
    0x7fff87659fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
    0x7fff8774f000 -
    0x7fff877e1ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff877e2000 -
    0x7fff87a56fff  com.apple.CoreImage (7.99.1 - 1.0.1) <4BB09B79-275B-364C-9466-0FF36ABB1218> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x7fff87aa5000 -
    0x7fff87ab0ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x7fff87ab1000 -
    0x7fff87ab4fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x7fff87ac4000 -
    0x7fff87ac4fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff8840b000 -
    0x7fff8840bfff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff88679000 -
    0x7fff88687fff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
    0x7fff88688000 -
    0x7fff8869aff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    0x7fff88725000 -
    0x7fff88742ff7  com.apple.openscripting (1.3.3 - ???) <F5E34F54-CE85-334B-8F25-53581D43960C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x7fff8891a000 -
    0x7fff8891afff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8891b000 -
    0x7fff8891dfff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x7fff8891e000 -
    0x7fff88920fff  libCVMSPluginSupport.dylib (??? - ???) <982F1ED4-3CBB-3161-8BEA-8A980C27FCC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x7fff88921000 -
    0x7fff88923fff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
    0x7fff88924000 -
    0x7fff88938ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x7fff88939000 -
    0x7fff8898bff7  libGLU.dylib (??? - ???) <DB906997-0F70-3469-BA0E-2F1DDBEAD8D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8898c000 -
    0x7fff8899bfff  com.apple.opengl (1.8.1 - 1.8.1) <51B34133-CEE3-3FC6-82AC-ADF567AE673C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8899c000 -
    0x7fff889aeff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff88a61000 -
    0x7fff88a82fff  libPng.dylib (??? - ???) <E2B52527-4D0C-3595-BB13-8E8EF364E998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x7fff88a83000 -
    0x7fff88c23ff7  com.apple.QuartzCore (1.7 - 270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff88c35000 -
    0x7fff88c91ff7  com.apple.HIServices (1.21 - ???) <B012EE97-D1CD-3F4B-812D-9AC7E6852FE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x7fff88d2e000 -
    0x7fff88e64fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x7fff88e65000 -
    0x7fff88f67fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
    0x7fff89030000 -
    0x7fff89098ff7  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <9987DC46-2A96-3BA0-B88B-04E573C0AD9B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff89099000 -
    0x7fff8909efff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
    0x7fff89114000 -
    0x7fff8918afff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x7fff8923a000 -
    0x7fff89248ff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
    0x7fff89293000 -
    0x7fff892feff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff892ff000 -
    0x7fff8935afff  com.apple.ImageCaptureCore (3.1.0 - 3.1.0) <9F7C4D81-5CC7-3D66-AC66-81EA9A5EAB94> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff8935b000 -
    0x7fff8978eff7  com.apple.VideoToolbox (1.0 - 705.94) <72AD524C-0616-3C69-BA1F-8D444F97F5A2> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff8978f000 -
    0x7fff89790fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
    0x7fff89791000 -
    0x7fff897e9ff7  libTIFF.dylib (??? - ???) <59353B7F-EA9A-32D5-A501-283443B30C60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x7fff89ba1000 -
    0x7fff89bc0fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
    0x7fff89bc1000 -
    0x7fff89c15ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x7fff89c16000 -
    0x7fff89c73ff7  com.apple.QuickLookFramework (3.2 - 500.18) <C36371BF-E1F6-3DF7-83EA-CE96FCDCE4C4> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff89c74000 -
    0x7fff89c76ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x7fff8a578000 -
    0x7fff8a580fff  libsystem_dnssd.dylib (??? - ???) <584B321E-5159-37CD-B2E7-82E069C70AFB> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8a581000 -
    0x7fff8a587fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8a598000 -
    0x7fff8a5affff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x7fff8a5b2000 -
    0x7fff8a5f3fff  com.apple.QD (3.40.1 - ???) <13ACC7F4-B004-3370-B575-6D06447EE428> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x7fff8a5f4000 -
    0x7fff8a75bfff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x7fff8a75c000 -
    0x7fff8a761fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    0x7fff8a762000 -
    0x7fff8a769fff  com.apple.CommerceCore (1.0 - 17.1) <B6BFA182-9DC9-3543-89AE-F82EB9AF1CAB> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x7fff8a76a000 -
    0x7fff8a81dff7  com.apple.CoreText (220.22.0 - ???) <A7A1096F-A211-3775-BA33-08FE98D27F08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x7fff8a896000 -
    0x7fff8a8a3ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
    0x7fff8a8a4000 -
    0x7fff8a8a5fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8a8ab000 -
    0x7fff8a8fcff7  com.apple.CoreMediaIO (216.0 - 3199.8) <4D3FE512-E943-34E3-A7A5-2EC2E3854E28> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff8a8fd000 -
    0x7fff8a921fff  com.apple.RemoteViewServices (1.5 - 44.2) <A0417D7F-22E9-3FD8-AC55-67654D8E93EB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x7fff8a922000 -
    0x7fff8a922fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x7fff8a923000 -
    0x7fff8ad50fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x7fff8ad8f000 -
    0x7fff8b084ff7  com.apple.security (7.0 - 55148.6) <4535E500-973A-3BA7-AF65-DF5CF0658F02> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8b0a2000 -
    0x7fff8b0b8fff  libGL.dylib (??? - ???) <A4876AE9-DDFE-3B9A-874E-09BC29D46C39> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8b0b9000 -
    0x7fff8b0d6fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
    0x7fff8b0d7000 -
    0x7fff8b6bbfff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x7fff8b6bc000 -
    0x7fff8b6c3fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
    0x7fff8b6c6000 -
    0x7fff8b6eafff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8b6eb000 -
    0x7fff8b6f5ff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
    0x7fff8b780000 -
    0x7fff8b887fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
    0x7fff8b895000 -
    0x7fff8b908fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff8b96b000 -
    0x7fff8b976fff  com.apple.CommonAuth (2.2 - 2.0) <4F5302A5-867A-3F2E-9E4B-98FA011678F8> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8b977000 -
    0x7fff8b9fcff7  com.apple.Heimdal (2.2 - 2.0) <52B0F371-D272-3C8E-B42F-04D3FDD8AD0D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8ba1a000 -
    0x7fff8ba1bfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
    0x7fff8ba2a000 -
    0x7fff8bb36fef  libcrypto.0.9.8.dylib (49.1.0 - compatibility 0.9.8) <FB999E54-C9BC-3A6D-9FE5-BFCC236775ED> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8bb4a000 -
    0x7fff8bc29fff  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <047DFE61-500F-3F11-9881-D0844D2FCE5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x7fff8bcb9000 -
    0x7fff8bce6fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x7fff8bcfc000 -
    0x7fff8bcfcfff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff8bcfd000 -
    0x7fff8bcfdfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8bd34000 -
    0x7fff8bdeafff  com.apple.PDFKit (2.7.8 - 2.7.8) <13A92FA5-E6E6-3ECF-9A70-D4330D7BE847> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x7fff8c249000 -
    0x7fff8c254ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff8c2b8000 -
    0x7fff8c2defff  com.apple.framework.familycontrols (3.0 - 300) <6F0C58C0-22E7-3877-8CFA-1ED0CB3CE38B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff8c2df000 -
    0x7fff8c2e6fff  libGFXShared.dylib (??? - ???) <D3598924-B167-372E-8C9F-1BBF68852542> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff8c2e7000 -
    0x7fff8c2e8ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
    0x7fff8c2e9000 -
    0x7fff8c349fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x7fff8c3b1000 -
    0x7fff8c435ff7  com.apple.ApplicationServices.ATS (317.12.0 - ???) <BE3C156D-8326-37AA-BC4E-D3C0D31BF976> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x7fff8c436000 -
    0x7fff8c439fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff8c463000 -
    0x7fff8c464ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8c478000 -
    0x7fff8c7a4fff  com.apple.HIToolbox (1.9 - ???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x7fff8c7a5000 -
    0x7fff8c847fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff8c848000 -
    0x7fff8c945ff7  com.apple.avfoundation (2.0 - 180.50) <A2EAE4E6-4DBA-3AAB-A387-7E72B93B6DA9> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff8c946000 -
    0x7fff8c979ff7  com.apple.GSS (2.2 - 2.0) <C86012C5-B613-3199-B1B3-A1494EE5E43C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8ca0a000 -
    0x7fff8caabfff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x7fff8caac000 -
    0x7fff8caebfff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x7fff8caec000 -
    0x7fff8cd64fff  com.apple.imageKit (2.1.2 - 1.0) <23470050-28FB-3B09-8E27-ADC371B0E4B8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x7fff8cd65000 -
    0x7fff8d50dfff  com.apple.CoreAUC (6.16.12 - 6.16.12) <EF535959-14FE-3B61-9C32-DF4C54B8F12D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff8d7d2000 -
    0x7fff8d9fcfe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8d9fd000 -
    0x7fff8da00fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x7fff8da01000 -
    0x7fff8da08fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8da17000 -
    0x7fff8da6afff  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <6F9A4BCE-8B99-3144-BCF7-B4299B27F6E9> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8da6b000 -
    0x7fff8da79fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8da7d000 -
    0x7fff8daa6fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8daa7000 -
    0x7fff8db8bff7  com.apple.CoreServices.OSServices (478.50 - 478.50) <3D6AA4EF-C601-36C7-8F3A-A00964F01759> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x7fff8db96000 -
    0x7fff8db9bff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff8db9c000 -
    0x7fff8db9dfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    0x7fff8dbe4000 -
    0x7fff8dc7aff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x7fff8dc9a000 -
    0x7fff8dcaffff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x7fff8de1c000 -
    0x7fff8e23aff7  com.apple.SceneKit (125.3 - 125.8) <23382F45-D9CE-3897-B998-5B26337608FD> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x7fff8e23b000 -
    0x7fff8e23bfff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8e23c000 -
    0x7fff8e341fff  libFontParser.dylib (??? - ???) <D2E56B6E-3182-3667-A78C-4172C435523A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x7fff8e342000 -
    0x7fff8e382fe7  libGLImage.dylib (??? - ???) <0B7DAB2B-F1C6-39C7-B864-61EF683B6656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff8e383000 -
    0x7fff8ef89fff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8efd1000 -
    0x7fff8efd1fff  libOpenScriptingUtil.dylib (??? - ???) <A7847713-F410-39C0-884F-A7188A18E742> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8eff9000 -
    0x7fff8effffff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
    0x7fff8f000000 -
    0x7fff8f03afe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff8f03b000 -
    0x7fff8f13cfff  com.apple.QuickLookUIFramework (3.2 - 500.18) <56A13D40-9A61-3B98-85ED-B1C7075A88FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x7fff8f13d000 -
    0x7fff8f1e2fff  com.apple.ink.framework (10.7.5 - 113) <1AE6676D-490A-36C2-B6CC-00F93AEB31DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x7fff8f1e3000 -
    0x7fff8f1e3fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    0x7fff8f1e4000 -
    0x7fff8f267fef  com.apple.Metadata (10.7.0 - 627.37) <B9BEB598-B6F2-3BFF-A8F3-C3C87CD076AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x7fff8f268000 -
    0x7fff8f291fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x7fff8f292000 -
    0x7fff8f2beff7  com.apple.CoreServicesInternal (113.19 - 113.19) <74532B3B-EDE0-3553-9BED-F02B9CDF1FF7> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x7fff8f487000 -
    0x7fff8f49aff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
    0x7fff8f6f8000 -
    0x7fff8f6f8fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8f6f9000 -
    0x7fff8f6ffff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 2
    thread_create: 0
    thread_set_state: 0
      Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
      Calls made by all processes on this machine:
    task_for_pid: 39530
    thread_create: 1
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=181.1M resident=87.1M(48%) swapped_out_or_unallocated=93.9M(52%)
    Writable regions: Total=51.6M written=1468K(3%) resident=3156K(6%) swapped_out=0K(0%) unallocated=48.5M(94%)
    REGION TYPE                 
    VIRTUAL
    ===========                 
    =======
    CG shared images                
    96K
    CoreServices                  
    2560K
    MALLOC                        
    40.9M
    MALLOC guard page               
    48K
    STACK GUARD                   
    56.0M
    Stack                         
    9756K
    Stack (reserved)               
    520K   
    reserved VM address space (unallocated)
    VM_ALLOCATE                     
    48K
    __CI_BITMAP                     
    80K
    __DATA                        
    16.6M
    __IMAGE                        
    528K
    __LINKEDIT                    
    49.4M
    __TEXT                       
    131.7M
    __UNICODE                      
    544K
    mapped file                   
    15.7M
    shared memory                  
    320K
    ===========                 
    =======
    TOTAL                        
    324.5M
    TOTAL, minus reserved VM space
    324.0M
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 8 GB, SMC 1.7f10
    Graphics: ATI Radeon HD 5770, ATI Radeon HD 5770, PCIe, 1024 MB
    Memory Module: DIMM Riser A/DIMM 1, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x39485446363437324A592D36363742344433
    Memory Module: DIMM Riser A/DIMM 2, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x39485446363437324A592D36363742344433
    Memory Module: DIMM Riser B/DIMM 1, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x39485446363437324A592D36363742344433
    Memory Module: DIMM Riser B/DIMM 2, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x39485446363437324A592D36363742344433
    Memory Module: DIMM Riser A/DIMM 3, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x0416, 0x4E4C43313237413236343037462D4435334D
    Memory Module: DIMM Riser A/DIMM 4, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x0416, 0x4E4C43313237413236343037462D4435334D
    Memory Module: DIMM Riser B/DIMM 3, 2 GB, DDR2 FB-DIMM, 667 MHz, 0x8551, 0x475232444635363732345142363637510000
    Memory Module: DIMM Riser B/DIMM 4, 2 GB, DDR2 FB-DIMM, 667 MHz, 0x8551, 0x475232444635363732345142363637510000
    Network Service: Built-in Ethernet, Ethernet, en0
    PCI Card: pci1b21,612, sppci_ahci, Slot-4
    PCI Card: ATI Radeon HD 5770, sppci_displaycontroller, Slot-1
    PCI Card: ATI Radeon HD 5770, ATY,HoolockParent, Slot-1
    Serial ATA Device: JMicron H/W RAID5, 12 TB
    Serial ATA Device: ST4000DM000-1F2168, 4 TB
    Serial ATA Device: ST31500341AS, 1.5 TB
    Serial ATA Device: WDC WD30EZRX-00MMMB0, 3 TB
    Serial ATA Device: PIONEER BD-RW   BDR-206D
    USB Device: ImageMate 14 in 1 Reader/Writer, 0x0781  (SanDisk Corporation), 0xb4b5, 0xfd200000 / 2
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfd500000 / 5
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52b, 0xfd530000 / 10
    USB Device: Apple Keyboard, apple_vendor_id, 0x024f, 0xfd520000 / 9
    USB Device: hub_device, 0x2001  (D-Link Corporation), 0xf103, 0xfd300000 / 4
    USB Device: composite_device, 0x04f9  (Brother International Corporation), 0x0270, 0xfd330000 / 8
    USB Device: XD-0608-U, 0x056a  (WACOM Co., Ltd.), 0x0042, 0xfd320000 / 7
    USB Device: SoundSticks, 0x05fc  (Harman International), 0x7849, 0xfd310000 / 6
    USB Device: hub_device, apple_vendor_id, 0x1008, 0xfd400000 / 3
    USB Device: USB TableMike, 0x8c00, 0x3c00, 0x1d100000 / 2
    FireWire Device: built-in_hub, 800mbit_speed
    FireWire Device: unknown_device, unknown_speed

  • Program crashes upon Opening

    Hi, My OS is Windows 7 and I am using the DW CS5 program. For two days now whenever I try to open DW it crashes immediately. I have gone to the forum and tried the remedy the problem trying the three options listed for DW CS4 program crashes, but none helped. I wasn't able to locate a current FAQ regarding this problem in DWCS5. Can someone help me please.

    Here's the remedies that I tried. The first one doesn't apply that I know of...the link to this forum is:  http://forums.adobe.com/thread/417116. There are no error messages. Just the standard "Dreamweaver has experienced a problem and will shut down. Microsoft will look for a solution...blah-blah." Then the program closes out. In conjunction with these recommended remedies I have re-booted several times too. I am also running Microsoft Expression Web 4 on the same computer. Of course I haven’t tried to run both at the same time but separately. I have not had any issues up until now.
    Robert
    Apr 9, 2009 11:45 AM
    Dreamweaver crashes on start up
    There are three common causes of Dreamweaver crashing on start up:
    Conflict with security program on Acer computers
    A corrupt Dreamweaver file cache
    The 8KB bug
    The following information describes how to handle each one.
    Acer incomaptibility
    There’s a known conflict between Dreamweaver and Acer eDataSecurity Management v3.0. If you’re on an Acer, and Dreamweaver won’t start, download the patch from http://www.egistec.com/oem-acer001/program-update.html. This should fix the problem.
    Corrupted file cache
    Dreamweaver creates a cache file called WinFileCache-*******.dat or MacFileCache-*******.dat inside your personal Dreamweaver configuration folder (the asterisks represent a series of letters and numbers that might differ from computer to computer). This occasionally gets corrupted causing instability, unpredictable error messages, and even crashes.
    To solve the problem, close Dreamweaver and delete WinFileCache-*******.dat or MacFileCache-*******.dat. Sometimes, deleting this file is not sufficient, and you need to delete your personal configuration folder in its entirety.
    WARNING: Do not confuse your personal configuration folder with the main configuration folder in Program Files in Windows or Applications on a Mac. You should never touch the main configuration folder unless you really know what you're doing.
    Locating your personal configuration folder
    The location of the personal configuration folder depends on your operating system and version of Dreamweaver. For Dreamweaver CS4, it’s as follows:
    Vista: C:\Users\ View. In Advanced settings, choose Show hidden files and folders.
    Once you turn on this option, hidden folders are displayed as dimmed icons to remind you to treat them with care.
    The 8KB bug
    This is a very rare bug that causes Dreamweaver to crash during operation, and then crash repeatedly each time you try to restart the program. It normally affects only Dreamweaver CS3 on Windows, and is caused by the presence of a file that's exactly 8,192 bytes (8KB) or a multiple thereof.
    The solution is to open the file in a text editor and add a few extra characters (new lines or a comment will do). Save the file, and restart Dreamweaver.
    If the file causing the problem is an image or other type of media file, edit it so that it's no longer an exact multiple of 8KB.

  • Program Crashes while multi-threading

    Hi Gurus:
    I am working on a program where I am running multiple JInternalFrames inside a JFrame. Each JInternalFrame starts a new thread (when the OK button is pressed). The thread calls a native (C++) method, which interfaces with another API (CAD).
    Problem is that when I run two frames together, my program crashes. If I wait for one frame to complete the process and then start the second one, everything works fine. I am not sharing any data between the threads. I even put a synchronized access modifier in front of the method that is causing the crash, to no avail. Don't know what else to try. I also ran the program in two different processes with only invoking one frame in each process, and it worked fine.
    The program either crashes with no error message, or sometimes it gives this error:
    -------------- Start of error --------------------------
    Another exception has been detected while we were handling last error.
    Dumping information about last error:
    ERROR REPORT FILE = (N/A)
    PC = 0x22ABDFFD
    SIGNAL = -1073741819
    FUNCTION NAME = (N/A)
    LIBRARY NAME = (N/A)
    Please check ERROR REPORT FILE for further information, if there is any.
    Good bye.
    ----------- End of error -------------------------------
    Any help would be appreciated.
    Regards,
    Kamran

    I also got that error - sometimes.
    Now I get something like this :
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x403bce8e
    Function name=__libc_free
    Library=/lib/libc.so.6
    Dynamic libraries:
    08048000-0804c000 r-xp 00000000 08:01 17180 /usr/java/jdk1.3.1_01/bin/i386/native_threads/java
    0804c000-0804d000 rw-p 00003000 08:01 17180 /usr/java/jdk1.3.1_01/bin/i386/native_threads/java
    40000000-40016000 r-xp 00000000 08:01 446282 /lib/ld-2.2.2.so
    40016000-40017000 rw-p 00015000 08:01 446282 /lib/ld-2.2.2.so
    and so on.
    I got an application which starts 50 threads (sometimes I start 60 or 30, just testing right now).
    Do you've got RedHat? And Kernel 2.4.2-2smp?
    I don't know how I got rid of your error, but now I got that one...
    Anybody who has experiences with that?
    THX,
    Peter

  • When I place an image, my adobe's creative cloud programs crash. Any solution?

    Hey there
    I'm a user who I try to place an image to the canvas of (Photoshop, Muse...) the program crash. Any solution?
    Im a Mac user.
    Thaks a lot.

    07/17/14 17:28:13:418 | [INFO] |  | OOBE | DE |  |  |  | 573218 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/17/14 17:28:13:418 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Visit http://www.adobe.com/go/loganalyzer/ for more information
    07/17/14 17:28:13:418 | [INFO] |  | OOBE | DE |  |  |  | 573218 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/17/14 17:28:13:418 | [INFO] |  | OOBE | DE |  |  |  | 573218 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/17/14 17:28:13:418 | [INFO] |  | OOBE | DE |  |  |  | 573218 | START - Installer Session
    07/17/14 17:28:13:418 | [INFO] |  | OOBE | DE |  |  |  | 573218 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/17/14 17:28:13:418 | [INFO] |  | OOBE | DE |  |  |  | 573218 | RIBS version: 8.0.0.15
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | OSX version: 10.9.0 
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | ::START TIMER:: [Total Timer]
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | CHECK: Single instance running
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | CHECK : Credentials
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Load Deployment File
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | ##### Running in Non RIBS Mode #####
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | CHECK : Another Native OS installer already running
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Create Required Folders
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Assuming install mode
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Looking up install source path
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Skipping Media DB sync in non ribs mode
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Ready to initialize session to start with ...
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | ::START TIMER:: [CreatePayloadSession]
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Updated source path: /tmp/526B09A0-27AF-4477-9DC7-6F9D8E9BF41D/Muse_2014_0_CC_LS24
    07/17/14 17:28:13:421 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Updating media info for: Muse_2014_0_CC_LS24.pkg_2014.0.1.30
    07/17/14 17:28:13:440 | [INFO] |  | OOBE | DE |  |  |  | 573218 |   Type: 1, Volume Order: 1, Media Name:
    07/17/14 17:28:13:440 | [INFO] |  | OOBE | DE |  |  |  | 573218 |   Path: /tmp/526B09A0-27AF-4477-9DC7-6F9D8E9BF41D/Muse_2014_0_CC_LS24/Muse_2014_0_CC_LS24.pkg
    07/17/14 17:28:13:440 | [INFO] |  | OOBE | DE |  |  |  | 573218 | --------------------  END  - Updating Media Sources -  END  --------------------
    07/17/14 17:28:13:449 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Supported RIBS version range: [0.0.0.0,8.0.0.15]
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | ----------------- CreatePayloadSession: machine is x86 ---------------
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | ______ Verify Dependency Subscribers ______
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 |   Adobe Muse CC 2014 2014.0.1.30 Muse_2014_0_CC_LS24.pkg_2014.0.1.30: 0 (0,0)
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | END Operation order for all session payloads: mediaGroup (requires,satisfies)
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Ignoring deployment input for the INSTALLDIR: marked as fixed
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Setting property "deploymentFile" to: /tmp/526B09A0-27AF-4477-9DC7-6F9D8E9BF41D/6A70E63D-862A-4C9F-AB4B-0109BB794D38
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Setting property "installLanguage" to: es_ES
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Attempting to find the selected language in the set of available payload languages
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Setting property "installSourcePath" to: /tmp/526B09A0-27AF-4477-9DC7-6F9D8E9BF41D/Muse_2014_0_CC_LS24
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Setting property "nonRIBSMode" to: 1
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Setting property "proxyFile" to: /tmp/526B09A0-27AF-4477-9DC7-6F9D8E9BF41D/proxy.xml
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Setting property "skipSync" to: 1
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Setting property "userASUPath" to: ""
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Overwrite property "installLanguage" to: es_ES
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Overwrite property "nonRIBSMode" to: 1
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Overwrite property "proxyFile" to: /tmp/526B09A0-27AF-4477-9DC7-6F9D8E9BF41D/proxy.xml
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Overwrite property "skipSync" to: 1
    07/17/14 17:28:13:450 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Overwrite property "userASUPath" to: ""
    07/17/14 17:28:13:451 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Found payload actions:
    07/17/14 17:28:13:451 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Deciding what installer mode to use...
    07/17/14 17:28:13:465 | [INFO] |  | OOBE | DE |  |  |  | 573218 | BEGIN Setting requested payload actions
    07/17/14 17:28:13:465 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Value returned on lookup of payload: Adobe Muse CC 2014 2014.0.1.30 Muse_2014_0_CC_LS24.pkg_2014.0.1.30 is: false
    07/17/14 17:28:13:465 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Action string for Adobe Muse CC 2014 2014.0.1.30 Muse_2014_0_CC_LS24.pkg_2014.0.1.30  is install
    07/17/14 17:28:13:465 | [INFO] |  | OOBE | DE |  |  |  | 573218 | END Setting requested payload actions
    07/17/14 17:28:13:476 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Collected advanced path check information for INSTALLDIR
    07/17/14 17:28:13:476 | [INFO] |  | OOBE | DE |  |  |  | 573218 | INSTALLDIR is a well-formed path
    07/17/14 17:28:13:476 | [INFO] |  | OOBE | DE |  |  |  | 573218 | INSTALLDIR is not the root path
    07/17/14 17:28:13:476 | [INFO] |  | OOBE | DE |  |  |  | 573218 | INSTALLDIR is on a local volume
    07/17/14 17:28:13:476 | [INFO] |  | OOBE | DE |  |  |  | 573218 | INSTALLDIR is on a writable volume
    07/17/14 17:28:13:476 | [INFO] |  | OOBE | DE |  |  |  | 573218 | INSTALLDIR is not on a case sensitive volume
    07/17/14 17:28:13:476 | [INFO] |  | OOBE | DE |  |  |  | 573218 | INSTALLDIR passed path basic path validation: /Applications
    07/17/14 17:28:23:896 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Call PreSession Custom Hook
    07/17/14 17:28:23:896 | [INFO] |  | OOBE | DE |  |  |  | 573218 | BEGIN InstallOperationsQueue Unordered operations
    07/17/14 17:28:23:896 | [INFO] |  | OOBE | DE |  |  |  | 573218 |   Adobe Muse CC 2014 2014.0.1.30 Muse_2014_0_CC_LS24.pkg_2014.0.1.30:  with operation install
    07/17/14 17:28:23:896 | [INFO] |  | OOBE | DE |  |  |  | 573218 | END InstallOperationsQueue Unordered operations
    07/17/14 17:28:23:896 | [INFO] |  | OOBE | DE |  |  |  | 573218 | BEGIN InstallOperationsQueue Ordered operations
    07/17/14 17:28:23:896 | [INFO] |  | OOBE | DE |  |  |  | 573218 |   Adobe Muse CC 2014 2014.0.1.30 Muse_2014_0_CC_LS24.pkg_2014.0.1.30:  with operation install
    07/17/14 17:28:23:896 | [INFO] |  | OOBE | DE |  |  |  | 573218 | END InstallOperationsQueue Ordered operations
    07/17/14 17:28:23:990 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Calling the custom action code for pre-install for payload Adobe Muse CC 2014 2014.0.1.30 Muse_2014_0_CC_LS24.pkg_2014.0.1.30
    07/17/14 17:28:23:990 | [INFO] |  | OOBE | DE |  |  |  | 573218 | ::START TIMER:: [Payload Operation :Muse_2014_0_CC_LS24.pkg_2014.0.1.30]
    07/17/14 17:28:23:990 | [INFO] |  | OOBE | DE |  |  |  | 574184 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/17/14 17:28:23:990 | [INFO] |  | OOBE | DE |  |  |  | 574184 | Installer Operation: InstallThirdPartyPayloadOperation
    07/17/14 17:28:23:990 | [INFO] |  | OOBE | DE |  |  |  | 574184 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/17/14 17:28:23:990 | [INFO] |  | OOBE | DE |  |  |  | 574184 | Installing third party payload
    07/17/14 17:28:24:001 | [INFO] |  | OOBE | DE |  |  |  | 574184 | Running Apple Package : /tmp/526B09A0-27AF-4477-9DC7-6F9D8E9BF41D/Muse_2014_0_CC_LS24/Muse_2014_0_CC_LS24.pkg
    07/17/14 17:28:26:368 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer: Package name is Adobe Muse CC 2014
    07/17/14 17:28:26:368 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer: Upgrading at base path /
    07/17/14 17:28:26:368 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Preparando la instalación…
    07/17/14 17:28:26:368 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:26:516 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Preparando el disco…
    07/17/14 17:28:26:516 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:26:569 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Preparando Adobe Muse CC 2014…
    07/17/14 17:28:26:569 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:26:609 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Esperando a que concluyan otras instalaciones…
    07/17/14 17:28:26:609 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:26:611 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Configurando la instalación…
    07/17/14 17:28:26:611 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:STATUS:
    07/17/14 17:28:26:611 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:27:111 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%4.362258
    07/17/14 17:28:27:111 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:27:111 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:27:111 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:27:611 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%9.315901
    07/17/14 17:28:27:611 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:27:611 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:27:611 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:28:111 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%12.877675
    07/17/14 17:28:28:111 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:28:111 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:28:111 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:28:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%20.001223
    07/17/14 17:28:28:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:28:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:28:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:29:112 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%24.750255
    07/17/14 17:28:29:112 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:29:112 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:29:112 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:29:611 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%30.686545
    07/17/14 17:28:29:611 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:29:611 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:29:611 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:30:112 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%35.435577
    07/17/14 17:28:30:112 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:30:112 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:30:112 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:30:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%40.184609
    07/17/14 17:28:30:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:30:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:30:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:31:113 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%46.120899
    07/17/14 17:28:31:113 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:31:113 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:31:113 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:31:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%49.682673
    07/17/14 17:28:31:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:31:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:31:612 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:32:113 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%50.869931
    07/17/14 17:28:32:113 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:32:114 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:32:114 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:32:613 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%54.431705
    07/17/14 17:28:32:613 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:32:613 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:32:613 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:33:114 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%59.180737
    07/17/14 17:28:33:114 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:33:114 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:33:114 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:33:613 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%63.929769
    07/17/14 17:28:33:613 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:33:613 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:33:613 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:34:115 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%69.866059
    07/17/14 17:28:34:115 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:34:115 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:34:115 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:34:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%71.053317
    07/17/14 17:28:34:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:34:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Escribiendo archivos…
    07/17/14 17:28:34:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:35:115 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%72.408166
    07/17/14 17:28:35:115 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:35:115 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Optimizando el sistema para el software instalado…
    07/17/14 17:28:35:115 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:35:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%79.342461
    07/17/14 17:28:35:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:35:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Eliminando archivos antiguos…
    07/17/14 17:28:35:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:36:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%92.114101
    07/17/14 17:28:36:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:36:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Ejecutando scripts del paquete…
    07/17/14 17:28:36:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:36:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%92.706608
    07/17/14 17:28:36:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:36:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Ejecutando scripts del paquete…
    07/17/14 17:28:36:615 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:37:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%93.017590
    07/17/14 17:28:37:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:37:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Ejecutando scripts del paquete…
    07/17/14 17:28:37:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:37:616 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Ejecutando scripts del paquete…
    07/17/14 17:28:37:616 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:38:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Ejecutando scripts del paquete…
    07/17/14 17:28:38:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:38:616 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Ejecutando scripts del paquete…
    07/17/14 17:28:38:616 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:39:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Ejecutando scripts del paquete…
    07/17/14 17:28:39:116 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:39:617 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%96.684816
    07/17/14 17:28:39:617 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:39:617 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Borrando…
    07/17/14 17:28:39:617 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:40:117 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Validando paquetes…
    07/17/14 17:28:40:117 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:40:626 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%97.750000
    07/17/14 17:28:40:626 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:40:626 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:STATUS:Ejecutando acciones del Instalador…
    07/17/14 17:28:40:626 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:40:642 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:STATUS:
    07/17/14 17:28:40:642 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:PHASE:Finalizando la instalación…
    07/17/14 17:28:40:642 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:40:645 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:STATUS:
    07/17/14 17:28:40:645 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:40:645 | [INFO] |  | OOBE | DE |  |  |  | 574184 | installer:%100.000000
    07/17/14 17:28:40:646 | [INFO] |  | OOBE | DE |  |  |  | 574184 |
    07/17/14 17:28:45:386 | [INFO] |  | OOBE | DE |  |  |  | 574184 | Third party payload completed.  Testing return code: 0
    07/17/14 17:28:45:386 | [ERROR] |  | OOBE | DE |  |  |  | 574184 | DF027: Cannot copy third party Adobe Muse CC 2014 2014.0.1.30 Muse_2014_0_CC_LS24.pkg_2014.0.1.30 uninstall files
    07/17/14 17:28:45:445 | [INFO] |  | OOBE | DE |  |  |  | 573218 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    07/17/14 17:28:45:446 | [INFO] |  | OOBE | DE |  |  |  | 573218 | :: END TIMER :: [Payload Operation :Muse_2014_0_CC_LS24.pkg_2014.0.1.30] took 21445 milliseconds (21.445 seconds) DTR = 8.02052 KBPS (0.00783254 MBPS)
    07/17/14 17:28:45:446 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Calling the custom action code for post-install for payload Adobe Muse CC 2014 2014.0.1.30 Muse_2014_0_CC_LS24.pkg_2014.0.1.30
    07/17/14 17:28:45:521 | [INFO] |  | OOBE | DE |  |  |  | 573218 | No operation.  We're done:
    07/17/14 17:28:47:524 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Successfully installed 1 component:
    07/17/14 17:28:47:524 | [INFO] |  | OOBE | DE |  |  |  | 573218 |  - Adobe Muse CC 2014
    07/17/14 17:28:47:524 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Total components repaired: 0
    07/17/14 17:28:47:524 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Total components removed: 0
    07/17/14 17:28:47:525 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Call PostSession Custom Hook
    07/17/14 17:28:47:525 | [INFO] |  | OOBE | DE |  |  |  | 573218 | :: END TIMER :: [Total Timer] took 34090 milliseconds (34.09 seconds) DTR = 2.22939 KBPS (0.00217714 MBPS)
    07/17/14 17:28:48:526 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Exit Code: 0 - No error.
    07/17/14 17:28:48:526 | [INFO] |  | OOBE | DE |  |  |  | 573218 | Please see specific errors for troubleshooting. For example, ERROR: DF027 ...
    07/17/14 17:28:48:526 | [INFO] |  | OOBE | DE |  |  |  | 573218 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/17/14 17:28:48:526 | [INFO] |  | OOBE | DE |  |  |  | 573218 | END - Installer Session
    07/17/14 17:28:48:526 | [INFO] |  | OOBE | DE |  |  |  | 573218 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

  • Skype crash for every call i make

    Hello,
    I have a huge problem my skype crash when i try to call someone or receive a call.
    I searched for solutions and tried every solutions of this topic http://community.skype.com/t5/Windows-desktop-client/Skype-crashes-for-any-call-I-make/td-p/1764243
    nothing worked :/
    Help me please !! ;/
    Solved!
    Go to Solution.

    Kylar_Stern wrote:
    I'm on Windows 8.1 , 64 bits and with the last version of skype
    Please,  run the DirectX diagnostics tool.
    Go to Windows Start and in the Run box type dxdiag.exe and press the OK button. This will start the DirectX diagnostics program. Run this diagnostics and save the results to a file. Please, attach this file to your post.
    Be aware that you will have to zip this file before attaching it here.

  • Fetching whole table using OCI calls

    I am new to OCI programming .I am writing an appliaction in C# to fetch data from ORACLE using OCI calls,Using that application i can able to fecth single row,
    but i need to load/ fetch the entire table data from the database using the single fetch?
    I have created a scrollable resultset by using the below give statement
    and i can able to fetch single coloumn.
    short paramSizee = 20;
    IntPtr TestNo = GetPointer((int)paramSizee);
    rc = OCI.OCIDefineByPos(hStatement, out HDefine, hError, 1, TestNo, paramSizee, OCI.DATATYPE.VARCHAR2, OCI.NullHandleRef, OCI.NullHandleRef, OCI.NullHandleRef, OCI.MODE.OCI_DEFAULT);
    if (rc != 0)
    Console.WriteLine(CheckError(hError));
    throw new Exception("OCI Define Failed...");
    rc = OCI.OCIStmtExecute(hServiceContext, hStatement, hError, iters, 0, OCI.NullHandleRef, OCI.NullHandleRef, OCI.MODE.OCI_STMT_SCROLLABLE_READONLY);
    rc = OCI.OCIStmtFetch(hStatement, hError,50, OCI.FETCH.OCI_FETCH_NEXT, OCI.MODE.OCI_DEFAULT);
    if (rc != 0)
    Console.WriteLine(CheckError(hError));
    throw new Exception("OCI Fetch Failed...");
    Using above calls i can able to fetch arround 100 rows per fetch but my customer table has 16000 rows .
    So it will be great if someone suggest proper way to fetch entire table data in single fetch.
    Thanks,
    Raj

    For fetching large number of rows in single Db roundtrip use the following
    To get the bulk Data use the following.MAX_PREFETCH_ROWS is the integer value you want fetch in BULK
    (void) OCIAttrSet((dvoid *)DBctx->stmthp, (ub4) OCI_HTYPE_STMT,
    (dvoid *)&MAX_PREFETCH_ROWS,(ub4)sizeof(MAX_PREFETCH_ROWS),
    (ub4) OCI_ATTR_PREFETCH_ROWS, DBctx->errhp);

  • Why does this little program crash sometimes?

    I don't know if the code of the program is the most important here, I'm guessing I have to learn some extra things to help the program not crash anymore. But what?
    My question remains, still: Why does this little program crash sometimes?, because I might guess wrong.
    The program is a small application that let's you introduce two numbers in 2 text fields (or if you want, there is also a button that generates some random int numbers to complete the text fields for you), let's you introduces the result of the division of those numbers in another text field, and the result of the multiplication of those numbers in another text field. Then you have another 2 buttons that after being pushed, tell you if you resolved the operations right.
    The application runs fine most of the times, but sometimes it just freezes when I push the button that generates new random numbers.
    Why does this happen? Why does this happen only sometimes and not all the time?

    package my.NumberAddition;
    * @author  zi02
    public class NumberAdditionUI extends javax.swing.JFrame {
        /** Creates new form NumberAdditionUI */
        public NumberAdditionUI() {
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                         
        private void initComponents() {
            buttonGroup1 = new javax.swing.ButtonGroup();
            jPanel1 = new javax.swing.JPanel();
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            jLabel3 = new javax.swing.JLabel();
            jTextField1 = new javax.swing.JTextField();
            jTextField2 = new javax.swing.JTextField();
            jTextField3 = new javax.swing.JTextField();
            jButton1 = new javax.swing.JButton();
            jButton2 = new javax.swing.JButton();
            jTextField4 = new javax.swing.JTextField();
            jButton4 = new javax.swing.JButton();
            jTextField5 = new javax.swing.JTextField();
            jLabel4 = new javax.swing.JLabel();
            jTextField6 = new javax.swing.JTextField();
            jButton5 = new javax.swing.JButton();
            jButton3 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jPanel1.setBorder(javax.swing.BorderFactory.createTitledBorder(new javax.swing.border.SoftBevelBorder(javax.swing.border.BevelBorder.RAISED), "Number Addition", javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION, javax.swing.border.TitledBorder.DEFAULT_POSITION, new java.awt.Font("Tahoma", 0, 11), new java.awt.Color(0, 153, 204))); // NOI18N
            jLabel1.setText("First Number:");
            jLabel2.setText("Second Number:");
            jLabel3.setText("Multiply:");
            jTextField3.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jTextField3ActionPerformed(evt);
            jButton1.setText("Clear");
            jButton1.setBorder(javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED));
            buttonGroup1.add(jButton1);
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            jButton2.setText("Result");
            jButton2.setBorder(javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED));
            buttonGroup1.add(jButton2);
            jButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton2ActionPerformed(evt);
            jButton4.setText("Result");
            jButton4.setBorder(javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED));
            buttonGroup1.add(jButton4);
            jButton4.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton4ActionPerformed(evt);
            jLabel4.setText("Divide:");
            jTextField6.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jTextField6ActionPerformed(evt);
            jButton5.setText("New Numbers");
            jButton5.setBorder(javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED));
            jButton5.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton5ActionPerformed(evt);
            javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
            jPanel1.setLayout(jPanel1Layout);
            jPanel1Layout.setHorizontalGroup(
                jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel1Layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jLabel4, javax.swing.GroupLayout.Alignment.TRAILING)
                        .addComponent(jLabel3, javax.swing.GroupLayout.Alignment.TRAILING)
                        .addComponent(jLabel2, javax.swing.GroupLayout.Alignment.TRAILING)
                        .addComponent(jLabel1, javax.swing.GroupLayout.Alignment.TRAILING))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()
                            .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(jTextField6, javax.swing.GroupLayout.Alignment.TRAILING)
                                .addComponent(jTextField3, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 112, Short.MAX_VALUE))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(jButton4, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                                .addComponent(jButton2, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(jTextField4, javax.swing.GroupLayout.DEFAULT_SIZE, 41, Short.MAX_VALUE)
                                .addComponent(jTextField5, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 65, Short.MAX_VALUE)))
                        .addGroup(jPanel1Layout.createSequentialGroup()
                            .addGap(84, 84, 84)
                            .addComponent(jButton5)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(jButton1))
                        .addComponent(jTextField2)
                        .addComponent(jTextField1))
                    .addContainerGap())
            jPanel1Layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {jButton1, jButton2, jButton4});
            jPanel1Layout.setVerticalGroup(
                jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel1Layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel1)
                        .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel2)
                        .addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel3)
                        .addComponent(jButton2)
                        .addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jTextField5, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jButton4)
                        .addComponent(jTextField4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel4)
                        .addComponent(jTextField6, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jButton1)
                        .addComponent(jButton5))
                    .addContainerGap(15, Short.MAX_VALUE))
            jButton3.setText("Exit");
            jButton3.setBorder(javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED));
            jButton3.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton3ActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jPanel1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 345, Short.MAX_VALUE)
                        .addComponent(jButton3, javax.swing.GroupLayout.Alignment.TRAILING))
                    .addContainerGap())
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addComponent(jButton3)
                    .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            pack();
        }// </editor-fold>                       
    private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {                                        
        System.exit(0);
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
        jTextField1.setText("");
        jTextField2.setText("");
        jTextField3.setText("");
        jTextField4.setText("");
        jTextField5.setText("");
        jTextField6.setText("");
        @SuppressWarnings("empty-statement")
    private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                        
        // First we define float variables.
        float num1, num2, num3,  result;
        // We have to parse the text to a type float.
        num1 = Float.parseFloat(jTextField1.getText());
        num2 = Float.parseFloat(jTextField2.getText());
        // Now we can perform the addition.
        num3 = Float.parseFloat(jTextField3.getText());
        // We will now pass the value of result to jTextField3.
        // At the same time, we are going to
        // change the value of result from a float to a string.
        result = num1*num2;
        if (num3==result)
        jTextField5.setText("Correct");
        else jTextField5.setText("Wrong");
    private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {                                        
        // First we define float variables.
        float num1, num2, num4, result;
        // We have to parse the text to a type float.
        num1 = Float.parseFloat(jTextField1.getText());
        num2 = Float.parseFloat(jTextField2.getText());
        // Now we can perform the addition.
        num4 = Float.parseFloat(jTextField6.getText());
        // We will now pass the value of result to jTextField3.
        // At the same time, we are going to
        // change the value of result from a float to a string.
        result = num1/num2;
        if (num4==result)
        jTextField4.setText("Correct");
        else jTextField4.setText("Wrong");
    private void jTextField6ActionPerformed(java.awt.event.ActionEvent evt) {                                           
    // TODO add your handling code here:
    private void jTextField3ActionPerformed(java.awt.event.ActionEvent evt) {                                           
    // TODO add your handling code here:
    private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {                                        
        int number1,number2;
        number1 = (int)(Math.random()*100);
        number2 = (int)(Math.random()*100);
        while ((number1 < number2) || (number2 == 0) ||(number2==1)
                || (number1 % number2 !=0))
            number2 = (int)(Math.random()*10);       
        jTextField1.setText(String.valueOf(number1));
        jTextField2.setText(String.valueOf(number2));
        jTextField3.setText("");
        jTextField4.setText("");
        jTextField5.setText("");
        jTextField6.setText("");
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new NumberAdditionUI().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.ButtonGroup buttonGroup1;
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JButton jButton3;
        private javax.swing.JButton jButton4;
        private javax.swing.JButton jButton5;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JLabel jLabel4;
        private javax.swing.JPanel jPanel1;
        private javax.swing.JTextField jTextField1;
        private javax.swing.JTextField jTextField2;
        private javax.swing.JTextField jTextField3;
        private javax.swing.JTextField jTextField4;
        private javax.swing.JTextField jTextField5;
        private javax.swing.JTextField jTextField6;
        // End of variables declaration                  
    }

  • Program Crashes on Windows 2000 Computer

    This post is a little long, but I tried to provide as much information as possible.
    Due to increased production volumes we added an additional test station. We have been having problems with a LabVIEW program crashing when I run the program on new test station I just installed. The program works fine on the older station but doesn’t on the new test station. The main difference I see is that the new station runs on Windows 2000 professional and the old station runs on Windows NT 4.0. The other difference is that new computer is faster. The program usually crashes after testing 12 devices (4 devices are tested simultaneously), so after the 3rd time through the test routine the program crashes. We can reload the program and test another 12 devices until the computer crashes again. It appears like program is crashing in the “Write 1 point to digital line.vi” because one of the digital lines is stuck high after it crashes. I have attached the library “Press Key.llb” for reference. The main vi is named “Press Key.vi” which controls the action/duration of digital lines for each test ( 0 through 32).
    Hardware/Software overview:
    The Test Station consists of Pentium IV computer with four (4) National Instruments PCI MIO16E-1 DAQ cards and 1 PCI – GPIB card that communicates to a power supply.
    The program is “written” in LabVIEW version 6.0. The program is built into an executable and runs with LabVIEW runtime engine. The program is rather large (2.5 MB)
    The program uses the 4 DAQ boards to simultaneous acquire data from four devices under test. Two of the DAQ boards are also used to control relays that activate air cylinders. The air cylinder presses on specific keys on the devices under test. Once the devices are set, the 4 DAQ boards each take the another set of measurements. This process is repeated (Approximately 30 times) until the devices are complete.
    Note: The program typically uses 184 MB of Ram
    Computer 1: Old Station (In use for 2-3 years) Working fine
    Computer Pentium IV computer
    Processor Pentium IV 1 Ghz
    RAM 256 MB
    Operating System Windows NT version 4.0
    NI DAQ Version 6.6
    Computer 2: New Station Problems crashing
    Computer Pentium IV computer
    Processor Pentium IV 3.00 Ghz
    RAM 256 MB
    Operating System Windows 200 Professional
    NI DAQ Version 7.2
    Any Help would be appreciated!
    Thanks Jayme

    Regarding the releasing of memory. Yes the "problem" computer memory starts at 184 MB and climbs to 197 MB right before it crashes. The "good" computer memory starts at 184 MB and stays there. They are both running the same exe file only different OS.
    Yes I do use a DLL called LVDAQ.DLL. I this DLL is probably being called when the software crashes
    When I generate the exe using LabVIEW application builder (on a Windows NT station) the lvdaq.DLL is created automatically. Is there a setting to define which library is created? or can I get this file from NI?

  • Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem net ti

    Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem next time it launches".  Except that it doesn't, I keep getting the same message and the program closes.  Does anyone know what I  can do to repair it?  Can't back up, can't do anything.

    There are dozens of threads in this forum that describe the fix

  • Program crashes when I try to load EPUB/ASCM ebook file or transfer the file to Nook ereader.

    I recently checked out an ebook from my library's OverDrive and downloaded the EPub file to my Mac OS 10.10.1 computer. File downloaded to computer without incident, showing up as a acsm file in my Downloads folder. But when I attempt to open the file in Adobe Digital Editions 4.0.2 in order to transfer it to my Nook ereader, a message comes up saying it is fulfilling (similar to normal) but then the program crashes.
    I get this error message:
    (Adobe Digital Editions quit unexpectedly.
    Click Reopen to open the application again. Click Report to see more
    detailed information and send a report to Apple.
    With buttons that say: Ignore    Report     Reopen)
    Then when I reopen Adobe Digital Editions, it appears as thought the file is in the Adobe Digital Editions browser, but if I click on it to open it or try and transfer it to my Nook ereader device the program crashes again. (Same error message)
    I've tried erasing the file and redownloading the ebook from Google Chrome, Safari and Firefox and the same thing happens. I've also tried restarting my computer and looking for updates to resolve the issue (there were none). I've used this program before with no issues, so this problem is new. I've also tried opening other files since, they most of those seem to open as well.I've used this program before with no issues, so this problem is new.
    Running out of ideas. Please help!

    Mike, that worked -- I think! I couldn't change the printer without a document open, but while I was in the File menu, I noticed the "Browse in Bridge" command, and it occurred to me that I hadn't tried opening a file from Bridge. It opened first to the templates, and I realized I had not tried opening a template. So I did, that worked, and I changed the printer from where it was set (Adobe pdf) to my regular printer. Now I can create new files, and all files seem to open without a problem. Thanks!

Maybe you are looking for

  • Customising ADF table

    Hi everyone, is it possible to move/replace the first few columns of an ADF read-only table with the next few columns on clicking a icon/link/command button. And the icon/link/command button be placed in the column header of ADF table. i am looking t

  • Using Java Webservices provided by xRPM 4.0 in PPM 5.0

    Hi, We have developed some custom WD ABAP applications in PPM 4.5 which were using Java webservices provided by xRPM 4.0 to get the UI context. The details are provided in the document https://websmp109.sap-ag.de/~sapidb/012006153200000315412008E/How

  • Wiki won't startup

    Start wiki and get the infinite "Server Start Up" pinwheel. I've tried every tip in the other threads on this forum to no avail... There is an error in the wikid error.log that says: +File "/usr/share/wikid/lib/python/apple_utilities/SettingsManager.

  • HT4623 transfer to ipod touch

    I was able to download an audio book CD to Itune 11 but do not know how to transfer to my IPOD TOUCH 4th generation...

  • Errors in chrome manifest file,all toolbars are shutdown

    could not read chrome manifest file 'c:\ program files (x86)\mozilla firefox\extensions\ {972ce4c6-7e08-4474-a285-3208198ce6fd} \ chrome.manifest'. also empty string passed to getelementById( ). chrome://browser/content/browser.xul all toolbars are s