JVM crashes when converting jstring to native string

Hi ,
I am trying to convert a jstring to a char * . My main program is in C.
I tried calling the two methods :
const char str = (env)->GetStringUTFChars(env, myJstring, 0);
and
const char *result = JNU_GetStringNativeChars(env, myJstring);
Both the times the VM crashed. I copied the code for both the above mentioned functions from sun's website examples.
Any help appreciated.
thanks,
Sanjay

Try this:
JNIEXPORT void JNICALL my_native_method
  (JNIEnv * env, jobject obj, jstring jnewValue)     
  jboolean isCopy;
  const char* newValue = env->GetStringUTFChars(jnewValue, &isCopy);
  // release string if possible
  if(isCopy == JNI_TRUE) {
    env->ReleaseStringUTFChars(jnewValue, newValue);
} But be aware of one thing:
The JNIEnv pointer has to be valid in the current thread, if not the JVM will crash. The JNIEnv pointer is always valid in the example above, since this is the implementation of a native method. The JNIEnv is only valid in the thread it is created in.
Hope this can be of any help :)

Similar Messages

  • JVM crashed when attempting to load native binaries on SUSE

    Hello!
    We have a java application that calls at some point C++ code in form of specific OS binaries. We tested for RedHat and SUSE - for the first OS it worked fine but for SUSE I got:
    {color:#ff0000}#
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGFPE (0x8) at pc=0xf7f4a1fb, pid=21443, tid=4149328800
    # JRE version: 6.0_14-b08
    # Java VM: Java HotSpot(TM) Client VM (14.0-b16 mixed mode linux-x86 )
    # Problematic frame:
    # C [ld-linux.so.2+0x91fb]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    T H R E A D
    Current thread (0x08059000): JavaThread "main" [_thread_in_native, id=21448, stack(0xf749b000,0xf751c000)]
    siginfo:si_signo=SIGFPE: si_errno=0, si_code=1 (FPE_INTDIV), si_addr=0xf7f4a1fb
    Registers:
    EAX=0x0df0d414, EBX=0xf7f5bff4, ECX=0x093522b0, EDX=0x00000000
    ESP=0xf7517b84, EBP=0xf7517be0, ESI=0x0935245c, EDI=0xf7517c6c
    EIP=0xf7f4a1fb, CR2=0xf7f33100, EFLAGS=0x00010246
    Top of Stack: (sp=0xf7517b84)
    0xf7517b84: ea91ab8b dc5cdb74 00000009 f7f04164
    0xf7517b94: dc5ccb9c 0df0d414 dc5cdb74 f7f4e389
    0xf7517ba4: 00000008 093522b0 dc5cb3ec dc5cdafc
    0xf7517bb4: dc5d4030 00000000 00000000 09053344
    0xf7517bc4: f7f5bff4 f7517ca0 dc5d3fb6 f7517c6c
    0xf7517bd4: f7f5bff4 0935245c f7517c6c f7517c80
    0xf7517be4: f7f4a587 f7517c6c 09352408 00000000
    0xf7517bf4: 00000000 00000001 00000000 00000000
    Instructions: (pc=0xf7f4a1fb)
    0xf7f4a1eb: 8b 8a 94 01 00 00 8b 45 b8 89 4d d4 89 d1 31 d2
    0xf7f4a1fb: f7 b1 6c 01 00 00 8b 81 70 01 00 00 8b 3c 90 85
    Stack: [0xf749b000,0xf751c000], sp=0xf7517b84, free space=498k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ld-linux.so.2+0x91fb]
    C [ld-linux.so.2+0x9587]
    C [ld-linux.so.2+0xabff]
    C [ld-linux.so.2+0x11471]
    C [ld-linux.so.2+0xd3a6]
    C [ld-linux.so.2+0x10cb9]
    C [libdl.so.2+0xe4d]
    C [ld-linux.so.2+0xd3a6]
    C [libdl.so.2+0x12fc]
    C [libdl.so.2+0xd84] dlopen+0x44
    V [libjvm.so+0x3237c9]
    V [libjvm.so+0x288819]
    C [libjava.so+0xbcac] Java_java_lang_ClassLoader_00024NativeLibrary_load+0x6c
    j java.lang.ClassLoader$NativeLibrary.load(Ljava/lang/String;)V+0
    j java.lang.ClassLoader.loadLibrary0(Ljava/lang/Class;Ljava/io/File;)Z+300
    j java.lang.ClassLoader.loadLibrary(Ljava/lang/Class;Ljava/lang/String;Z)V+127
    j java.lang.Runtime.load0(Ljava/lang/Class;Ljava/lang/String;)V+57
    j java.lang.System.load(Ljava/lang/String;)V+7
    j com.boss.media.util.DllUtils.LoadNativeDll(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;+404
    j com.boss.media.engine.StreamingEngine.getInstance(Ljava/lang/String;)Lcom/boss/media/engine/StreamingEngine;+9
    {color:#000000}
    Seems the crash is producing when Suse's ld-linux.so attempts to load our binaries.{color}
    {color}{color:#000000}Does anyone have any idea on what is wrong here?
    Thank you very much
    With best regards,
    Sorin
    {color}

    We tested for RedHat and SUSE - for the first OS it worked fine but for SUSE I got:Either the standard pointer problems leading to a spurious error or some subtle OS difference.
    SIGFPEThat is a pretty specific signal. If the C++ code is not mucking around with numerics then it would suggest a pointer problem. If numerics are involved then that would be the first place to start (noting again that pointer problems can cause spurious errors.)

  • JVM crash when adding method to class

    Hello,
    I am getting some kind of problem with the virtual machine. The JVM crashes when making a class (with new). It happened when I was adding some functionality to the class, I worked my way backwards and discovered it crashes when I add any new methods, if I comment them out again everything works, adding a method by any name causes to crash.
    I went in debug to find out where it was happening, and it happens on this line:
    public PerspectiveActionToolBarHeader createPerspectiveActionToolBarHeader() {
         PerspectiveActionToolBarHeader ret = null;
         ret = new PerspectiveActionToolBarHeader(this); // << here
         return ret;
    }The PerspectiveActionToolBarHeader is the class where adding methods causes it to fail. For example, it has the method
    public Container getContainer() {
         return this;
    }and works, but if I add:
    public void anything(){} it causes a crash on the new PerspectiveActionToolBarHeader(this);
    When stepped into with the debugger it goes to the (source not found) ClassNotFoundException and eventually before the crash the (stack?) looks like this:
    Launcher$AppClassLoader(ClassLoader).loadClass(String) line: not available     
    MaldiSoftwareOptionsUIEnsemble(PerspectiveUIEnsemble).createPerspectiveActionToolBarHeader() line: 72
    and the debugger describes the class just before the crash:
    Launcher$AppClassLoader (id=44)     
    arg0     "saiman.uiobjnew.PerspectiveToolBarButton" (id=51) << has just changed
    and the log file (not sure how much to copy here!):
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ILLEGAL_INSTRUCTION (0xc000001d) at pc=0x005c0001, pid=15504, tid=20112
    # JRE version: 6.0_24-b07
    # Java VM: Java HotSpot(TM) Client VM (19.1-b02 mixed mode windows-x86 )
    # Problematic frame:
    # C 0x005c0001
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x011ca000): JavaThread "main" [_thread_in_vm, id=20112, stack(0x01140000,0x01190000)]
    siginfo: ExceptionCode=0xc000001d
    Registers:
    EAX=0x13e13248, EBX=0x6da0daa8, ECX=0x13e13250, EDX=0x13e131f8
    ESP=0x0118f93c, EBP=0x0118f9a0, ESI=0x011ca9b0, EDI=0x011ca9ac
    EIP=0x005c0001, EFLAGS=0x00010206
    Register to memory mapping:
    EAX=0x13e13248
    {method}
    - klass: {other class}
    EBX=0x6da0daa8
    0x6da0daa8 is pointing to unknown location
    ECX=0x13e13250
    {method}
    - klass: {other class}
    EDX=0x13e131f8
    {constMethod}
    - klass: {other class}
    - method: 0x13e13248 {method} 'flipVisible' '(I)V' in 'saiman/uiobjnew/PerspectiveActionToolBarHeader'
    - exceptions: 0x13bf11e8
    ESP=0x0118f93c
    0x0118f93c is pointing into the stack for thread: 0x011ca000
    "main" prio=6 tid=0x011ca000 nid=0x4e90 runnable [0x0118f000]
    java.lang.Thread.State: RUNNABLE
    EBP=0x0118f9a0
    0x0118f9a0 is pointing into the stack for thread: 0x011ca000
    "main" prio=6 tid=0x011ca000 nid=0x4e90 runnable [0x0118f000]
    java.lang.Thread.State: RUNNABLE
    ESI=0x011ca9b0
    0x011ca9b0 is pointing to unknown location
    EDI=0x011ca9ac
    0x011ca9ac is pointing to unknown location
    Top of Stack: (sp=0x0118f93c)
    0x0118f93c: 6d94272d 011ca370 13e17d40 011ca000
    0x0118f94c: 011ca000 01a30950 011ca748 011ca9b4
    0x0118f95c: 011cab3c 0118fb28 011c6748 011ca348
    0x0118f96c: 011ca370 011ca73c 6da0daa8 011ca350
    0x0118f97c: 011ca370 0118f9cc 011ca9a8 0118f9c8
    0x0118f98c: 011ca788 011ca370 011ca9b0 011ca000
    0x0118f99c: 13e17d40 0118f9cc 6d943009 00000910
    0x0118f9ac: 011ca9ac 00000001 011ca000 011ca000
    Instructions: (pc=0x005c0001)
    0x005bfff1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff
    0x005c0001: ff ff 7f 00 00 00 00 00 00 00 00 ff ff ff ff 00
    Stack: [0x01140000,0x01190000], sp=0x0118f93c, free space=318k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x005c0001
    V [jvm.dll+0x153009]
    V [jvm.dll+0xdecdb]
    V [jvm.dll+0xe1887]
    V [jvm.dll+0xe1c46]
    V [jvm.dll+0xec09a]
    j saiman.uiobjnew.PerspectiveUIEnsemble.createPerspectiveActionToolBarHeader()Lsaiman/uiobjnew/PerspectiveActionToolBarHeader;+2
    j saiman.mv.ModelViewPerspectiveUIEnsemble.createPerspectiveActionToolBarHeader()Lsaiman/uiobjnew/PerspectiveActionToolBarHeader;+1
    j saiman.uiobjnew.PerspectiveUIEnsemble.addButtons()V+1
    j saiman.uiobjnew.PerspectiveUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+21
    j saiman.mv.ModelViewPerspectiveUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.uiobjnew.SoftwareOptionsUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.wmaldi.MaldiSoftwareOptionsUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.newuiimpl.MassSpectrumMainFrameImpl.main([Ljava/lang/String;)V+173
    v ~StubRoutines::call_stub
    V [jvm.dll+0xf0ab9]
    V [jvm.dll+0x1837d1]
    V [jvm.dll+0xf0b3d]
    V [jvm.dll+0xfa0d6]
    V [jvm.dll+0x101cde]
    C [javaw.exe+0x2155]
    C [javaw.exe+0x8614]
    C [kernel32.dll+0x51194]
    C [ntdll.dll+0x5b3f5]
    C [ntdll.dll+0x5b3c8]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j saiman.uiobjnew.PerspectiveUIEnsemble.createPerspectiveActionToolBarHeader()Lsaiman/uiobjnew/PerspectiveActionToolBarHeader;+2
    j saiman.mv.ModelViewPerspectiveUIEnsemble.createPerspectiveActionToolBarHeader()Lsaiman/uiobjnew/PerspectiveActionToolBarHeader;+1
    j saiman.uiobjnew.PerspectiveUIEnsemble.addButtons()V+1
    j saiman.uiobjnew.PerspectiveUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+21
    j saiman.mv.ModelViewPerspectiveUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.uiobjnew.SoftwareOptionsUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.wmaldi.MaldiSoftwareOptionsUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.newuiimpl.MassSpectrumMainFrameImpl.main([Ljava/lang/String;)V+173
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x01b05400 JavaThread "AWT-Windows" daemon [_thread_in_native, id=19680, stack(0x18560000,0x185b0000)]
    0x01b04800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=19516, stack(0x18140000,0x18190000)]
    0x01b04000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=20064, stack(0x18040000,0x18090000)]
    0x01b03c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=20276, stack(0x17ff0000,0x18040000)]
    0x01aeb000 JavaThread "JDWP Command Reader" daemon [_thread_in_native, id=16832, stack(0x17fa0000,0x17ff0000)]
    0x01aea000 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=16360, stack(0x17ef0000,0x17f40000)]
    0x01ae8000 JavaThread "JDWP Transport Listener: dt_socket" daemon [_thread_blocked, id=20084, stack(0x17ea0000,0x17ef0000)]
    0x01ade400 JavaThread "Attach Listener" daemon [_thread_blocked, id=19772, stack(0x17d90000,0x17de0000)]
    0x01add400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=20192, stack(0x17d40000,0x17d90000)]
    0x01ab2800 JavaThread "Finalizer" daemon [_thread_blocked, id=17344, stack(0x17cf0000,0x17d40000)]
    0x01aabc00 JavaThread "Reference Handler" daemon [_thread_blocked, id=19964, stack(0x17ca0000,0x17cf0000)]
    =>0x011ca000 JavaThread "main" [_thread_in_vm, id=20112, stack(0x01140000,0x01190000)]
    Other Threads:
    0x01aa7c00 VMThread [stack: 0x011d0000,0x01220000] [id=19144]
    0x01b17400 WatcherThread [stack: 0x180f0000,0x18140000] [id=12792]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 4928K, used 768K [0x03bf0000, 0x04140000, 0x09140000)
    eden space 4416K, 5% used [0x03bf0000, 0x03c30380, 0x04040000)
    from space 512K, 100% used [0x040c0000, 0x04140000, 0x04140000)
    to space 512K, 0% used [0x04040000, 0x04040000, 0x040c0000)
    tenured generation total 10944K, used 1858K [0x09140000, 0x09bf0000, 0x13bf0000)
    the space 10944K, 16% used [0x09140000, 0x09310948, 0x09310a00, 0x09bf0000)
    compacting perm gen total 12288K, used 9598K [0x13bf0000, 0x147f0000, 0x17bf0000)
    the space 12288K, 78% used [0x13bf0000, 0x1454fb70, 0x1454fc00, 0x147f0000)
    No shared spaces configured.
    Edited by: hanvyj on 07-Jun-2011 02:39
    Edited by: hanvyj on 07-Jun-2011 02:43

    I think I may have stumbled across the answer, It seems that the abstract class PerspectiveToolBar implements
    the interface with the method public Container getContainer() but does not declare it, this should be fine because the method is abstract but it crashes. When I add the method public abstract Container getContainer(); to the abstract sub-class there is no error. I'm going to try make a small compilable example to see if I can reproduce it.
    edit its actually only one of the two interface methods, and not getContainer(), but another one. If anyone is interested here is the interface:
    public interface IMassSpectrometerPassableControlContainer
         Container getContainer();
         void reloadWidgetsOnVisible(boolean visible);
    }and it works only if there is "public abstract void reloadWidgetsOnVisible(boolean visible);" in the abstract class PerspectiveToolBar implementing IMassSpectrometerPassableControlContainer.
    I tried to reproduce it, but I can't get another class to repeat the behaviour, so I don't think I can post a bug report on it. Here is my attempt anyway:
    import javax.swing.JToolBar;
    * Class     Test.java
    * Date:     7 Jun 2011
    * @author     tofuser
    public class Test extends Subclass
         public static void main(String args[])
              System.out.println("in main method");
              Test t = new Test();
              t.interfaceMethod();
         @Override
         public void interfaceMethod()
              System.out.println("interface method");
    abstract class Subclass extends JToolBar implements Interface
         private static final long serialVersionUID = 1L;
         //this line is where it breaks in my code, including it works
         //public abstract void interfaceMethod();
    interface Interface
         public abstract void interfaceMethod();
    }Edited by: hanvyj on 07-Jun-2011 03:56

  • IPhoto 11 crashes when converting library

    I just installed iPhoto 11 from the install DVD.   I have used iPhoto 9 for years with no problems - but wanted to upgrade to 11 prior to converting to Lion.
    Had made a Time Machine backup of all my photo libraries prior to the install.
    Upon launching iPhoto 11 for the first time, it says my library must be converted and it starts, but then crashes.  As a test, I had it open another (smaller) library, and it converted it and opened fine.   So, it must not be the application...   Here is the crash report from the library it won't convert:
    Process:         iPhoto [375]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.1.5 (9.1.5)
    Build Info:      iPhotoProject-6150000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [100]
    Date/Time:       2011-09-18 05:47:15.726 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          522704 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  2243 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      70311CC7-0D15-474D-86FF-4FE156F9B711
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000006
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x90b5a106 __CFCopyFormattingDescription + 38
    1   com.apple.CoreFoundation                0x90b532a0 _CFStringAppendFormatAndArgumentsAux + 6496
    2   com.apple.CoreFoundation                0x90b51909 _CFStringCreateWithFormatAndArgumentsAux + 105
    3   com.apple.CoreFoundation                0x90b5a0de CFStringCreateWithFormatAndArguments + 46
    4   MetadataLib.dylib                       0x9814a67a readRawTiffPropsFromPath + 161264
    5   MetadataLib.dylib                       0x98130102 readRawTiffPropsFromPath + 53368
    6   MetadataLib.dylib                       0x981302e1 readRawTiffPropsFromPath + 53847
    7   MetadataLib.dylib                       0x98122c2c readRawTiffProps + 11836
    8   MetadataLib.dylib                       0x98122c62 readRawTiffProps + 11890
    9   MetadataLib.dylib                       0x98157572 readRawTiffPropsFromPath + 214248
    10  MetadataLib.dylib                       0x9811fc25 readMakerNoteProps + 137
    11  com.apple.ImageIO.framework             0x97fd9ffd readMakerNoteProps + 153
    12  com.apple.ImageIO.framework             0x97f550c7 readProps + 1132
    13  com.apple.ImageIO.framework             0x97f54fd2 readProps + 887
    14  com.apple.ImageIO.framework             0x97f6bf93 readTiffPropsFromData + 236
    15  com.apple.ImageIO.framework             0x97f6be9a readExifData + 92
    16  com.apple.ImageIO.framework             0x97f69bde initImageJPEG + 2222
    17  com.apple.ImageIO.framework             0x97f69326 _CGImagePluginInitJPEG + 69
    18  com.apple.ImageIO.framework             0x97f52334 makeImagePlus + 690
    19  com.apple.ImageIO.framework             0x97f51f2e _CGImageSourceGetPropertiesAtIndexInternal + 75
    20  com.apple.ImageIO.framework             0x97f51eaf CGImageSourceCopyPropertiesAtIndex + 127
    21  com.apple.RedRock                       0x01d28312 -[RKMetadata initWithPath:cgImageSource:imageIOMethodVersion:includeFileAttributes:includeRa w:sidecarFile:movie:] + 434
    22  com.apple.RedRock                       0x01d28157 -[RKMetadata initWithPath:imageIOMethodVersion:includeRaw:sidecarFile:] + 87
    23  com.apple.RedRock                       0x01dcaa61 -[RKMetadata initWithPath:] + 65
    24  com.apple.iPhoto                        0x0024f89f 0x1000 + 2418847
    25  com.apple.iPhoto                        0x0003a809 0x1000 + 235529
    26  com.apple.iPhoto                        0x000357e6 0x1000 + 215014
    27  com.apple.iPhoto                        0x00034796 0x1000 + 210838
    28  com.apple.iPhoto                        0x0003244b 0x1000 + 201803
    29  com.apple.iPhoto                        0x000320f9 0x1000 + 200953
    30  com.apple.iPhoto                        0x00031a03 0x1000 + 199171
    31  com.apple.iPhoto                        0x0002fa2e 0x1000 + 191022
    32  com.apple.Foundation                    0x96dd0409 __NSFireDelayedPerform + 537
    33  com.apple.CoreFoundation                0x90b64a6b __CFRunLoopRun + 8059
    34  com.apple.CoreFoundation                0x90b623f4 CFRunLoopRunSpecific + 452
    35  com.apple.CoreFoundation                0x90b62221 CFRunLoopRunInMode + 97
    36  com.apple.HIToolbox                     0x907c4e04 RunCurrentEventLoopInMode + 392
    37  com.apple.HIToolbox                     0x907c4bb9 ReceiveNextEventCommon + 354
    38  com.apple.HIToolbox                     0x907c4a3e BlockUntilNextEventMatchingListInMode + 81
    39  com.apple.AppKit                        0x97415595 _DPSNextEvent + 847
    40  com.apple.AppKit                        0x97414dd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    41  com.apple.AppKit                        0x973d71f3 -[NSApplication run] + 821
    42  com.apple.AppKit                        0x973cf289 NSApplicationMain + 574
    43  com.apple.iPhoto                        0x0000f092 0x1000 + 57490
    44  com.apple.iPhoto                        0x0000ec65 0x1000 + 56421
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x90079382 kevent + 10
    1   libSystem.B.dylib                       0x90079a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x90078f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x90078cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x90078781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x900785c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x900785a8 start_wqthread + 0
    Thread 3:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x90052afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90053267 mach_msg + 68
    2   com.apple.CoreFoundation                0x90b6330f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x90b623f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x90b62221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x96df4227 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore                     0x016e46a5 -[XTRunLoopThread run:] + 453
    7   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    8   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    9   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    10  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x90052afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90053267 mach_msg + 68
    2   com.apple.CoreFoundation                0x90b6330f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x90b623f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x90b62221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x96df4227 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore                     0x016e46a5 -[XTRunLoopThread run:] + 453
    7   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    8   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    9   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    10  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x90080aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x900ac9c5 nanosleep$UNIX2003 + 188
    2   libSystem.B.dylib                       0x900ac903 usleep$UNIX2003 + 61
    3   com.apple.AppKit                        0x9757ee2d -[NSUIHeartBeat _heartBeatThread:] + 2039
    4   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    5   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    7   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x900b0e8e pwrite$UNIX2003 + 10
    1   com.apple.iLifeSQLAccess                0x017b7ade unixWrite + 94
    2   com.apple.iLifeSQLAccess                0x017b7a6d sqlite3OsWrite + 45
    3   com.apple.iLifeSQLAccess                0x017b925b pager_write_pagelist + 219
    4   com.apple.iLifeSQLAccess                0x017b8d54 sqlite3PagerCommitPhaseOne + 1412
    5   com.apple.iLifeSQLAccess                0x017a596e sqlite3BtreeCommitPhaseOne + 94
    6   com.apple.iLifeSQLAccess                0x017a557a sqlite3VdbeHalt + 1786
    7   com.apple.iLifeSQLAccess                0x017a4ab4 sqlite3Step + 37620
    8   com.apple.iLifeSQLAccess                0x0179b5b8 sqlite3_step + 88
    9   com.apple.iLifeSQLAccess                0x017bba1e -[HgKPreparedSql updateWithArgs:] + 174
    10  com.apple.iLifeSQLAccess                0x017de15e -[HgKDatabaseManager commitAndBeginNewTransaction] + 494
    11  com.apple.RedRock                       0x01d1d70a -[RKInfoDictionaryMgr writeInfoDictionaries:writtenModels:] + 1610
    12  com.apple.RedRock                       0x01d1cdd4 -[RKInfoDictionaryMgr writeSomeInfoDictionaries] + 276
    13  com.apple.RedRock                       0x01d1c80d -[RKDatabaseComponent saveSomeInfoDictionaries] + 157
    14  com.apple.RedRock                       0x01d1cc5a -[RKDatabaseComponent saveSomeInfoDictionaries:] + 42
    15  com.apple.proxtcore                     0x016e4893 -[XTSubscription postMessage:] + 227
    16  com.apple.proxtcore                     0x016e44cd -[XTList makeObjectsPerformSelector:withObject:] + 61
    17  com.apple.proxtcore                     0x016e3ed6 -[XTDistributor distributeMessage:] + 502
    18  com.apple.proxtcore                     0x016e3b1c -[XTThread handleMessage:] + 796
    19  com.apple.proxtcore                     0x016e2266 -[XTThread run:] + 422
    20  com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    21  com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    22  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    23  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x90052afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90053267 mach_msg + 68
    2   com.apple.CoreFoundation                0x90b6330f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x90b623f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x90b62221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x96df4227 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore                     0x016e46a5 -[XTRunLoopThread run:] + 453
    7   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    8   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    9   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    10  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 23:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x016e346f -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x016e2250 -[XTThread run:] + 400
    8   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    11  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 24:
    0   libSystem.B.dylib                       0x90052afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90053267 mach_msg + 68
    2   com.apple.CoreFoundation                0x90b6330f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x90b623f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x90b62221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x96df32c4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    7   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    9   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 25:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x90071ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x90ba2c83 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    3   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 26:
    0   libSystem.B.dylib                       0x90052b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x90058646 pthread_mutex_lock + 490
    2   com.apple.Foundation                    0x96da76db -[NSRecursiveLock lock] + 28
    3   com.apple.iLifeSQLAccess                0x017d39f5 -[HgSqlOperation main] + 373
    4   com.apple.iLifeSQLAccess                0x017d3729 -[RAOperationQueueImpl _runOperationFromList:sourceList:] + 73
    5   com.apple.iLifeSQLAccess                0x017ba4f3 -[RAOperationQueueImpl _workThread] + 403
    6   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    7   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    9   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 27:
    0   libSystem.B.dylib                       0x90052afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x90053267 mach_msg + 68
    2   com.apple.iLifeSQLAccess                0x017ba5d1 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x017ba4c6 -[RAOperationQueueImpl _workThread] + 358
    4   com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    5   com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    7   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 28:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x96df695c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x96daf451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x96daf334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x01cd7aad -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   com.apple.proxtcore                     0x016eea8c -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 220
    8   com.apple.proxtcore                     0x016e4893 -[XTSubscription postMessage:] + 227
    9   com.apple.proxtcore                     0x016e4096 -[XTDistributor distributeMessage:] + 950
    10  com.apple.proxtcore                     0x016e3b1c -[XTThread handleMessage:] + 796
    11  com.apple.proxtcore                     0x016e2266 -[XTThread run:] + 422
    12  com.apple.Foundation                    0x96dba564 -[NSThread main] + 45
    13  com.apple.Foundation                    0x96dba514 __NSThread__main__ + 1499
    14  libSystem.B.dylib                       0x90080259 _pthread_start + 345
    15  libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 29:
    0   libSystem.B.dylib                       0x900785a8 start_wqthread + 0
    Thread 30:
    0   libSystem.B.dylib                       0x90078412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x900789a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x900785c6 start_wqthread + 30
    Thread 31:
    0   libSystem.B.dylib                       0x90078412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x900789a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x900785c6 start_wqthread + 30
    Thread 32:
    0   libSystem.B.dylib                       0x90078412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x900789a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x900785c6 start_wqthread + 30
    Thread 33:
    0   libSystem.B.dylib                       0x90052b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x900806e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x900af5a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x99ed7b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x99ed78ce TSWaitOnSemaphoreCommon + 511
    5   ...ickTimeComponents.component          0x94fe6e35 ReadSchedulerThreadEntryPoint + 4698
    6   libSystem.B.dylib                       0x90080259 _pthread_start + 345
    7   libSystem.B.dylib                       0x900800de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x90b5a0f4  ecx: 0x00000000  edx: 0x00000000
      edi: 0x00000001  esi: 0x00000000  ebp: 0xbfffbde8  esp: 0xbfffbdb0
       ss: 0x0000001f  efl: 0x00010202  eip: 0x90b5a106   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000006
    Binary Images:
        0x1000 -   0xeffff7  com.apple.iPhoto 9.1.5 (9.1.5) <65AA38DF-C3AF-A06F-62AA-254A854FA060> /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x1056000 -  0x113dfef  org.python.python 2.6.1 (2.6.1) <4FFD855C-1C5A-9206-A695-8C9904F1DA84> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1188000 -  0x11b1fff  com.apple.iPhoto.Tessera 1.1 (48.10) <39FACFA3-C1A1-CC57-9874-CF0E2EB0684C> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x11ca000 -  0x11f1ff3  com.apple.iPhoto.Tellus 1.3 (48.10) <BE3ADEF1-C058-3660-60C5-5AC69CD5414D> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1210000 -  0x121aff7  com.apple.iphoto.AccountConfigurationPlugin 1.1 (1) <44FEAB1C-0E0B-7E80-82A5-5CF6287CF5DF> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x1228000 -  0x123fff7  com.apple.iLifeFaceRecognition 1.0 (21) <AD53D7A2-F0B2-FF76-5C6D-C23B234AB50E> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/iLifeFaceRecognit ion
    0x124e000 -  0x1279fff  com.apple.DiscRecordingUI 5.0.9 (5090.4.2) <3E6CC284-2F1B-9EDB-0B56-872F962669A2> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x1291000 -  0x129cff3  com.apple.UpgradeChecker 1.0 (1.1) <851A0E5A-D23A-45B9-5CAD-6C9119E663F9> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x12a4000 -  0x12a4ff7  com.apple.iLifeSlideshow 2.2.0 (842) <2A6D9FAA-2136-00BA-4B10-83A6A513F70E> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow
    0x12a7000 -  0x151cff7  com.apple.iLifePageLayout 1.2 (147.18) <AF260C68-E5A4-254A-1544-76C3106C3AF8> /Library/Frameworks/iLifePageLayout.framework/Versions/A/iLifePageLayout
    0x15e2000 -  0x1681ff3  com.apple.MobileMe 11 (1.0.3) <8E95CD1B-525E-748C-743A-EB0E369B05F6> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x16de000 -  0x1738fe7  com.apple.proxtcore 1.2 (134.18) <7ACD0BC2-93C7-9E11-F8F3-AEF3908930CD> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x1786000 -  0x184bff7  com.apple.iLifeSQLAccess 1.5 (21.17) <0BB2C541-323E-FA72-8EC6-CC136E8DB90B> /Library/Frameworks/iLifeSQLAccess.framework/Versions/A/iLifeSQLAccess
    0x188c000 -  0x18bafe7  com.apple.ProUtils 1.0 (113.2) <173AC540-F424-037B-33C6-544E4D59FB6B> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x18d7000 -  0x192cff7  com.apple.iLifeKit 1.2 (79.15) <835E6632-A9E9-0EE3-BBC2-0BCFE5635887> /Library/Frameworks/iLifeKit.framework/Versions/A/iLifeKit
    0x1972000 -  0x1baafff  com.apple.prokit 7.0.1 (1331.1) <327AFA15-E955-02EF-3E57-E2558B645698> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1cb2000 -  0x210afff  com.apple.RedRock 1.6 (223.52) <36B6AAF4-9636-DDBC-D2AD-57BABDB74CFC> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2341000 -  0x24d8fe3  com.apple.geode 1.4 (141.21) <A1F4432E-F07C-4F78-966F-F10DEFD22CC6> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x2573000 -  0x257aff7  com.apple.MediaSync 1.0 (120.10) <CDAF79B6-1660-BA73-DCA7-71304BC9B179> /Applications/iPhoto.app/Contents/Frameworks/MediaSync.framework/Versions/A/Med iaSync
    0x2582000 -  0x2637fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x267d000 -  0x267efff +eOkaoCom.dylib ??? (???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoCo m.dylib
    0x2682000 -  0x26a7ff2 +eOkaoPt.dylib ??? (???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoPt .dylib
    0x26ae000 -  0x26e2fe7 +eOkaoDt.dylib ??? (???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoDt .dylib
    0x26e8000 -  0x284ffff +eOkaoFr.dylib ??? (???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoFr .dylib
    0x2853000 -  0x287dff7  com.apple.iLifeSlideshowCore 2.2.0 (231) <528B45B0-E240-7B24-49C4-D44D2DD5E633> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owCore.framework/Versions/A/iLifeSlideshowCore
    0x2891000 -  0x299dfe3  com.apple.iLifeSlideshowProducer 2.2.0 (610) <569FC422-C0D8-A3B8-D7F4-F0E401B18A19> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owProducer.framework/Versions/A/iLifeSlideshowProducer
    0x29e9000 -  0x2b52ff3  com.apple.iLifeSlideshowRenderer 2.2.0 (672) <8A340CB3-60EA-2798-0871-779ECE1F3DDC> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x2bae000 -  0x2bc7ff7  com.apple.iLifeSlideshowExporter 2.2.0 (249) <A2FA2CDE-575A-7CBD-BF9F-91BFCC43CE87> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owExporter.framework/Versions/A/iLifeSlideshowExporter
    0x2bd4000 -  0x2bfdfe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2c0e000 -  0x2c8fff7  com.apple.NyxAudioAnalysis 12.2 (12.2) <925917F5-EBD7-7995-7C0B-9D542C8FD775> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x2cae000 -  0x2cd5fe7  com.apple.ExpressCheckout 1.0 (1.0) <8C20C42F-E2E4-AD1D-00CA-EF117A8B2563> /Library/Frameworks/iLifePageLayout.framework/Versions/A/Frameworks/ExpressChec kout.framework/Versions/A/ExpressCheckout
    0x2cf9000 -  0x2d34ffb  com.apple.iLifeImageAnalysis 1.0 (2) <F26DB8EE-9764-6377-6072-DCC191D4FADA> /Library/Frameworks/iLifePageLayout.framework/Versions/A/Frameworks/iLifeImageA nalysis.framework/Versions/A/iLifeImageAnalysis
    0x2d7e000 -  0x2d82ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x2d87000 -  0x2d8dff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x3a00000 -  0x3a72fff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3c67000 -  0x3c69ff7  libclparser.dylib ??? (???) <F1C02810-AEEA-F661-FCED-DEA4EB7524D7> /System/Library/Frameworks/OpenCL.framework/Libraries/libclparser.dylib
    0x1b9d0000 - 0x1b9f4fe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1e8f6000 - 0x1ea6fff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1eaa1000 - 0x1eeb4fef  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <257CAA1D-6573-2932-E344-E96F6C9CDA84> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x1eef6000 - 0x1eefaff7  libcldcpuengine.dylib 1.5.6 (compatibility 1.0.0) <EF10CD42-F20F-EB7B-FC29-2AA973D5758D> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x1f00f000 - 0x1f0a9ff7  unorm8_argb.dylib 1.5.6 (compatibility 1.0.0) <F486B4F7-B6B0-88F5-8A0C-570566F74618> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb. dylib
    0x25ab9000 - 0x25c9ffef  com.apple.audio.codecs.Components 2.0.3 (2.0.3) <8DA1B494-CD97-D4CC-3D5D-FACFAAE9D968> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x27000000 - 0x273e5fe7  QuickTimeH264.scalar ??? (???) <CE0DE83D-B2F4-E4CE-A392-7C22A83F67A1> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <E50D0989-0609-EAF7-3B3B-B10D7847BAA5> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90003000 - 0x90034ff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90035000 - 0x90051fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90052000 - 0x901f9ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x901fa000 - 0x902c5fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x902e6000 - 0x90378fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90379000 - 0x90474fff  com.apple.PubSub 1.0.5 (65.28) <DD6B2666-9858-5745-A44D-0CA2309222B3> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x90475000 - 0x904befe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x904f8000 - 0x90625ffb  com.apple.MediaToolbox 0.484.52 (484.52) <C9035045-D1B4-1B1F-7354-B00D1094D804> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x90637000 - 0x906f3fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x906f4000 - 0x9078ffe7  com.apple.ApplicationServices.ATS 275.16 (???) <873C8B8A-B563-50F7-7628-524EE9E8DF0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90790000 - 0x90ab4fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90abc000 - 0x90adcfe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x90aea000 - 0x90b25fe7  com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x90b26000 - 0x90ca1fe7  com.apple.CoreFoundation 6.6.5 (550.43) <10B8470A-88B7-FC74-1C2F-E5CBD966C051> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90ca2000 - 0x90cadff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90cae000 - 0x90d5afe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90d5b000 - 0x90dbcfe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90dbd000 - 0x90dc2ff7  com.apple.AOSNotification 1.2.0 (124) <3CDBCEB8-1078-7152-10CE-001B772AF04F> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x90dc3000 - 0x90dd8ff7  com.apple.iChat.InstantMessage 5.0.5 (747) <4E1D077E-3733-5565-ADB9-C9B2C3EC89BE> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x90dd9000 - 0x91294ff7  com.apple.VideoToolbox 0.484.52 (484.52) <F7CF9485-A932-1305-9AA6-3F7AC38B8B15> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x912ae000 - 0x91318fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9134f000 - 0x913b3ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x913b4000 - 0x9210efe7  com.apple.WebCore 6534 (6534.50) <492FD955-DCB6-2E2D-3F51-CF295516877A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9210f000 - 0x92152ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92153000 - 0x9217aff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9217b000 - 0x92184ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92264000 - 0x9228afe3  com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <5986E77D-F10B-D037-5584-B73B1B352918> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x92297000 - 0x922acfff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Version

    Thanks for your reply, Terence.
    Removing the .mov files didn't help at all.  
    I have 7 iphoto libraries created with iPhoto 9.   When launching iPhoto 11, it converted 5 of those libraries with no problems. 
    But, it would crash when converting two of them.   iPhoto Library Mgr couldn't help with those two, as they were grayed out in the library selection pane and iPhoto Lib. Mgr wouldn't recognize them until they were opened with iPhoto 11.   So, now I was really stuck.   In scouring the internet for other ideas, I removed the DivXcodec file from the OS.   That helped a bit, in that iPhoto 11 would now open and convert them.   Problem was -- my library now only showed 800 of 8,000 photos.   I ran iPhoto Lib. Mgr. to rebuild.  It never brought in any of my other photos.   Tried holding the option key down while launching iPhoto to rebuild -- same thing.   Most of my photos were missing.
    At this point, I was really frustrated with iPhoto.   I mentioned that I could open the library in Aperture.  So I noticed when iPhoto's library was open (with the 800 photos) - I could click on the "Show Aperature Library" in the file menu.   That brought up a small window with ALL the photos in Aperture Library.   I then dragged in all the Events one by one into iPhoto.   Took some work and lots of time, but basically rebuilt my iPhoto Library that way.   It did save the metadata, etc.   Reorganized my Albums, etc., and thought all was good to go.
    When I checked the library size of the original iPhoto library (created in iPhoto 9) -- it was appox. 15 GB.   My newly created library I just worked on for hours is only 3.2 GB.  Yet, I have all my photos from the old library in it.   Now, I see that all the photos imported into iPhoto from Aperture are about 1/4th the size of the originals.  For instance, a photo that was originally 800 KB is now 143 KB. 
    So, now here I am with a library that holds much smaller resolution photos than the originals were.
    I guess I'm totally fed up with iPhoto 11 at this point and have decided to move to Aperture to work with my libraries.  Even though iPhoto has served my needs perfectly to this point, I'm going to learn Aperture and not deal with this again with any new iPhoto versions that come out.
    Sorry for my rant, but this has been not only frustrating, but has cost me many hours of time to try to get my iPhoto libraries working in iPhoto 11.   And, still, have no idea what was causing the the problem with these two libraries (which imported with no problems into Aperture).  Like you said, it could be a single corrupted or damaged jpeg file  -- but how would you find that "needle in the haystack"?   iPhoto 11, in my opinion, is not a reliable program for photo management when it has these kind of issues.   Thankfully, I had Aperture as an alternative.  What would I do if I hadn't??   I can't imagine the time it would take to redo my 8,000 photo library manually.  It would be impossible to import, tag, organize and and go thru all these photos again.

  • Acrobat X 10.02 crashes when converting Word 2007 document wiht linked Visio file.

    Acrobat X 10.02 crashes when converting Word 2007 document with linked Visio file and causes a C++ runtime error in Word and crashes Word.
    To see the behavior create a short Word 2007 document with a linked Visio file (e.g., create a Visio file with one box and text and insert it as a link into a Word docx).
    No problem in Acrobat 9

    There may be some of an issue with AA X on this, but part of the blame probably goes to MS also. I would suggest you simply clip the graphic from VISIO as a vector graphic (EMF will be used by default) and not do the link and do not embed the VISIO object. The linking and use of embedded objects in WORD 2007 seems to have been a major problem and is mostly a MS issue.

  • Weird JVM crash when showing DirectoryChooser (DirectoryChooser.showDialog)

    Hello,
    I'm seeing a weird JVM crash when showing a DirectoryChooser by calling DirectoryChooser.showDialog().
    My environment:
    Mac OS X 10.8.2 Mountain Lion
    Java SE 7 1.7.0_06
    Error Output:
    2012-09-25 11:01:02.433 java[4682:707] unrecognized type is -2
    2012-09-25 11:01:02.433 java[4682:707] *** Assertion failure in -[NSEvent _initWithCGSEvent:eventRef:], /SourceCache/AppKit/AppKit-1187.34/AppKit.subproj/NSEvent.m:1348
    2012-09-25 11:01:02.434 java[4682:707] An uncaught exception was raised
    2012-09-25 11:01:02.434 java[4682:707] Invalid parameter not satisfying: cgsEvent.type > 0 && cgsEvent.type <= kCGSLastEventType
    2012-09-25 11:01:02.435 java[4682:707] (
         0   CoreFoundation                      0x00007fff8fc080a6 __exceptionPreprocess + 198
         1   libobjc.A.dylib                     0x00007fff8d75e3f0 objc_exception_throw + 43
         2   CoreFoundation                      0x00007fff8fc07ee8 +[NSException raise:format:arguments:] + 104
         3   Foundation                          0x00007fff849b16a2 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 189
         4   AppKit                              0x00007fff8529f56c -[NSEvent _initWithCGSEvent:eventRef:] + 2782
         5   AppKit                              0x00007fff855203ea +[NSEvent eventWithCGEvent:] + 243
         6   libglass.dylib                      0x00000001a20aa02f listenTouchEvents + 31
         7   CoreGraphics                        0x00007fff873e2115 processEventTapData + 150
         8   CoreGraphics                        0x00007fff873e1f68 _CGYPostEventTapData + 189
         9   CoreGraphics                        0x00007fff873e726a _XPostEventTapData + 107
         10  CoreGraphics                        0x00007fff873e7362 CGYEventTap_server + 106
         11  CoreGraphics                        0x00007fff873e2056 eventTapMessageHandler + 30
         12  CoreFoundation                      0x00007fff8fb77410 __CFMachPortPerform + 288
         13  CoreFoundation                      0x00007fff8fb772d9 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
         14  CoreFoundation                      0x00007fff8fb77019 __CFRunLoopDoSource1 + 153
         15  CoreFoundation                      0x00007fff8fbaa19f __CFRunLoopRun + 1775
         16  CoreFoundation                      0x00007fff8fba96b2 CFRunLoopRunSpecific + 290
         17  Foundation                          0x00007fff84a3f89e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
         18  libglass.dylib                      0x00000001a20958c4 +[GlassApplication enterNestedEventLoopWithEnv:] + 132
         19  libglass.dylib                      0x00000001a20994f3 -[DialogDispatcher runModal] + 163
         20  Foundation                          0x00007fff84a31220 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 212
         21  Foundation                          0x00007fff84a310c8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 131
         22  libglass.dylib                      0x00000001a209a549 Java_com_sun_glass_ui_mac_MacCommonDialogs__1showFolderChooser + 681
         23  ???                                 0x000000010fa57db1 0x0 + 4557471153
    2012-09-25 11:01:02.436 java[4682:707] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: cgsEvent.type > 0 && cgsEvent.type <= kCGSLastEventType'
    *** First throw call stack:
         0   CoreFoundation                      0x00007fff8fc080a6 __exceptionPreprocess + 198
         1   libobjc.A.dylib                     0x00007fff8d75e3f0 objc_exception_throw + 43
         2   CoreFoundation                      0x00007fff8fc07ee8 +[NSException raise:format:arguments:] + 104
         3   Foundation                          0x00007fff849b16a2 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 189
         4   AppKit                              0x00007fff8529f56c -[NSEvent _initWithCGSEvent:eventRef:] + 2782
         5   AppKit                              0x00007fff855203ea +[NSEvent eventWithCGEvent:] + 243
         6   libglass.dylib                      0x00000001a20aa02f listenTouchEvents + 31
         7   CoreGraphics                        0x00007fff873e2115 processEventTapData + 150
         8   CoreGraphics                        0x00007fff873e1f68 _CGYPostEventTapData + 189
         9   CoreGraphics                        0x00007fff873e726a _XPostEventTapData + 107
         10  CoreGraphics                        0x00007fff873e7362 CGYEventTap_server + 106
         11  CoreGraphics                        0x00007fff873e2056 eventTapMessageHandler + 30
         12  CoreFoundation                      0x00007fff8fb77410 __CFMachPortPerform + 288
         13  CoreFoundation                      0x00007fff8fb772d9 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
         14  CoreFoundation                      0x00007fff8fb77019 __CFRunLoopDoSource1 + 153
         15  CoreFoundation                      0x00007fff8fbaa19f __CFRunLoopRun + 1775
         16  CoreFoundation                      0x00007fff8fba96b2 CFRunLoopRunSpecific + 290
         17  Foundation                          0x00007fff84a3f89e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
         18  libglass.dylib                      0x00000001a20958c4 +[GlassApplication enterNestedEventLoopWithEnv:] + 132
         19  libglass.dylib                      0x00000001a20994f3 -[DialogDispatcher runModal] + 163
         20  Foundation                          0x00007fff84a31220 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 212
         21  Foundation                          0x00007fff84a310c8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 131
         22  libglass.dylib                      0x00000001a209a549 Java_com_sun_glass_ui_mac_MacCommonDialogs__1showFolderChooser + 681
         23  ???                                 0x000000010fa57db1 0x0 + 4557471153
    libc++abi.dylib: terminate called throwing an exceptionI tried to bring up the DirectoryChooser from a simple HelloWorld program, but can't reproduce the crash.
    Does anyone know how to fix this crash?
    Thanks.
    Edited by: 925616 on Sep 25, 2012 11:16 AM

    Looks like a bug which has been fixed for:
    Java SE 7 1.7.0_10
    You can test out a preview build here:
    http://jdk7.java.net/download.html
    http://javafx-jira.kenai.com/browse/RT-24110
    "Mac: FileChooser sometimes crashes the JVM on Mac OS X 10.8"

  • JVM crashes when selecting non-default printer in ReportViewer in NATIVE dialog.

    On ReportViewer frame i have the print button active.  If i click the print button (Native dialog) and select a printer other than default printer, the JVM crashes.  Any idea how to fix it?
    Thanks

    I wanted to provide little history of what I am trying to achieve.  Currently, I have the following code:
    PrinterJob printJob = PrinterJob.getPrinterJob();
            if (printJob.printDialog()) {
                String printerName = printJob.getPrintService().getName();
                String printJobName = printJob.getJobName();
                PrintReportOptions printOptions = redirectPrinter(printerName, printJobName);
                sendReportOutputAndClose(reportClientDoc, printOptions);
    I want to capture the number of copies user selects from the dialog.  When I do printJob.getCopies(), it always returns 1.  Not sure how to get that # of copies user selected.  I also wanted to the dialog to be in Native mode because I don't want to give access to modify Margins and other page properties which are part of COMMON dialog mode.  If I create the dialog printJobAttribute.setDialog(JobAttributes.DialogType.NATIVE); then VM crashes when selecting a non-default printer but I am able to get the number of copies.  The key is I need to use NATIVE dialog and get the number of copies.  One option is to display in COMMON dialog mode and then hide the "Page Setup" and "Appearance" tabs.  Can this be done ?  I am new to Java and Crystal so any suggestions would help.

  • JVM Crash When Using JNI and COM

    I'm trying to call a DLL compiled from VB6 source code that I do not have access to. The VB6 code simply retrieves data from a DB2 database using ADO and my client code grabs that data and marshals it to my Java code. I'm attempting to achieve this using JNI and COM (without a third-party bridge). It works 75% of the time, but the other 25% of the time, the JVM crashes with the usual Hotspot crash log containing an access violation exception. However, I don't know what in my C++ code (VC++ 8) could be causing this except for passing a "wild" pointer to the code lying underneath the COM object interface. If that is the case, I don't know how I am doing that.
    The Java code that is calling my native method is running on Tomcat 5.5.25 and just to be safe, I am not allowing multiple threads to concurrently call the method in my JNI DLL (though I realize that this will kill performance). Once I can get past this problem, I'll do the COM interfacing on a worker thread in my native code so I don't screw up CoInitialize and CoUninitialize calls in the case the same thread is concurrently executing multiple calls to my native code.
    I've noticed that in most cases, the JVM crashes during my call to the pClsAccount->OpenConnection method. However, my DLL isn't what is listed on the top of the call stack, which is why I suspect the passing of a wild pointer, though I'm just taking a guess at that. Does anyone have an idea as to what's going on ?
    JNIEXPORT jobject JNICALL Java_CustomerInfo_nGetCustomerAccountInfo(JNIEnv *env, jobject customerInfo, jstring accountNumber, jstring iniFileName)
    jboolean isCopy;
    // Account info class and instance to be instantiated
    jclass accountInfoCls = NULL;
    jobject accountInfoObj = NULL;
    // The constructor ID of the accountInfoCls
    jmethodID ctorID = NULL;
    // Pointer to the interface for the ClsAccount COM object
    _clsAccount *pClsAccount = NULL;
    HRESULT hr;
    BSTR bstrIniFileName(L"");
    try
    const char *nativeAccountNumber = NULL;
    if (accountNumber != NULL)
    nativeAccountNumber = env->GetStringUTFChars(accountNumber, &isCopy);
    else
    jclass newExcCls;
    env->ExceptionDescribe();
    env->ExceptionClear();
    newExcCls = env->FindClass("java/lang/IllegalArgumentException");
    env->ThrowNew(newExcCls, "accountNumber passed in was null !");
    return NULL;
    // Initialization
    variantt varConnectionSucceeded = variantt(false);
    variantt varGetAccountInfoSucceeded = variantt(false);
    variantt varAccountNumber = variantt(nativeAccountNumber);
    bstrt bstrLastPaymentDate = bstrt();
    bstrt bstrLastErrorMessage = bstrt();
    bstrt bstrLastErrorNumber = bstrt();
    jlong jTotalDue = NULL;
    jlong jEstablishedDueDay = NULL;
    jlong jLastPaymentAmount = NULL;
    jstring jLastPaymentDate = NULL;
    jstring jLastErrorMessage = NULL;
    jstring jLastErrorNumber = NULL;
    jthrowable jException = NULL;
    const char *chLastPaymentDate = NULL;
    const char *chLastErrorMessage = NULL;
    const char *chLastErrorNumber = NULL;
    long long totalDue;
    long long lastPaymentAmount;
    long establishedDueDateDay;
    //Convert string from Java string to C string to VB string
    const char *nativeIniFileName = NULL;
    if (iniFileName != NULL)
    nativeIniFileName = env->GetStringUTFChars(iniFileName, &isCopy);
    else
    jclass newExcCls;
    env->ExceptionDescribe();
    env->ExceptionClear();
    newExcCls = env->FindClass("java/lang/IllegalArgumentException");
    env->ThrowNew(newExcCls, "iniFileName passed in was null");
    return NULL;
    bstrIniFileName = comutil::ConvertStringToBSTR(nativeIniFileName);
    CoInitialize(NULL);
    // Create an instance of the COClass with the interface over it
    hr = CoCreateInstance(__uuidof(clsAccount), NULL, CLSCTX_INPROC_SERVER, __uuidof(_clsAccount), (void **)&pClsAccount);
    if (hr == S_OK)
    varConnectionSucceeded.boolVal = pClsAccount->OpenConnection(&bstrIniFileName);
    &#12288;
    if (varConnectionSucceeded.boolVal == -1)
    varGetAccountInfoSucceeded.boolVal = pClsAccount->GetAccountPaymentInformation(&(varAccountNumber.GetVARIANT()));
    env->ReleaseStringUTFChars(accountNumber, nativeAccountNumber);
    // Extract all available account information from the ClsAccount object
    if (varGetAccountInfoSucceeded.boolVal == -1)
    totalDue = pClsAccount->TotalDue.int64;
    establishedDueDateDay = pClsAccount->EstablishedDueDateDay;
    lastPaymentAmount = pClsAccount->LastPaymentAmount.int64;
    bstrLastPaymentDate = pClsAccount->LastPaymentDate;
    chLastPaymentDate = comutil::ConvertBSTRToString(bstrLastPaymentDate.GetBSTR());
    jTotalDue = (jlong)totalDue;
    jEstablishedDueDay = (jlong)establishedDueDateDay;
    jLastPaymentAmount = (jlong)lastPaymentAmount;
    jLastPaymentDate = env->NewStringUTF(chLastPaymentDate);
    delete[] chLastPaymentDate;
    pClsAccount->CloseConnection();
    // Populate error fields if any errors occur
    bstrLastErrorMessage = pClsAccount->LastErrMessage;
    chLastErrorMessage = comutil::ConvertBSTRToString(bstrLastErrorMessage.GetBSTR());
    bstrLastErrorNumber = pClsAccount->LastErrNumber;
    chLastErrorNumber = comutil::ConvertBSTRToString(bstrLastErrorNumber.GetBSTR());
    jLastErrorMessage = env->NewStringUTF(chLastErrorMessage);
    jLastErrorNumber = env->NewStringUTF(chLastErrorNumber);
    delete[] chLastErrorMessage;
    delete[] chLastErrorNumber;
    const char* clsName = "com/nuance/merchantsmutual/businessentities/CustomerAccountInfo";
    // Find the Java class and the ID of its constructor
    accountInfoCls = env->FindClass(clsName);
    ctorID = env->GetMethodID(accountInfoCls, "<init>", "(JJJLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V");
    jException = env->ExceptionOccurred();
    if (jException != NULL)
    env->ExceptionDescribe();
    env->ExceptionClear();
    //Release all resources associated with the ClsAccount instance
    pClsAccount->Release();
    //Instantiate the class with the given parameters
    accountInfoObj = env->NewObject(accountInfoCls, ctorID, jTotalDue, jEstablishedDueDay, jLastPaymentAmount, jLastPaymentDate, jLastErrorMessage, jLastErrorNumber);
    jException = env->ExceptionOccurred();
    if (jException != NULL)
    env->ExceptionDescribe();
    env->ExceptionClear();
    else if (hr == REGDB_E_CLASSNOTREG)
    cout << "COM class not registered" << endl;
    else if ( hr == CLASS_E_NOAGGREGATION)
    cout << "COM class can't be aggregated" << endl;
    else if (hr == E_NOINTERFACE)
    cout << "No interface for COM class clsAccount" << endl;
    else if (hr == E_POINTER)
    cout << "*ppv pointer was NULL !" << endl;
    else
    cout << "Error occurred while creating COM object. HR is [" << hr << "]" << endl;
    // Free the BSTR because a new one was returned with a call to comutil::ConvertStringToBSTR
    SysFreeString(bstrIniFileName);
    // Release the string when it's no longer needed. MUST call if string won't be used
    // anymore or else a memory leak will occur
    env->ReleaseStringUTFChars(iniFileName, nativeIniFileName);
    CoUninitialize();
    &#12288;
    catch (_com_error &e)
    cout << "Encountered an exception in GetCustomerAccountInfo: Error was " << e.ErrorMessage();
    pClsAccount->Release();
    catch (...)
    pClsAccount->Release();
    return accountInfoObj;
    Edited by: Cthulhu76 on Jan 5, 2010 9:18 AM

    0x49202400 JavaThread "ContainerBackgroundProcessor[StandardEngine[Catalina]]" daemon [_thread_blocked, id=5340, stack(0x49bf0000,0x49c40000)]
    0x48a7e800 JavaThread "Thread-1" [_thread_in_native, id=5976, stack(0x48f00000,0x48f50000)]
    0x48a0dc00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3072, stack(0x48c60000,0x48cb0000)]
    0x48a09000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4988, stack(0x48c10000,0x48c60000)]
    0x48a07c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=3124, stack(0x48bc0000,0x48c10000)]
    0x48a07000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2572, stack(0x48b70000,0x48bc0000)]
    0x489f5c00 JavaThread "Finalizer" daemon [_thread_blocked, id=5752, stack(0x48b20000,0x48b70000)]
    0x489f4c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=2596, stack(0x48ad0000,0x48b20000)]
    0x003c6000 JavaThread "main" [_thread_in_native, id=4252, stack(0x00820000,0x00870000)]
    Other Threads:
    0x489f0400 VMThread [stack: 0x48a80000,0x48ad0000] [id=5624]
    0x48a18800 WatcherThread [stack: 0x48cb0000,0x48d00000] [id=1192]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 36288K, used 12762K [0x02940000, 0x050a0000, 0x07800000)
    eden space 32256K, 34% used [0x02940000, 0x0343af58, 0x048c0000)
    from space 4032K, 37% used [0x04cb0000, 0x04e2ba28, 0x050a0000)
    to space 4032K, 0% used [0x048c0000, 0x048c0000, 0x04cb0000)
    tenured generation total 483968K, used 7518K [0x07800000, 0x250a0000, 0x42940000)
    the space 483968K, 1% used [0x07800000, 0x07f57958, 0x07f57a00, 0x250a0000)
    compacting perm gen total 14080K, used 14016K [0x42940000, 0x43700000, 0x46940000)
    the space 14080K, 99% used [0x42940000, 0x436f0320, 0x436f0400, 0x43700000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040f000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\bin\tomcat5.exe
    0x7c800000 - 0x7c8c0000      C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f42000      C:\WINDOWS\system32\kernel32.dll
    0x77380000 - 0x77411000      C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c48000      C:\WINDOWS\system32\GDI32.dll
    0x77f50000 - 0x77feb000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cef000      C:\WINDOWS\system32\RPCRT4.dll
    0x76f50000 - 0x76f63000      C:\WINDOWS\system32\Secur32.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\system32\MSVCRT.dll
    0x7c8d0000 - 0x7d0cf000      C:\WINDOWS\system32\SHELL32.dll
    0x77da0000 - 0x77df2000      C:\WINDOWS\system32\SHLWAPI.dll
    0x76290000 - 0x762ad000      C:\WINDOWS\system32\IMM32.DLL
    0x77420000 - 0x77523000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_D8713E55\comctl32.dll
    0x6d7c0000 - 0x6da10000      C:\Program Files\Java\jre1.6.0_07\bin\client\jvm.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x7c340000 - 0x7c396000      C:\WINDOWS\system32\MSVCR71.dll
    0x6d270000 - 0x6d278000      C:\Program Files\Java\jre1.6.0_07\bin\hpi.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d770000 - 0x6d77c000      C:\Program Files\Java\jre1.6.0_07\bin\verify.dll
    0x6d310000 - 0x6d32f000      C:\Program Files\Java\jre1.6.0_07\bin\java.dll
    0x6d7b0000 - 0x6d7bf000      C:\Program Files\Java\jre1.6.0_07\bin\zip.dll
    0x6d570000 - 0x6d583000      C:\Program Files\Java\jre1.6.0_07\bin\net.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71b20000 - 0x71b61000      C:\WINDOWS\system32\mswsock.dll
    0x5f270000 - 0x5f2ca000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x76ed0000 - 0x76efa000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f80000 - 0x76f85000      C:\WINDOWS\system32\rasadhlp.dll
    0x4a6a0000 - 0x4a6ac000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\CustomerInfoProxy.dll
    0x77670000 - 0x777a9000      C:\WINDOWS\system32\ole32.dll
    0x77d00000 - 0x77d8b000      C:\WINDOWS\system32\OLEAUT32.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_E6967989\MSVCP80.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_E6967989\MSVCR80.dll
    0x777b0000 - 0x77833000      C:\WINDOWS\system32\CLBCatQ.DLL
    0x77010000 - 0x770d6000      C:\WINDOWS\system32\COMRes.dll
    0x77b90000 - 0x77b98000      C:\WINDOWS\system32\VERSION.dll
    0x75da0000 - 0x75e5d000      C:\WINDOWS\system32\SXS.DLL
    0x75e60000 - 0x75e87000      C:\WINDOWS\system32\apphelp.dll
    0x4dc30000 - 0x4dc5e000      C:\WINDOWS\system32\msctfime.ime
    0x4b0d0000 - 0x4b395000      C:\WINDOWS\system32\xpsp2res.dll
    0x71bb0000 - 0x71bb9000      C:\WINDOWS\system32\WSOCK32.dll
    0x4bbe0000 - 0x4bbea000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\ClearTranProxy.dll
    0x745e0000 - 0x7489e000      C:\WINDOWS\system32\msi.dll
    0x71c40000 - 0x71c97000      C:\WINDOWS\system32\NETAPI32.dll
    0x4bc50000 - 0x4bc6c000      C:\WINDOWS\system32\DBNETLIB.DLL
    0x71f60000 - 0x71f64000      C:\WINDOWS\system32\security.dll
    0x76c90000 - 0x76cb7000      C:\WINDOWS\system32\msv1_0.dll
    0x76cf0000 - 0x76d0a000      C:\WINDOWS\system32\iphlpapi.dll
    0x761b0000 - 0x76243000      C:\WINDOWS\system32\crypt32.dll
    0x76190000 - 0x761a2000      C:\WINDOWS\system32\MSASN1.dll
    0x4bcf0000 - 0x4bcff000      C:\Program Files\Common Files\System\Ole DB\SQLOLEDB.RLL
    0x4a8a0000 - 0x4a8aa000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\MIGI.DLL
    0x73570000 - 0x736c2000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\MSVBVM60.DLL
    0x4a950000 - 0x4a9e2000      C:\Program Files\Common Files\System\ado\msado15.dll
    0x74a50000 - 0x74a6a000      C:\WINDOWS\system32\MSDART.DLL
    0x4c850000 - 0x4c8c9000      C:\Program Files\Common Files\System\Ole DB\oledb32.dll
    0x4dbb0000 - 0x4dbc1000      C:\Program Files\Common Files\System\Ole DB\OLEDB32R.DLL
    VM Arguments:
    jvm_args: -Dcatalina.home=C:\Program Files\Apache Software Foundation\Tomcat 5.5 -Dcatalina.base=C:\Program Files\Apache Software Foundation\Tomcat 5.5 -Djava.endorsed.dirs=C:\Program Files\Apache Software Foundation\Tomcat 5.5\common\endorsed -Djava.io.tmpdir=C:\Program Files\Apache Software Foundation\Tomcat 5.5\temp -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.util.logging.config.file=C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf\logging.properties -Djava.library.path=C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib vfprintf -Xms512m -Xmx1024m
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0_07
    [error occurred during error reporting (printing environment variables), id 0xc0000005]
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 2
    CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 7 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3
    Memory: 4k page, physical 2097151k(2097151k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Client VM (10.0-b23) for windows-x86 JRE (1.6.0_07-b06), built on Jun 10 2008 01:14:11 by "java_re" with MS VC++ 7.1
    time: Mon Dec 28 15:24:00 2009
    elapsed time: 600 seconds

  • JVM crashes when selecting a CLOB in a OracleCallableStatement

    Hi all:
    We have a lot of places in our codebase where we "batch" a no. of
    selects using the OracleCallableStatement for better performance (i.e.
    save multiple roundtrips to the db). Recently we upgraded to Oracle
    8.1.7 and converted the LONG column in one of our tables to CLOB. Once
    we did that, every place in the system where we use a "batch" select
    (using refcursor) the JVM crashes (no stack trace, just the infamous Dr.
    Watson on NT and SIGBUS SEGV on Solaris)
    We are running wl510 sp10 , driver is weblogic oci (oci817_8).
    Here is a sample code
    cstmt = (OracleCallableStatement)con.prepareCall(
    "BEGIN \n"
    + " OPEN ? FOR SELECT A, B, C FROM TAB1 where ..;\n"
    + " OPEN ? FOR SELECT X, Y, Z FROM TAB2 where ..;\n"
    + " END;");
    cstmt.registerOutParameter(1, Types.OTHER);
    cstmt.registerOutParameter(2, Types.OTHER);
    cstmt.execute();
    rs = cstmt.getResultSet(1);
    Is there an update or patch for the driver which resolves this issue?
    thanks much,
    mohan

    I wanted to provide little history of what I am trying to achieve.  Currently, I have the following code:
    PrinterJob printJob = PrinterJob.getPrinterJob();
            if (printJob.printDialog()) {
                String printerName = printJob.getPrintService().getName();
                String printJobName = printJob.getJobName();
                PrintReportOptions printOptions = redirectPrinter(printerName, printJobName);
                sendReportOutputAndClose(reportClientDoc, printOptions);
    I want to capture the number of copies user selects from the dialog.  When I do printJob.getCopies(), it always returns 1.  Not sure how to get that # of copies user selected.  I also wanted to the dialog to be in Native mode because I don't want to give access to modify Margins and other page properties which are part of COMMON dialog mode.  If I create the dialog printJobAttribute.setDialog(JobAttributes.DialogType.NATIVE); then VM crashes when selecting a non-default printer but I am able to get the number of copies.  The key is I need to use NATIVE dialog and get the number of copies.  One option is to display in COMMON dialog mode and then hide the "Page Setup" and "Appearance" tabs.  Can this be done ?  I am new to Java and Crystal so any suggestions would help.

  • Java.lang.Class- getFields() results in JVM crash when called through JNI

    From a C++ application, I use Invocation APIs to create a JVM and call some Java methods using JNI
    I get a crash in jvm.dll with EXCEPTION_ACCESS_VIOLATION
    when I try to call "getFields" method of java.lang.Class in order to get the Fields of the java class
    This method call, should return a java/lang/reflect/Fields[] on success
    I am able to get the method ID of this method by using pEnv->GetMethodID(..)
    However, when I call this method using CallObjectMethod(..), HotSpt JVM crashes with access violation with the dump given below.
    Any clues on how to debug and find the problem?
    Or has anyone tried getting the fields of a Java class from C++ by calling reflection APIs uing JNI?
    Thanks in advance!
    Sample code
    jclass testerClass = pEnv->FindClass("com/test/Tester");
    jmethodID cid = pEnv->GetMethodID(testerClass,"<init>","()V");
    if(NULL == cid)
    pEnv->ExceptionDescribe();
    jobject testerObject = pEnv->NewObjectV(testerClass, mid);
    jmethodID mid = pEnv->GetMethodID(testerClass, "getClass",
                             "()Ljava/lang/Class;");
    jobject clsObj = (jobject)pEnv->CallObjectMethod(testerObject, mid);
    pEnv->ExceptionDescribe();
    jclass      jCls = pEnv->GetObjectClass(clsObj);
    jmethodID midGetFields = pEnv->GetMethodID(jCls, "getFields",
                                            "()[Ljava/lang/reflect/Field;");
    jobjectArray jobjArray = (jobjectArray)pEnv->CallObjectMethod(testerObject, midGetFields);
    pEnv->ExceptionDescribe();
    Crash dump
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x809E69F
    Function=JVM_FindSignal+0x11505
    Library=D:\Java\j2re1.4.2_03\bin\client\jvm.dll
    Current Java thread:
         at java.lang.Class.privateGetDeclaredFields(Unknown Source)
         at java.lang.Class.privateGetPublicFields(Unknown Source)
         at java.lang.Class.getFields(Unknown Source)
    Dynamic libraries:
    0x00400000 - 0x00419000      E:\SC\SC12.1\SCApplications\SNMP\Bin\JNITester.exe
    0x77F50000 - 0x77FF7000      C:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F46000      C:\WINDOWS\system32\kernel32.dll
    0x10000000 - 0x10023000      E:\SC\SC12.1\SCApplications\SNMP\Bin\JniUtils.dll
    0x00320000 - 0x00332000      E:\SnmpIpmNativeTestDriver\MTFStubHelper.dll
    0x00340000 - 0x0035B000      E:\SnmpIpmNativeTestDriver\MTFXMLFileAPI.dll
    0x12000000 - 0x122B1000      e:\sc\sc12.1\bin\xerces-c_2_2_0D.dll
    0x77DD0000 - 0x77E5D000      C:\WINDOWS\system32\ADVAPI32.dll
    0x78000000 - 0x78086000      C:\WINDOWS\system32\RPCRT4.dll
    0x10200000 - 0x1026C000      e:\sc\sc12.1\bin\MSVCRTD.dll
    0x102A0000 - 0x102B7000      e:\sc\sc12.1\bin\MSVCIRTD.dll
    0x5F800000 - 0x5F8E9000      e:\sc\sc12.1\bin\MFC42uD.DLL
    0x77C70000 - 0x77CB0000      C:\WINDOWS\system32\GDI32.dll
    0x77D40000 - 0x77DCC000      C:\WINDOWS\system32\USER32.dll
    0x5F700000 - 0x5F746000      e:\sc\sc12.1\bin\MFCD42uD.DLL
    0x5F500000 - 0x5F5C6000      e:\sc\sc12.1\bin\MFCO42uD.DLL
    0x10480000 - 0x104FE000      e:\sc\sc12.1\bin\MSVCP60D.dll
    0x15020000 - 0x15042000      e:\sc\sc12.1\bin\SCTraceLib.dll
    0x6D510000 - 0x6D58D000      C:\WINDOWS\System32\dbghelp.dll
    0x77C10000 - 0x77C63000      C:\WINDOWS\system32\msvcrt.dll
    0x77C00000 - 0x77C07000      C:\WINDOWS\system32\VERSION.dll
    0x00360000 - 0x0037D000      e:\sc\sc12.1\bin\SCFileManager.dll
    0x76BF0000 - 0x76BFB000      C:\WINDOWS\System32\PSAPI.DLL
    0x00420000 - 0x00580000      e:\sc\sc12.1\bin\BctCoreCL.dll
    0x5D920000 - 0x5D929000      C:\WINDOWS\System32\RPCNS4.dll
    0x71B20000 - 0x71B31000      C:\WINDOWS\system32\MPR.dll
    0x71C20000 - 0x71C6E000      C:\WINDOWS\System32\NETAPI32.dll
    0x71AB0000 - 0x71AC5000      C:\WINDOWS\System32\WS2_32.dll
    0x71AA0000 - 0x71AA8000      C:\WINDOWS\System32\WS2HELP.dll
    0x15000000 - 0x15012000      e:\sc\sc12.1\bin\CTEventLog.dll
    0x773D0000 - 0x77BC2000      C:\WINDOWS\system32\SHELL32.dll
    0x70A70000 - 0x70AD4000      C:\WINDOWS\system32\SHLWAPI.dll
    0x771B0000 - 0x772D1000      C:\WINDOWS\system32\ole32.dll
    0x77120000 - 0x771AB000      C:\WINDOWS\system32\OLEAUT32.dll
    0x1F7A0000 - 0x1F7D6000      C:\WINDOWS\System32\ODBC32.dll
    0x77340000 - 0x773CB000      C:\WINDOWS\system32\COMCTL32.dll
    0x763B0000 - 0x763F5000      C:\WINDOWS\system32\comdlg32.dll
    0x08000000 - 0x08138000      D:\Java\j2re1.4.2_03\bin\client\jvm.dll
    0x76B40000 - 0x76B6C000      C:\WINDOWS\System32\WINMM.dll
    0x5FD00000 - 0x5FD0D000      C:\WINDOWS\System32\MFC42LOC.DLL
    0x71950000 - 0x71A34000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.10.0_x-ww_f7fb5805\comctl32.dll
    0x1F840000 - 0x1F857000      C:\WINDOWS\System32\odbcint.dll
    0x5DAC0000 - 0x5DAC7000      C:\WINDOWS\System32\rdpsnd.dll
    0x00FE0000 - 0x00FE7000      D:\Java\j2re1.4.2_03\bin\hpi.dll
    0x01000000 - 0x0100E000      D:\Java\j2re1.4.2_03\bin\verify.dll
    0x01010000 - 0x01029000      D:\Java\j2re1.4.2_03\bin\java.dll
    0x01030000 - 0x0103D000      D:\Java\j2re1.4.2_03\bin\zip.dll
    0x76C90000 - 0x76CB2000      C:\WINDOWS\system32\imagehlp.dll
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 132K [0x15050000, 0x150f0000, 0x15530000)
    eden space 512K, 25% used [0x15050000, 0x15071250, 0x150d0000)
    from space 64K, 0% used [0x150d0000, 0x150d0000, 0x150e0000)
    to space 64K, 0% used [0x150e0000, 0x150e0000, 0x150f0000)
    tenured generation total 1408K, used 0K [0x15530000, 0x15690000, 0x19050000)
    the space 1408K, 0% used [0x15530000, 0x15530000, 0x15530200, 0x15690000)
    compacting perm gen total 4096K, used 964K [0x19050000, 0x19450000, 0x1d050000)
    the space 4096K, 23% used [0x19050000, 0x191410e0, 0x19141200, 0x19450000)
    Local Time = Wed Aug 25 21:06:44 2004
    Elapsed Time = 0
    # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_03-b02 mixed mode)

    You are right, I tried getting the java.lang.Class reference for the com.test.Tester by calling getClass() on com.test.Tester
    And using this jclass reference for java.lang.Class, I tried getting the method ID of getFields and eventually the Field[]
    Thanks for the help
    I have some more questions.
    Assumption - Using JNI, I got the fields array of com.test.Tester and I am iterating through the fields
    1.Assuming that the Tester class had an Integer field say m_nIntVal, then once I get the jobject equivalent of this Field in C++.
    Now I need to get the type of the field (I call the method java.lang.reflect.getType() from JNI)
    This gives me a jclass reference to it's type i.e java.lang.Integer
    2.I need to get the name of this type i.e I want to get the name of the type in a string as "java.lang.Integer"
    For this, on the jclass reference of java.lang.Integer got in Step 1, I call getClass() from JNI (to get the java.lang.Class) and then getName()
    Now, for calling getClass(), I need a temporary object reference corresponding to the jclass of java.lang.Integer, The problem is that Integer does not have a default constructor, so my call to create the jobject fails.
    But, since I do not know that I am constructing an Integer (remember that is what I am trying to find out - getType), I cant pass any values to constructor
    Now, how do I go about creating a jobject of Integer, without knowing that I am constructing that, as this does not have a default constructor without parameters
    Also, I tried using AllocObject to get the jobject and then tried to get the method ID of getClass(). Even this failed
    3. If the com.test.Tester class had a primitive "int" field, say m_nPrimitiveInt
    for which java provides a Class representation, I am able to get the jclass reference to the type of m_nPrimitiveInt
    Now, how do I get the name of the type as "int" in a string?
    Forllowing a similar procedure like in Step 2 fails when I try to pass the jclass reference to the type of m_nPrimitiveInt to the GetMethodID
    with the error FATAL ERROR in native method: JNI received a class argument that is not a class
    Can you tell me what is the way out?
    Thanks in advance,
    Also, can I mail you with some doubts that I have? If its ok, please contact me at [email protected]

  • Freqent JVM crash when using OCI

    I have been experiencing the following JVM crashes frequently. We are using OCI to access database because of failover ability, OS is Suse 9. Any help is appreciated. Here's the log file.
    Thank you.
    Anita
    ===============================
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0x00000000, pid=18784, tid=24601
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_13-b06 mixed mode)
    # Problematic frame:
    # C 0x00000000
    --------------- T H R E A D ---------------
    Current thread (0x53588fd0): JavaThread "Thread-10" daemon [_thread_in_native, id=18809]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00000000
    Registers:
    EAX=0x0810619c, EBX=0x555cec38, ECX=0x5510192d, EDX=0x08107dac
    ESP=0x548350fc, EBP=0x54835958, ESI=0x0810619c, EDI=0x08107dac
    EIP=0x00000000, CR2=0x00000000, EFLAGS=0x00010283
    Top of Stack: (sp=0x548350fc)
    0x548350fc: 5510194b 0810619c 08107dac 00000000
    0x5483510c: 08379300 4d176b08 548351d8 00000000
    0x5483511c: 00000003 08382b7c 08382aa8 08125788
    0x5483512c: 00000000 083808e0 00000002 08363c00
    0x5483513c: 08164f48 08382abc 54835100 54f31700
    0x5483514c: 00000040 4d176b08 00000000 0810e650
    0x5483515c: 080b3720 08382b08 00000055 08382b74
    0x5483516c: 00000000 080b36f8 08363cd8 08382aa8
    Instructions: (pc=0x00000000)
    0xfffffff0:
    Stack: [0x547c9000,0x5483b000), sp=0x548350fc, free space=432k
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j oracle.jdbc.oci8.OCIDBAccess.do_execute(Loracle/jdbc/oci8/OCIDBStatement;I)I+0
    j oracle.jdbc.oci8.OCIDBAccess.executeFetch(Loracle/jdbc/dbaccess/DBStatement;BLoracle/jdbc/dbaccess/DBDataSet;ILoracle/jdbc/dbaccess/DBDataSet;I)I+1335
    j oracle.jdbc.driver.OracleStatement.doExecuteQuery()V+625
    j oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout()V+186
    j oracle.jdbc.driver.OraclePreparedStatement.executeUpdate()I+70
    j oracle.jdbc.driver.OraclePreparedStatement.executeQuery()Ljava/sql/ResultSet;+17
    j org.apache.catalina.realm.DualRealm.getDBRoles(Ljava/sql/Connection;Ljava/lang/String;)Ljava/util/List;+27
    j org.apache.catalina.realm.DualRealm.authorizeViaDB(Ljava/lang/String;)Ljava/util/List;+29
    j org.apache.catalina.realm.DualRealm.authenticate(Ljavax/naming/directory/DirContext;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/security/Principal;+275
    j org.apache.catalina.realm.DualRealm.authenticateJNDI(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/security/Principal;+250
    j org.apache.catalina.realm.DualRealm.authenticate(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/security/Principal;+62
    j org.apache.catalina.authenticator.DualRealmFormAuthenticator.authenticate(Lorg/apache/catalina/HttpRequest;Lorg/apache/catalina/HttpResponse;Lorg/apache/catalina/deploy/LoginConfig;)Z+951
    j org.apache.catalina.authenticator.AuthenticatorBase.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;Lorg/apache/catalina/ValveContext;)V+322
    j org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+39
    j org.apache.catalina.core.StandardPipeline.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+10
    j org.apache.catalina.core.ContainerBase.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+6
    j org.apache.catalina.core.StandardContext.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+81
    j org.apache.catalina.core.StandardHostValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;Lorg/apache/catalina/ValveContext;)V+171
    j org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+79
    j org.apache.catalina.valves.ErrorDispatcherValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;Lorg/apache/catalina/ValveContext;)V+3
    j org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+39
    j org.apache.catalina.valves.ErrorReportValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;Lorg/apache/catalina/ValveContext;)V+3
    j org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+39
    j org.apache.catalina.core.StandardPipeline.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+10
    j org.apache.catalina.core.ContainerBase.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+6
    j org.apache.catalina.core.StandardEngineValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;Lorg/apache/catalina/ValveContext;)V+160
    j org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+79
    j org.apache.catalina.core.StandardPipeline.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+10
    j org.apache.catalina.core.ContainerBase.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+6
    j org.apache.coyote.tomcat4.CoyoteAdapter.service(Lorg/apache/coyote/Request;Lorg/apache/coyote/Response;)V+101
    j org.apache.jk.server.JkCoyoteHandler.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+165
    j org.apache.jk.common.HandlerRequest.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+249
    j org.apache.jk.common.ChannelSocket.invoke(Lorg/apache/jk/core/Msg;Lorg/apache/jk/core/MsgContext;)I+59
    j org.apache.jk.common.ChannelSocket.processConnection(Lorg/apache/jk/core/MsgContext;)V+87
    j org.apache.jk.common.SocketConnection.runIt([Ljava/lang/Object;)V+8
    j org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run()V+152
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x080b2580 JavaThread "Thread-122" daemon [_thread_in_native, id=29611]
    0x535947a8 JavaThread "MonitorRunnable" daemon [_thread_blocked, id=18811]
    0x5358a128 JavaThread "Thread-11" daemon [_thread_in_native, id=18810]
    =>0x53588fd0 JavaThread "Thread-10" daemon [_thread_in_native, id=18809]
    0x535884b8 JavaThread "Thread-9" daemon [_thread_in_native, id=18808]
    0x535882c0 JavaThread "Thread-8" daemon [_thread_blocked, id=18807]
    0x5357f890 JavaThread "MonitorRunnable" daemon [_thread_blocked, id=18806]
    0x53594a58 JavaThread "Thread-6" daemon [_thread_in_native, id=18805]
    0x53581108 JavaThread "Thread-5" daemon [_thread_blocked, id=18804]
    0x5358d410 JavaThread "Thread-4" daemon [_thread_blocked, id=18803]
    0x535773a8 JavaThread "Thread-3" daemon [_thread_blocked, id=18802]
    0x53585508 JavaThread "HostConfig[localhost]" daemon [_thread_blocked, id=18801]
    0x535851a8 JavaThread "StandardManager[webdav]" daemon [_thread_blocked, id=18800]
    0x53595330 JavaThread "StandardManager[]" daemon [_thread_blocked, id=18799]
    0x53599cf0 JavaThread "StandardManager[manager]" daemon [_thread_blocked, id=18798]
    0x5357a450 JavaThread "StandardManager[compliance]" daemon [_thread_blocked, id=18797]
    0x53575340 JavaThread "WebappLoader[compliance]" daemon [_thread_blocked, id=18796]
    0x523f8f80 JavaThread "StandardManager[examples]" daemon [_thread_blocked, id=18795]
    0x523fcef8 JavaThread "WebappLoader[examples]" daemon [_thread_blocked, id=18794]
    0x51405480 JavaThread "CompilerThread0" daemon [_thread_blocked, id=18791]
    0x51404730 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=18790]
    0x514005f8 JavaThread "Finalizer" daemon [_thread_blocked, id=18788]
    0x080a5668 JavaThread "Reference Handler" daemon [_thread_blocked, id=18787]
    0x08057c98 JavaThread "main" [_thread_in_native, id=18784]
    Other Threads:
    0x080a24f0 VMThread [id=18786]
    0x51406f00 WatcherThread [id=18792]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 9088K, used 412K [0x45170000, 0x45b40000, 0x45b40000)
    eden space 8128K, 1% used [0x45170000, 0x45192400, 0x45960000)
    from space 960K, 28% used [0x45960000, 0x459a4d10, 0x45a50000)
    to space 960K, 0% used [0x45a50000, 0x45a50000, 0x45b40000)
    tenured generation total 121024K, used 15706K [0x45b40000, 0x4d170000, 0x4d170000)
    the space 121024K, 12% used [0x45b40000, 0x46a96b38, 0x46a96c00, 0x4d170000)
    compacting perm gen total 11264K, used 11218K [0x4d170000, 0x4dc70000, 0x51170000)
    the space 11264K, 99% used [0x4d170000, 0x4dc64880, 0x4dc64a00, 0x4dc70000)
    Dynamic libraries:
    08048000-08053000 r-xp 00000000 68:06 69898 /usr/java/j2sdk1.4.2_13/bin/java
    08053000-08055000 rw-p 0000a000 68:06 69898 /usr/java/j2sdk1.4.2_13/bin/java
    08055000-08446000 rwxp 00000000 00:00 0
    40000000-40013000 r-xp 00000000 68:05 11538 /lib/ld-2.2.5.so
    40013000-40014000 rw-p 00013000 68:05 11538 /lib/ld-2.2.5.so
    40014000-4001a000 r-xp 00000000 68:06 62540 /usr/java/j2sdk1.4.2_13/jre/lib/i386/native_threads/libhpi.so
    4001a000-4001c000 rw-p 00005000 68:06 62540 /usr/java/j2sdk1.4.2_13/jre/lib/i386/native_threads/libhpi.so
    4001c000-40020000 rw-s 00000000 68:07 110 /tmp/hsperfdata_tc_cmpdv/18784
    40021000-4002e000 r-xp 00000000 68:05 11466 /lib/i686/libpthread.so.0
    4002e000-40035000 rw-p 0000d000 68:05 11466 /lib/i686/libpthread.so.0
    40035000-40036000 rw-p 00000000 00:00 0
    40036000-40038000 r-xp 00000000 68:05 11500 /lib/libdl.so.2
    40038000-40039000 rw-p 00001000 68:05 11500 /lib/libdl.so.2
    40039000-4014d000 r-xp 00000000 68:05 11529 /lib/i686/libc.so.6
    4014d000-40153000 rw-p 00113000 68:05 11529 /lib/i686/libc.so.6
    40153000-40157000 rw-p 00000000 00:00 0
    40157000-40570000 r-xp 00000000 68:06 69111 /usr/java/j2sdk1.4.2_13/jre/lib/i386/client/libjvm.so
    40570000-4058c000 rw-p 00418000 68:06 69111 /usr/java/j2sdk1.4.2_13/jre/lib/i386/client/libjvm.so
    4058c000-405a1000 rw-p 00000000 00:00 0
    405a1000-405b3000 r-xp 00000000 68:05 11541 /lib/libnsl.so.1
    405b3000-405b4000 rw-p 00011000 68:05 11541 /lib/libnsl.so.1
    405b4000-405b6000 rw-p 00000000 00:00 0
    405b6000-405d8000 r-xp 00000000 68:05 11457 /lib/i686/libm.so.6
    405d8000-405d9000 rw-p 00021000 68:05 11457 /lib/i686/libm.so.6
    405d9000-405e6000 r-xp 00000000 68:06 69119 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libverify.so
    405e6000-405e8000 rw-p 0000c000 68:06 69119 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libverify.so
    405e8000-40604000 r-xp 00000000 68:06 69121 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libjava.so
    40604000-40606000 rw-p 0001b000 68:06 69121 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libjava.so
    40606000-40614000 r-xp 00000000 68:06 69123 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libzip.so
    40614000-40616000 rw-p 0000d000 68:06 69123 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libzip.so
    40616000-40619000 r--s 00000000 3a:00 460370 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/bin/tomcat-jni.jar
    40619000-4061c000 r--s 00000000 3a:00 460384 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/bin/commons-daemon.jar
    4061c000-40623000 r--s 00000000 3a:00 460393 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/bin/bootstrap.jar
    40623000-40633000 r--s 00000000 3a:00 369241 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/endorsed/dom.jar
    40633000-4064b000 r--s 00000000 3a:00 474022 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/endorsed/sax.jar
    4064b000-408fa000 r--s 00000000 3a:00 587835 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/endorsed/xercesImpl.jar
    408fa000-40fbf000 r--s 00000000 3a:00 479234 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/endorsed/xalan.jar
    40fbf000-40ff5000 r--s 00000000 3a:00 386319 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/endorsed/jaxp-api.jar
    40ff5000-429a3000 r--s 00000000 68:06 69889 /usr/java/j2sdk1.4.2_13/jre/lib/rt.jar
    429a3000-429ed000 rw-p 00000000 00:00 0
    429ed000-42a03000 r--s 00000000 68:06 69153 /usr/java/j2sdk1.4.2_13/jre/lib/sunrsasign.jar
    42a03000-42ae0000 r--s 00000000 68:06 69763 /usr/java/j2sdk1.4.2_13/jre/lib/jsse.jar
    42ae0000-42af2000 r--s 00000000 68:06 69154 /usr/java/j2sdk1.4.2_13/jre/lib/jce.jar
    42af2000-430c7000 r--s 00000000 68:06 69814 /usr/java/j2sdk1.4.2_13/jre/lib/charsets.jar
    430c7000-45147000 rwxp 00000000 00:00 0
    45147000-4516f000 rw-p 00000000 00:00 0
    45170000-5122e000 rwxp 00000000 00:00 0
    5122e000-5122f000 ---p 0c0be000 00:00 0
    5122f000-512af000 rwxp 0c0bf000 00:00 0
    512af000-512b0000 ---p 0c13f000 00:00 0
    512b0000-512be000 rwxp 0c140000 00:00 0
    512be000-512c1000 ---p 0c14e000 00:00 0
    512c1000-51330000 rwxp 0c151000 00:00 0
    51330000-51331000 ---p 0c1c0000 00:00 0
    51331000-5133f000 rwxp 0c1c1000 00:00 0
    5133f000-51342000 ---p 0c1cf000 00:00 0
    51342000-513b1000 rwxp 0c1d2000 00:00 0
    513b1000-513dc000 r--p 00000000 68:06 87085 /usr/lib/locale/en_GB/LC_CTYPE
    513dc000-513df000 r--s 00000000 68:06 69150 /usr/java/j2sdk1.4.2_13/jre/lib/ext/dnsns.jar
    513df000-513fb000 r--s 00000000 68:06 69149 /usr/java/j2sdk1.4.2_13/jre/lib/ext/sunjce_provider.jar
    513fb000-513fe000 r--s 00000000 3a:00 515615 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/jta.jar
    513fe000-51400000 r--s 00000000 3a:00 515649 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/servlets-common.jar
    51400000-514ff000 rw-p 00000000 00:00 0
    514ff000-51501000 ---p 000eb000 00:00 0
    51501000-51581000 rwxp 00000000 00:00 0
    51581000-51582000 ---p 00080000 00:00 0
    51582000-51590000 rwxp 00081000 00:00 0
    51590000-51593000 ---p 0008f000 00:00 0
    51593000-51602000 rwxp 00092000 00:00 0
    51602000-51603000 ---p 00101000 00:00 0
    51603000-51611000 rwxp 00102000 00:00 0
    51611000-51614000 ---p 00110000 00:00 0
    51614000-51683000 rwxp 00113000 00:00 0
    51683000-51684000 ---p 00182000 00:00 0
    51684000-51704000 rwxp 00183000 00:00 0
    51704000-51711000 r--s 00000000 68:06 69152 /usr/java/j2sdk1.4.2_13/jre/lib/ext/ldapsec.jar
    51711000-517cd000 r--s 00000000 68:06 69815 /usr/java/j2sdk1.4.2_13/jre/lib/ext/localedata.jar
    517cd000-51ca9000 r--s 00000000 68:06 10327 /usr/java/j2sdk1.4.2_13/lib/tools.jar
    51ca9000-51cb5000 r--s 00000000 3a:00 515616 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/activation.jar
    51cb5000-51ccc000 r--s 00000000 3a:00 515617 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/commons-collections.jar
    51ccc000-51ce0000 r--s 00000000 3a:00 515621 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/servlet.jar
    51ce0000-51cf5000 r--s 00000000 3a:00 515622 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/jdbc2_0-stdext.jar
    51cf5000-51d22000 r--s 00000000 3a:00 515623 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/jasper-compiler.jar
    51d22000-51d41000 r--s 00000000 3a:00 515624 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/Opta2000.jar
    51d41000-51d86000 r--s 00000000 3a:00 515625 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/mail.jar
    51d86000-51d9f000 r--s 00000000 3a:00 515626 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/jndi.jar
    51d9f000-51da4000 r--s 00000000 3a:00 515627 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/naming-factory.jar
    51da4000-51ec7000 r--s 00000000 3a:00 515619 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/ojdbc14.jar
    51ec7000-51ed8000 r--s 00000000 3a:00 515628 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/jasper-runtime.jar
    51ed8000-51ee2000 r--s 00000000 3a:00 515629 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/naming-resources.jar
    51ee2000-51f92000 r--s 00000000 3a:00 515630 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/ant.jar
    51f92000-51f97000 r--s 00000000 3a:00 515631 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/commons-logging-api.jar
    51f97000-51f9e000 r--s 00000000 3a:00 515632 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/naming-common.jar
    51f9e000-51fb7000 r--s 00000000 3a:00 515370 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/commons-dbcp-1.1.jar
    51fb7000-51fc1000 r--s 00000000 3a:00 515372 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/common/lib/commons-pool-1.1.jar
    51fc1000-51fc5000 r--s 00000000 3a:00 515641 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/catalina-ant.jar
    51fc5000-51fd9000 r--s 00000000 3a:00 515642 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-jk2.jar
    51fd9000-51fff000 r--s 00000000 3a:00 515645 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-util.jar
    52000000-520fd000 rw-p 00000000 00:00 0
    520fd000-52100000 ---p 0015f000 00:00 0
    52100000-52107000 r--s 00000000 3a:00 515654 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/commons-logging.jar
    52107000-52116000 r--s 00000000 3a:00 515643 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-coyote.jar
    52116000-5211f000 r--s 00000000 3a:00 515646 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-http11.jar
    5211f000-52139000 r--s 00000000 3a:00 515647 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/jaas.jar
    52139000-52140000 r--s 00000000 3a:00 515652 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/DualRealm.jar
    52140000-52142000 r--s 00000000 3a:00 515653 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/servlets-invoker.jar
    52142000-52187000 r--s 00000000 3a:00 515655 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/mx4j-jmx.jar
    52187000-5219e000 r--s 00000000 3a:00 515656 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/commons-digester.jar
    5219e000-52257000 r--s 00000000 3a:00 516898 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/catalina.jar
    52257000-5225c000 r--s 00000000 3a:00 515657 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/servlets-default.jar
    5225c000-52260000 r--s 00000000 3a:00 515658 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/servlets-manager.jar
    52260000-52268000 r--s 00000000 3a:00 515659 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/jakarta-regexp-1.2.jar
    52268000-5226e000 r--s 00000000 3a:00 515660 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-warp.jar
    5226e000-52276000 r--s 00000000 3a:00 515661 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/commons-modeler.jar
    52276000-52286000 r--s 00000000 3a:00 515662 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/tomcat-jk.jar
    52286000-5229a000 r--s 00000000 3a:00 515663 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/commons-beanutils.jar
    5229a000-522a0000 r--s 00000000 3a:00 515664 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/server/lib/servlets-webdav.jar
    522a0000-522ae000 r-xp 00000000 68:06 69127 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libnet.so
    522ae000-522af000 rw-p 0000d000 68:06 69127 /usr/java/j2sdk1.4.2_13/jre/lib/i386/libnet.so
    522af000-522b7000 r--s 00000000 3a:00 1757684 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/CompCommon.jar
    522b7000-522bc000 r--s 00000000 3a:00 1757686 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/CompDBUtil.jar
    522bc000-522c5000 r-xp 00000000 68:05 11512 /lib/libnss_files.so.2
    522c5000-522c6000 rw-p 00008000 68:05 11512 /lib/libnss_files.so.2
    522c6000-522c9000 r-xp 00000000 68:05 11511 /lib/libnss_dns.so.2
    522c9000-522ca000 rw-p 00003000 68:05 11511 /lib/libnss_dns.so.2
    522ca000-522d8000 r-xp 00000000 68:05 11515 /lib/libresolv.so.2
    522d8000-522d9000 rw-p 0000e000 68:05 11515 /lib/libresolv.so.2
    522d9000-522db000 rw-p 00000000 00:00 0
    522db000-522fa000 r--s 00000000 3a:00 1757687 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/CompPrivateXMLMessage.jar
    522fa000-52300000 r--s 00000000 3a:00 1757697 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-fileupload.jar
    52300000-523ff000 rw-p 00000000 00:00 0
    523ff000-52400000 ---p 00000000 00:00 0
    52400000-52415000 r-xp 00000000 3a:00 80003 /local/oracle/apps/oracle/product/9ir2/lib/libocijdbc9.so
    52415000-52417000 rw-p 00014000 3a:00 80003 /local/oracle/apps/oracle/product/9ir2/lib/libocijdbc9.so
    52417000-52419000 r-xp 00000000 3a:00 79911 /local/oracle/apps/oracle/product/9ir2/lib/libwtc9.so
    52419000-5241a000 rw-p 00001000 3a:00 79911 /local/oracle/apps/oracle/product/9ir2/lib/libwtc9.so
    5241a000-52465000 rw-p 00000000 00:00 0
    52481000-5249d000 r--s 00000000 3a:00 1757688 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/CompSharedXMLMessage.jar
    5249d000-524a4000 r--s 00000000 3a:00 1757689 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/DualRealm.jar
    524a4000-524af000 r--s 00000000 3a:00 1757690 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/activation.jar
    524af000-524de000 r--s 00000000 3a:00 1757693 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-beanutils.jar
    524de000-524f9000 r--s 00000000 3a:00 1757695 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-dbcp-1.2.1.jar
    524f9000-524fb000 r--s 00000000 3a:00 1757704 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jax-qname.jar
    524fb000-524fd000 r--s 00000000 3a:00 1757711 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jdbc2_0-stdext.jar
    524fd000-524ff000 r--s 00000000 3a:00 1757717 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/namespace.jar
    52500000-52600000 rw-p 00000000 00:00 0
    52600000-52601000 ---p 000da000 00:00 0
    52601000-5260f000 rwxp 00000000 00:00 0
    5260f000-52612000 ---p 0000e000 00:00 0
    52612000-52681000 rwxp 00011000 00:00 0
    52681000-52682000 ---p 00080000 00:00 0
    52682000-52690000 rwxp 00081000 00:00 0
    52690000-52693000 ---p 0008f000 00:00 0
    52693000-52702000 rwxp 00092000 00:00 0
    52702000-5280a000 r--s 00000000 3a:00 1757685 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/CompDAO.jar
    5280a000-52862000 r--s 00000000 3a:00 1757691 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/antlr.jar
    52862000-5291b000 r--s 00000000 3a:00 1757692 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/catalina.jar
    5291b000-52946000 r--s 00000000 3a:00 1757694 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-collections.jar
    52946000-52970000 r--s 00000000 3a:00 1757696 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-digester.jar
    52970000-5297a000 r--s 00000000 3a:00 1757698 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-logging.jar
    5297a000-5298f000 r--s 00000000 3a:00 1757699 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/commons-validator.jar
    5298f000-5299f000 r--s 00000000 3a:00 1757700 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/dom.jar
    5299f000-52a5b000 r--s 00000000 3a:00 1757701 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/iText.jar
    52a5b000-52a89000 r--s 00000000 3a:00 1757702 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaas.jar
    52a89000-52a99000 r--s 00000000 3a:00 1757703 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jakarta-oro.jar
    52a99000-52aaf000 r--s 00000000 3a:00 1757705 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxb-api.jar
    52aaf000-52ade000 r--s 00000000 3a:00 1757709 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxen-full.jar
    52ade000-52ae4000 r--s 00000000 3a:00 1757713 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jstl.jar
    52ae4000-52ae9000 r--s 00000000 3a:00 1757714 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jta-spec1_0_1.jar
    52ae9000-52af1000 r--s 00000000 3a:00 1757719 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/relaxngDatatype.jar
    52af1000-52af7000 r--s 00000000 3a:00 1757721 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/saxpath.jar
    52af7000-52afb000 r--s 00000000 3a:00 1757724 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/td_ie_util.jar
    52b00000-52c00000 rw-p 00000000 00:00 0
    52c00000-52c54000 r--s 00000000 3a:00 1757706 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxb-impl.jar
    52c54000-52e0d000 r--s 00000000 3a:00 1757707 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxb-libs.jar
    52e0d000-53167000 r--s 00000000 3a:00 1757708 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxb-xjc.jar
    53167000-5319d000 r--s 00000000 3a:00 1757710 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jaxp-api.jar
    5319d000-53216000 r--s 00000000 3a:00 1757712 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/jfreechart-0.9.11.jar
    53216000-53273000 r--s 00000000 3a:00 1757715 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/log4j-1.2.4.jar
    53273000-532c3000 r--s 00000000 3a:00 1757716 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/mail.jar
    532c3000-53387000 r--s 00000000 3a:00 1757718 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/poi-2.5.1-final-20040804.jar
    53387000-5339f000 r--s 00000000 3a:00 1757720 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/sax.jar
    5339f000-5341c000 r--s 00000000 3a:00 1757722 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/standard.jar
    5341c000-534a3000 r--s 00000000 3a:00 1757723 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/struts.jar
    534a3000-534c2000 r--s 00000000 3a:00 1757727 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/xml-apis.jar
    53500000-535fc000 rw-p 00000000 00:00 0
    535fc000-53600000 ---p 000be000 00:00 0
    53600000-53cc5000 r--s 00000000 3a:00 1757725 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/xalan.jar
    53cc5000-53f74000 r--s 00000000 3a:00 1757726 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/xercesImpl.jar
    53f74000-54031000 r--s 00000000 3a:00 1757728 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/xmlsec.jar
    54031000-540a6000 r--s 00000000 3a:00 1757729 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/xsdlib.jar
    540a6000-540a7000 ---p 00000000 00:00 0
    540a7000-540b5000 rwxp 00001000 00:00 0
    540b5000-540b8000 ---p 0000f000 00:00 0
    540b8000-54127000 rwxp 00012000 00:00 0
    54127000-54128000 ---p 00081000 00:00 0
    54128000-54136000 rwxp 00082000 00:00 0
    54136000-54139000 ---p 00090000 00:00 0
    54139000-541a8000 rwxp 00093000 00:00 0
    541a8000-5422f000 r--s 00000000 3a:00 1757723 /local/home/tc_cmpdv/pkg/jakarta-tomcat-4.1.18/webapps/compliance/WEB-INF/lib/struts.jar
    5422f000-54230000 ---p 00000000 00:00 0
    54230000-5423e000 rwxp 00001000 00:00 0
    5423e000-54241000 ---p 0000f000 00:00 0
    54241000-542b0000 rwxp 00012000 00:00 0
    542b0000-542b1000 ---p 00081000 00:00 0
    542b1000-542bf000 rwxp 00082000 00:00 0
    542bf000-542c2000 ---p 00090000 00:00 0
    542c2000-54331000 rwxp 00093000 00:00 0
    54331000-54332000 ---p 00102000 00:00 0
    54332000-54340000 rwxp 00103000 00:00 0
    54340000-54343000 ---p 00111000 00:00 0
    54343000-543b2000 rwxp 00114000 00:00 0
    543b2000-543b3000 ---p 00183000 00:00 0
    543b3000-543c1000 rwxp 00184000 00:00 0
    543c1000-543c4000 ---p 00192000 00:00 0
    543c4000-54433000 rwxp 00195000 00:00 0
    54433000-54434000 ---p 00204000 00:00 0
    54434000-54442000 rwxp 00205000 00:00 0
    54442000-54445000 ---p 00213000 00:00 0
    54445000-544b4000 rwxp 00216000 00:00 0
    544b4000-544b5000 ---p 00285000 00:00 0
    544b5000-544c3000 rwxp 00286000 00:00 0
    544c3000-544c6000 ---p 00294000 00:00 0
    544c6000-54535000 rwxp 00297000 00:00 0
    54535000-54536000 ---p 00306000 00:00 0
    54536000-54544000 rwxp 00307000 00:00 0
    54544000-54547000 ---p 00315000 00:00 0
    54547000-545b6000 rwxp 00318000 00:00 0
    545b6000-545b7000 ---p 00387000 00:00 0
    545b7000-545c5000 rwxp 00388000 00:00 0
    545c5000-545c8000 ---p 00396000 00:00 0
    545c8000-54637000 rwxp 00399000 00:00 0
    54637000-54638000 ---p 00408000 00:00 0
    54638000-54646000 rwxp 00409000 00:00 0
    54646000-54649000 ---p 00417000 00:00 0
    54649000-546b8000 rwxp 0041a000 00:00 0
    546b8000-546b9000 ---p 00489000 00:00 0
    546b9000-546c7000 rwxp 0048a000 00:00 0
    546c7000-546ca000 ---p 00498000 00:00 0
    546ca000-54739000 rwxp 0049b000 00:00 0
    54739000-5473a000 ---p 0050a000 00:00 0
    5473a000-54748000 rwxp 0050b000 00:00 0
    54748000-5474b000 ---p 00519000 00:00 0
    5474b000-547ba000 rwxp 0051c000 00:00 0
    547ba000-547bb000 ---p 0058b000 00:00 0
    547bb000-547c9000 rwxp 0058c000 00:00 0
    547c9000-547cc000 ---p 0059a000 00:00 0
    547cc000-5483b000 rwxp 0059d000 00:00 0
    5483b000-5483c000 ---p 0060c000 00:00 0
    5483c000-5484a000 rwxp 0060d000 00:00 0
    5484a000-5484d000 ---p 0061b000 00:00 0
    5484d000-548bc000 rwxp 0061e000 00:00 0
    548bc000-548fd000 rw-p 00000000 00:00 0
    548fd000-548fe000 ---p 00000000 00:00 0
    548fe000-5490c000 rwxp 00001000 00:00 0
    5490c000-5490f000 ---p 0000f000 00:00 0
    5490f000-5497e000 rwxp 00012000 00:00 0
    54a00000-54a49000 rw-p 00000000 00:00 0
    54a49000-54b00000 ---p 000cb000 00:00 0
    54b9b000-54b9c000 ---p 00000000 00:00 0
    54b9c0

    Hello,
    Hi,
    My application server(apache-tomcat-5.5.27) is running on linux box with Jdk1.6_13,64 bit server, It's crashing frequently like every 12- 15 hrs once. I am using OCI dirver to connect to the oracle database, here with I have enclosed the dump file generated.
    Any one faced such issues or have workaround or help on this issue to resolve is highly appreciated...
    Please help me as soon as possible//
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x0000002c35f26e7e, pid=11354, tid=1074588000
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (11.3-b02 mixed mode linux-amd64)
    # Problematic frame:
    # C [libclntsh.so.10.1+0x552e7e] gslcrqwWrite+0x40
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x0000002c343ff000): JavaThread "DefaultQuartzScheduler_Worker-3" [_thread_in_native, id=11383, stack(0x00000000400ae000,0x00000000400cf000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x000000000000019c
    Registers:
    RAX=0x0000002c34310f80, RBX=0x0000000000000000, RCX=0x0000002c33744d80, RDX=0x0000000000000000
    RSP=0x00000000400c4d60, RBP=0x00000000400c4da0, RSI=0x0000002c3355e5f0, RDI=0x0000000000000000
    R8 =0x0000000000000000, R9 =0x0000000000000000, R10=0x0000002c36cf00a0, R11=0x0000002c35f41800
    R12=0x0000000000000000, R13=0x0000000000000000, R14=0x0000002c3355e5f0, R15=0x0000000000000000
    RIP=0x0000002c35f26e7e, EFL=0x0000000000010202, CSGSFS=0x0000000000000000, ERR=0x0000000000000004
    TRAPNO=0x000000000000000e
    time: Mon Apr 20 05:16:14 2009
    elapsed time: 42930 seconds

  • 64 bit JVM Crash  when loading shared library

    I wrote a simple code to test loading of 64 bit shared library in linux. My JVM crashes on System.loadLibrary method.
    JAVA CODE
    import java.awt.Dimension;
    import javax.swing.JFrame;
    public class TestJNI extends JFrame{
            public native void init();
            static{
                    System.loadLibrary("testJNI");
            public static void main(String ...args){
                    TestJNI test = new TestJNI();
                    test.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                    test.setSize(new Dimension(500,500));
                    test.setVisible(true);
                    System.out.println("Before init");
                    //test.init();
                    System.out.println("After init");
    } Header file created using javah
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class TestJNI */
    #ifndef _Included_TestJNI
    #define _Included_TestJNI
    #ifdef __cplusplus
    extern "C" {
    #endif
    #undef TestJNI_FOCUS_TRAVERSABLE_UNKNOWN
    #define TestJNI_FOCUS_TRAVERSABLE_UNKNOWN 0L
    #undef TestJNI_FOCUS_TRAVERSABLE_DEFAULT
    #define TestJNI_FOCUS_TRAVERSABLE_DEFAULT 1L
    #undef TestJNI_FOCUS_TRAVERSABLE_SET
    #define TestJNI_FOCUS_TRAVERSABLE_SET 2L
    #undef TestJNI_TOP_ALIGNMENT
    #define TestJNI_TOP_ALIGNMENT 0.0f
    #undef TestJNI_CENTER_ALIGNMENT
    #define TestJNI_CENTER_ALIGNMENT 0.5f
    #undef TestJNI_BOTTOM_ALIGNMENT
    #define TestJNI_BOTTOM_ALIGNMENT 1.0f
    #undef TestJNI_LEFT_ALIGNMENT
    #define TestJNI_LEFT_ALIGNMENT 0.0f
    #undef TestJNI_RIGHT_ALIGNMENT
    #define TestJNI_RIGHT_ALIGNMENT 1.0f
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID -7644114512714619750LL
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID 4613797578919906343LL
    #undef TestJNI_INCLUDE_SELF
    #define TestJNI_INCLUDE_SELF 1L
    #undef TestJNI_SEARCH_HEAVYWEIGHTS
    #define TestJNI_SEARCH_HEAVYWEIGHTS 1L
    #undef TestJNI_OPENED
    #define TestJNI_OPENED 1L
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID 4497834738069338734LL
    #undef TestJNI_DEFAULT_CURSOR
    #define TestJNI_DEFAULT_CURSOR 0L
    #undef TestJNI_CROSSHAIR_CURSOR
    #define TestJNI_CROSSHAIR_CURSOR 1L
    #undef TestJNI_TEXT_CURSOR
    #define TestJNI_TEXT_CURSOR 2L
    #undef TestJNI_WAIT_CURSOR
    #define TestJNI_WAIT_CURSOR 3L
    #undef TestJNI_SW_RESIZE_CURSOR
    #define TestJNI_SW_RESIZE_CURSOR 4L
    #undef TestJNI_SE_RESIZE_CURSOR
    #define TestJNI_SE_RESIZE_CURSOR 5L
    #undef TestJNI_NW_RESIZE_CURSOR
    #define TestJNI_NW_RESIZE_CURSOR 6L
    #undef TestJNI_NE_RESIZE_CURSOR
    #define TestJNI_NE_RESIZE_CURSOR 7L
    #undef TestJNI_N_RESIZE_CURSOR
    #define TestJNI_N_RESIZE_CURSOR 8L
    #undef TestJNI_S_RESIZE_CURSOR
    #define TestJNI_S_RESIZE_CURSOR 9L
    #undef TestJNI_W_RESIZE_CURSOR
    #define TestJNI_W_RESIZE_CURSOR 10L
    #undef TestJNI_E_RESIZE_CURSOR
    #define TestJNI_E_RESIZE_CURSOR 11L
    #undef TestJNI_HAND_CURSOR
    #define TestJNI_HAND_CURSOR 12L
    #undef TestJNI_MOVE_CURSOR
    #define TestJNI_MOVE_CURSOR 13L
    #undef TestJNI_NORMAL
    #define TestJNI_NORMAL 0L
    #undef TestJNI_ICONIFIED
    #define TestJNI_ICONIFIED 1L
    #undef TestJNI_MAXIMIZED_HORIZ
    #define TestJNI_MAXIMIZED_HORIZ 2L
    #undef TestJNI_MAXIMIZED_VERT
    #define TestJNI_MAXIMIZED_VERT 4L
    #undef TestJNI_MAXIMIZED_BOTH
    #define TestJNI_MAXIMIZED_BOTH 6L
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID 2673458971256075116LL
    #undef TestJNI_EXIT_ON_CLOSE
    #define TestJNI_EXIT_ON_CLOSE 3L
    * Class:     TestJNI
    * Method:    init
    * Signature: ()V
    JNIEXPORT void JNICALL Java_TestJNI_init
      (JNIEnv *, jobject);
    #ifdef __cplusplus
    #endif
    #endifC code TestJNI.c
    #include "TestJNI.h"
    #include <stdio.h>
    JNIEXPORT void JNICALL Java_TestJNI_init
      (JNIEnv *env, jobject ob){
      printf("TESTING JNI CALL");
    }gcc options are as follows to get the shared library:
    gcc -fPIC -pthread -g -Wall -D_REENTRANT -I/vobs/3p/jdk1.6.0_10/linux/include/linux -I/vobs/3p/jdk1.6.0_10/linux/include/ -c TestJNI.c -o TestJNI.o
    gcc -z defs -pthread -D_REENTRANT -Wl,-soname,libnative.so -shared -o libtestJNI.so TestJNI.o -lcAny help is appreciated. I am not sure what i am doing wrong here.
    Running the same code on a 32 bit jvm with a 32 bit shared library works.

    Hi,
    I was also having a problem under 64 bit, Now I am certain that if ur Java code makes a call to the DLL, make sure that DLL is compiled under 64 bit compiler and not 32 bit compiler. This is the mistake I made and the JVM was throwing unsatisfied link error. Now this DLL (compiled under 64 bit) could call a 32 bit dll, I dont think that should be a problem.
    Hope it helps.
    Subu

  • JVM crash when main process exiting

    I started a main process as root user, in the execution of the main process, i started several child processes. All children processes execution are ok, but then main process existing, it throws jvm crash as following:
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00002aaabc7005a8, pid=19195, tid=1106790720
    # JRE version: 6.0_31-b02
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (20.6-b01 mixed mode linux-amd64 compressed oops)
    # Problematic frame:
    [error occurred during error reporting (printing problematic frame), id 0xb]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x0000000056224800): VMThread [stack: 0x0000000041e84000,0x0000000041f85000] [id=19199]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=2 (SEGV_ACCERR), si_addr=0x00002aaabc9a5848
    Registers:
    RAX=0x0000003311838510, RBX=0x0000003288c1c000, RCX=0x0000000000000000, RDX=0x0000000000000032
    RSP=0x0000000041f83ca0, RBP=0x0000000041f83e30, RSI=0x0000000000000000, RDI=0x0000003311838510
    R8 =0x00002aaab1ed8028, R9 =0x0000000000004aff, R10=0x0000000000000000, R11=0x0000003289233750
    R12=0x00002ae5cca86143, R13=0x000000005666b790, R14=0x0000000000000022, R15=0x000000000000000c
    RIP=0x00002aaabc7005a8, EFLAGS=0x0000000000010246, CSGSFS=0x0000000000000033, ERR=0x0000000000000004
    TRAPNO=0x000000000000000e
    Top of Stack: (sp=0x0000000041f83ca0)
    0x0000000041f83ca0: 00002aaabc77fb22 0000003288a0d7e4
    0x0000000041f83cb0: 00002ae5cbe9e000 00002ae5cbe9e590
    0x0000000041f83cc0: 00000000561ce5c0 00002aaab41eb5f0
    0x0000000041f83cd0: 0000000056492c40 00002aaab41ebac0
    0x0000000041f83ce0: 00000000561c5a40 00000000561c53a0
    0x0000000041f83cf0: 00000000561c27b0 00000000561c4050
    0x0000000041f83d00: 00002aaab41f5b30 00000000566514d0
    0x0000000041f83d10: 000000005666b790 00000000565c1070
    0x0000000041f83d20: 00000000565c0bc0 00000000563fea60
    0x0000000041f83d30: 00000000566519a0 00000000563fe5c0
    0x0000000041f83d40: 00000000565bfdc0 00000000565c19b0
    0x0000000041f83d50: 00000000565c1510 00000000565c0720
    0x0000000041f83d60: 00000000565c0270 00000000565c1e50
    0x0000000041f83d70: 00002ae5cbe9f508 00002ae5cbe9fa00
    0x0000000041f83d80: 00002ae5cbffd000 00000000561c2c80
    0x0000000041f83d90: 00000000561c6010 00000000563fe120
    0x0000000041f83da0: 000000005666bc60 00002ae5cbffd4c8
    0x0000000041f83db0: 0000003311838510 000000005671baa0
    0x0000000041f83dc0: 0000000000000000 0000003288a0d660
    0x0000000041f83dd0: 0000000000000000 0000003288c1c000
    0x0000000041f83de0: 0000003288c1c000 0000000041f83cb0
    0x0000000041f83df0: 00000000ccbdb240 0000000000000000
    0x0000000041f83e00: 0000000000000110 00000000418b2840
    0x0000000041f83e10: 00002ae5cca86143 0000000041f83ed0
    0x0000000041f83e20: 0000000000000000 0000000041f83f80
    0x0000000041f83e30: 0000000000000000 00000032892334f5
    0x0000000041f83e40: 00000000418b2840 0000000041f83e60
    0x0000000041f83e50: 00002ae5cca86143 00002ae5cc4dd6c9
    0x0000000041f83e60: 0000000041f83e80 00002ae5cc86e53f
    0x0000000041f83e70: 0000000041f83ed0 00000000418b2840
    0x0000000041f83e80: 0000000041f83ec0 00002ae5cc86d7ea
    0x0000000041f83e90: 0000000056223bb0 00000000561e3560
    Instructions: (pc=0x00002aaabc7005a8)
    0x00002aaabc700588: ff 25 aa 52 2a 00 68 6f 00 00 00 e9 f0 f8 ff ff
    0x00002aaabc700598: ff 25 a2 52 2a 00 68 70 00 00 00 e9 e0 f8 ff ff
    0x00002aaabc7005a8: ff 25 9a 52 2a 00 68 71 00 00 00 e9 d0 f8 ff ff
    0x00002aaabc7005b8: ff 25 92 52 2a 00 68 72 00 00 00 e9 c0 f8 ff ff
    Register to memory mapping:
    RAX=0x0000003311838510 is an unknown value
    RBX=0x0000003288c1c000: rtldglobal+0 in /lib64/ld-linux-x86-64.so.2 at 0x0000003288a00000
    RCX=0x0000000000000000 is an unknown value
    RDX=0x0000000000000032 is an unknown value
    RSP=0x0000000041f83ca0 is an unknown value
    RBP=0x0000000041f83e30 is an unknown value
    RSI=0x0000000000000000 is an unknown value
    RDI=0x0000003311838510 is an unknown value
    R8 =0x00002aaab1ed8028: <offset 0x208028> in /scratch/product/12.1.0/grid/oui/lib/linux64/liboraInstaller.so at 0x00002aaab1cd0000
    R9 =0x0000000000004aff is an unknown value
    R10=0x0000000000000000 is an unknown value
    R11=0x0000003289233750: __cxa_finalize+0 in /lib64/libc.so.6 at 0x0000003289200000
    R12=0x00002ae5cca86143: <offset 0xa86143> in /scratch/product/12.1.0/grid/jdk/jre/lib/amd64/server/libjvm.so at 0x00002ae5cc000000
    R13=0x000000005666b790 is an unknown value
    R14=0x0000000000000022 is an unknown value
    R15=0x000000000000000c is an unknown value
    Stack: [0x0000000041e84000,0x0000000041f85000], sp=0x0000000041f83ca0, free space=1023k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    [error occurred during error reporting (printing native stack), id 0xb]
    VM_Operation (0x00000000418b2840): Exit, mode: safepoint, requested by thread 0x00000000561ca800
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00000000566d1800 JavaThread "GetActiveNodesThread" daemon [_thread_blocked, id=19282, stack(0x00000000426de000,0x00000000427df000)]
    0x0000000056259000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=19205, stack(0x00000000422da000,0x00000000423db000)]
    0x0000000056257000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=19204, stack(0x00000000421d9000,0x00000000422da000)]
    0x0000000056251800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=19203, stack(0x0000000040705000,0x0000000040806000)]
    0x000000005624f000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=19202, stack(0x0000000040604000,0x0000000040705000)]
    0x000000005622d000 JavaThread "Finalizer" daemon [_thread_blocked, id=19201, stack(0x00000000420d8000,0x00000000421d9000)]
    0x000000005622b000 JavaThread "Reference Handler" daemon [_thread_blocked, id=19200, stack(0x0000000041fd7000,0x00000000420d8000)]
    0x00000000561ca800 JavaThread "main" [_thread_blocked, id=19196, stack(0x00000000417b3000,0x00000000418b4000)]
    Other Threads:
    =>0x0000000056224800 VMThread [stack: 0x0000000041e84000,0x0000000041f85000] [id=19199]
    VM state:at safepoint (shutting down)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00000000561c8f80] Threads_lock - owner thread: 0x0000000056224800
    Heap
    PSYoungGen total 42048K, used 38587K [0x00000000f5560000, 0x00000000fa780000, 0x0000000100000000)
    eden space 36096K, 91% used [0x00000000f5560000,0x00000000f75b6b90,0x00000000f78a0000)
    from space 5952K, 91% used [0x00000000f78a0000,0x00000000f7df80a8,0x00000000f7e70000)
    to space 5952K, 0% used [0x00000000fa1b0000,0x00000000fa1b0000,0x00000000fa780000)
    PSOldGen total 96000K, used 0K [0x00000000e0000000, 0x00000000e5dc0000, 0x00000000f5560000)
    object space 96000K, 0% used [0x00000000e0000000,0x00000000e0000000,0x00000000e5dc0000)
    PSPermGen total 24320K, used 24139K [0x00000000dae00000, 0x00000000dc5c0000, 0x00000000e0000000)
    object space 24320K, 99% used [0x00000000dae00000,0x00000000dc592e20,0x00000000dc5c0000)
    Code Cache [0x00002aaaaae90000, 0x00002aaaab100000, 0x00002aaaade90000)
    total_blobs=620 nmethods=309 adapters=265 free_code_cache=49025536 largest_free_block=6976
    Dynamic libraries:
    40000000-40009000 r-xp 00000000 ca:01 17574009 /scratch/product/12.1.0/grid/jdk/bin/java
    40108000-4010a000 rwxp 00008000 ca:01 17574009 /scratch/product/12.1.0/grid/jdk/bin/java
    ....

    I started a main process as root user, in the execution of the main process, i started several child processes. All children processes execution are ok, but then main process existing, it throws jvm crash as following:
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00002aaabc7005a8, pid=19195, tid=1106790720
    # JRE version: 6.0_31-b02
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (20.6-b01 mixed mode linux-amd64 compressed oops)
    # Problematic frame:
    [error occurred during error reporting (printing problematic frame), id 0xb]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x0000000056224800): VMThread [stack: 0x0000000041e84000,0x0000000041f85000] [id=19199]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=2 (SEGV_ACCERR), si_addr=0x00002aaabc9a5848
    Registers:
    RAX=0x0000003311838510, RBX=0x0000003288c1c000, RCX=0x0000000000000000, RDX=0x0000000000000032
    RSP=0x0000000041f83ca0, RBP=0x0000000041f83e30, RSI=0x0000000000000000, RDI=0x0000003311838510
    R8 =0x00002aaab1ed8028, R9 =0x0000000000004aff, R10=0x0000000000000000, R11=0x0000003289233750
    R12=0x00002ae5cca86143, R13=0x000000005666b790, R14=0x0000000000000022, R15=0x000000000000000c
    RIP=0x00002aaabc7005a8, EFLAGS=0x0000000000010246, CSGSFS=0x0000000000000033, ERR=0x0000000000000004
    TRAPNO=0x000000000000000e
    Top of Stack: (sp=0x0000000041f83ca0)
    0x0000000041f83ca0: 00002aaabc77fb22 0000003288a0d7e4
    0x0000000041f83cb0: 00002ae5cbe9e000 00002ae5cbe9e590
    0x0000000041f83cc0: 00000000561ce5c0 00002aaab41eb5f0
    0x0000000041f83cd0: 0000000056492c40 00002aaab41ebac0
    0x0000000041f83ce0: 00000000561c5a40 00000000561c53a0
    0x0000000041f83cf0: 00000000561c27b0 00000000561c4050
    0x0000000041f83d00: 00002aaab41f5b30 00000000566514d0
    0x0000000041f83d10: 000000005666b790 00000000565c1070
    0x0000000041f83d20: 00000000565c0bc0 00000000563fea60
    0x0000000041f83d30: 00000000566519a0 00000000563fe5c0
    0x0000000041f83d40: 00000000565bfdc0 00000000565c19b0
    0x0000000041f83d50: 00000000565c1510 00000000565c0720
    0x0000000041f83d60: 00000000565c0270 00000000565c1e50
    0x0000000041f83d70: 00002ae5cbe9f508 00002ae5cbe9fa00
    0x0000000041f83d80: 00002ae5cbffd000 00000000561c2c80
    0x0000000041f83d90: 00000000561c6010 00000000563fe120
    0x0000000041f83da0: 000000005666bc60 00002ae5cbffd4c8
    0x0000000041f83db0: 0000003311838510 000000005671baa0
    0x0000000041f83dc0: 0000000000000000 0000003288a0d660
    0x0000000041f83dd0: 0000000000000000 0000003288c1c000
    0x0000000041f83de0: 0000003288c1c000 0000000041f83cb0
    0x0000000041f83df0: 00000000ccbdb240 0000000000000000
    0x0000000041f83e00: 0000000000000110 00000000418b2840
    0x0000000041f83e10: 00002ae5cca86143 0000000041f83ed0
    0x0000000041f83e20: 0000000000000000 0000000041f83f80
    0x0000000041f83e30: 0000000000000000 00000032892334f5
    0x0000000041f83e40: 00000000418b2840 0000000041f83e60
    0x0000000041f83e50: 00002ae5cca86143 00002ae5cc4dd6c9
    0x0000000041f83e60: 0000000041f83e80 00002ae5cc86e53f
    0x0000000041f83e70: 0000000041f83ed0 00000000418b2840
    0x0000000041f83e80: 0000000041f83ec0 00002ae5cc86d7ea
    0x0000000041f83e90: 0000000056223bb0 00000000561e3560
    Instructions: (pc=0x00002aaabc7005a8)
    0x00002aaabc700588: ff 25 aa 52 2a 00 68 6f 00 00 00 e9 f0 f8 ff ff
    0x00002aaabc700598: ff 25 a2 52 2a 00 68 70 00 00 00 e9 e0 f8 ff ff
    0x00002aaabc7005a8: ff 25 9a 52 2a 00 68 71 00 00 00 e9 d0 f8 ff ff
    0x00002aaabc7005b8: ff 25 92 52 2a 00 68 72 00 00 00 e9 c0 f8 ff ff
    Register to memory mapping:
    RAX=0x0000003311838510 is an unknown value
    RBX=0x0000003288c1c000: rtldglobal+0 in /lib64/ld-linux-x86-64.so.2 at 0x0000003288a00000
    RCX=0x0000000000000000 is an unknown value
    RDX=0x0000000000000032 is an unknown value
    RSP=0x0000000041f83ca0 is an unknown value
    RBP=0x0000000041f83e30 is an unknown value
    RSI=0x0000000000000000 is an unknown value
    RDI=0x0000003311838510 is an unknown value
    R8 =0x00002aaab1ed8028: <offset 0x208028> in /scratch/product/12.1.0/grid/oui/lib/linux64/liboraInstaller.so at 0x00002aaab1cd0000
    R9 =0x0000000000004aff is an unknown value
    R10=0x0000000000000000 is an unknown value
    R11=0x0000003289233750: __cxa_finalize+0 in /lib64/libc.so.6 at 0x0000003289200000
    R12=0x00002ae5cca86143: <offset 0xa86143> in /scratch/product/12.1.0/grid/jdk/jre/lib/amd64/server/libjvm.so at 0x00002ae5cc000000
    R13=0x000000005666b790 is an unknown value
    R14=0x0000000000000022 is an unknown value
    R15=0x000000000000000c is an unknown value
    Stack: [0x0000000041e84000,0x0000000041f85000], sp=0x0000000041f83ca0, free space=1023k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    [error occurred during error reporting (printing native stack), id 0xb]
    VM_Operation (0x00000000418b2840): Exit, mode: safepoint, requested by thread 0x00000000561ca800
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00000000566d1800 JavaThread "GetActiveNodesThread" daemon [_thread_blocked, id=19282, stack(0x00000000426de000,0x00000000427df000)]
    0x0000000056259000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=19205, stack(0x00000000422da000,0x00000000423db000)]
    0x0000000056257000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=19204, stack(0x00000000421d9000,0x00000000422da000)]
    0x0000000056251800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=19203, stack(0x0000000040705000,0x0000000040806000)]
    0x000000005624f000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=19202, stack(0x0000000040604000,0x0000000040705000)]
    0x000000005622d000 JavaThread "Finalizer" daemon [_thread_blocked, id=19201, stack(0x00000000420d8000,0x00000000421d9000)]
    0x000000005622b000 JavaThread "Reference Handler" daemon [_thread_blocked, id=19200, stack(0x0000000041fd7000,0x00000000420d8000)]
    0x00000000561ca800 JavaThread "main" [_thread_blocked, id=19196, stack(0x00000000417b3000,0x00000000418b4000)]
    Other Threads:
    =>0x0000000056224800 VMThread [stack: 0x0000000041e84000,0x0000000041f85000] [id=19199]
    VM state:at safepoint (shutting down)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00000000561c8f80] Threads_lock - owner thread: 0x0000000056224800
    Heap
    PSYoungGen total 42048K, used 38587K [0x00000000f5560000, 0x00000000fa780000, 0x0000000100000000)
    eden space 36096K, 91% used [0x00000000f5560000,0x00000000f75b6b90,0x00000000f78a0000)
    from space 5952K, 91% used [0x00000000f78a0000,0x00000000f7df80a8,0x00000000f7e70000)
    to space 5952K, 0% used [0x00000000fa1b0000,0x00000000fa1b0000,0x00000000fa780000)
    PSOldGen total 96000K, used 0K [0x00000000e0000000, 0x00000000e5dc0000, 0x00000000f5560000)
    object space 96000K, 0% used [0x00000000e0000000,0x00000000e0000000,0x00000000e5dc0000)
    PSPermGen total 24320K, used 24139K [0x00000000dae00000, 0x00000000dc5c0000, 0x00000000e0000000)
    object space 24320K, 99% used [0x00000000dae00000,0x00000000dc592e20,0x00000000dc5c0000)
    Code Cache [0x00002aaaaae90000, 0x00002aaaab100000, 0x00002aaaade90000)
    total_blobs=620 nmethods=309 adapters=265 free_code_cache=49025536 largest_free_block=6976
    Dynamic libraries:
    40000000-40009000 r-xp 00000000 ca:01 17574009 /scratch/product/12.1.0/grid/jdk/bin/java
    40108000-4010a000 rwxp 00008000 ca:01 17574009 /scratch/product/12.1.0/grid/jdk/bin/java
    ....

  • Word 2003 crashes when converting to a PDF in Acrobat 9.3.1

    OS                    :   Windows XP Pro SP3
    Acrobat Version:   Acrobat Pro 9.3.1. 
    M.S. Product     :  Word 2003
    Not every file will crash Word 2003 when converting to a PDF using Acrobat Pro 9.3.1 but this particular file and some others will produce the following error:
    %%[ ProductName: Distiller ]%%
    %%[Page: 1]%%
    %%[ Error: syntaxerror; OffendingCommand: )  '$ $ $ &$   ]%%
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    The co-worker was receiving the same error in Adobe Acrobat Pro 9.0 before we updated her to AAP 9.1.3.
    I have read some other threads similar to mine but none of them answer the question well enough to try anything listed there.  My co-worker can email me the Word file and I can print the file to my Adobe PDF printer just fine.  I have Acrobat Pro 7.0.
    Can anyone give me help on the cause and or solution to this problem????

    Hi,
    - syntaxerror indicates the file contains unintelligible PostScript code.
    Any discussion of postscript errors, seem to consistently point to:
    http://kb2.adobe.com/cps/328/328515.html
    A troubleshooting guide is down in the bottom third of the page.
    Be well...

  • Acrobat 10.1.3 Word Crash when converting 2007 document to PDF.

    Word 2007 Crashes with the error seen below, when using the Convert to PDF button on the Acrobat ribbon in Word.  The document may have footnotes.  I can convert other docuemnts to pdf in this fashion.  Is there an issue converting Word Docuements to PDF if they have foot notes?  I saw a post where someone had a table in a docuemnt that was causing Word to crash when it was converted to PDF in this fashion.
    Problem Event Name: BEX
    Application Name: WINWORD.EXE
    Application Version: 12.0.6545.5000
    Application Timestamp: 4c653e57
    Fault Module Name: wwlib.dll
    Fault Module Version: 12.0.6545.5000
    Fault Module Timestamp: 4c653fe2
    Exception Offset: 00cd18bc
    Exception Code: c0000409
    Exception Data: 00000000
    OS Version: 6.1.7600.2.0.0.256.4
    Locale ID: 1033

    Hi,
    I convert several Word documents having footnotes to PDF using Acrobat X and it works fine. Is it possible for you to share your Word file in which you are seeing this issue so that I can investigate? You can send me the file @ [email protected]
    Thanks,
    Love Bisht

Maybe you are looking for

  • Mouse-over image resizing in CS4

    on my website (www.kogamusic.us) i have an image that changes to another image when mousing over it. the two images are different sizes, so as it is now the second image distorts because it is constrained to the aspect ratio of the first image. My qu

  • Distributed cache

    HI, We have a server (Server 1), on which the status of the Distributed cache was in "Error Starting" state. While applying a service pack due to some issue we were unable to apply the path (Server 1) so we decided to remove the effected server from

  • How do i get panning to stop at the edge of my screen?

    For the project i am working on i will need to use panning quite a bit.  Manual panning is too slow for what i need and auto panning will capture outside of my screen.  Is there any way to set the auto panning to stop at the edge of the screen so i a

  • Module Function not being called by the planning function

    Hi all, I am having a problem with the MF assigned to the planning function of my planning level. It's not being called when executing the layout using Planning Folder. This action is suppose to be taken when saving the entries of the layout (I have

  • Menu bar accessibility severe issue

    Dear support team I am a visually impair person (20/100) vision. I am working as software architect since 27 years in the Windows and Linux world. A year ago I bought an AirPort and I fall in love with Apple product best quality: "Always work like a