Java crash running a small

In my application I start a certain command in the following way :
new TaskThread(toExecute).start();
class TaskThread extends Thread
private String task = null;
public TaskThread(String task)
super();
this.task = task;
public void run()
Usr_Config.logGui(Usr_Config.INFO, "Executing task : " + task);
try
Process process = Runtime.getRuntime().exec(task);
catch(IOException ioEx)
Usr_Config.logGui(Usr_Config.ERROR, "IOException thrown in Usr_LoadWGL::TaskThread:: task = " + task);
ioEx.printStackTrace();
After this, I create a Table GUI, used for tracing progress on previous command.
The table is initialized and created in the main thread.
After that to trace the progress on this command, I call following method :
public void followProcess()
SwingWorker loadWGLworker = new SwingWorker()
public Object construct()
return runProcess();
public void finished()
Usr_Config.logGui(Usr_Config.TRACE,"Load All Needed WGLs finished !!");
loadWGLworker.start();
Where as runProcess are some basic non-GUI commands tracing some lockfiles, ...
Some GUI updates are done in this method in the following way :
Runnable updateTableRunnable = new Runnable() { public void run() { updateTable(); } };
SwingUtilities.invokeAndWait(updateTableRunnable);
Most of the time this runs smoothly but once in a while my whole java application will crash.
I cannot reproduce what triggers this crash.
Below is the jstack trace of the dumped core-file.
Attaching to core core.22689 from executable /appl/tamtam2/develop.linux/java/bin/java, please wait...
Debugger attached successfully.
Server compiler detected.
JVM version is 1.5.0-b64
----------------- 22689 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6eef838     _ZN7Monitor4waitEil + 0x1e8
0xb6f9b0dd     ZN7Threads10destroyvmEv + 0x5d
0xb6d946f6     jni_DestroyJavaVM + 0xb6
0x08049598     ????????
0xb74a878a     ????????
----------------- 22690 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fa9     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0x69
0xb6eef6e1     _ZN7Monitor4waitEil + 0x91
0xb6d1fa77     ZN13GCTaskManager8gettaskEj + 0x77
0xb6d20cb5     _ZN12GCTaskThread3runEv + 0x125
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22691 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fa9     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0x69
0xb6eef6e1     _ZN7Monitor4waitEil + 0x91
0xb6d1fa77     ZN13GCTaskManager8gettaskEj + 0x77
0xb6d20cb5     _ZN12GCTaskThread3runEv + 0x125
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22692 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fa9     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0x69
0xb6eef6e1     _ZN7Monitor4waitEil + 0x91
0xb6d1fa77     ZN13GCTaskManager8gettaskEj + 0x77
0xb6d20cb5     _ZN12GCTaskThread3runEv + 0x125
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22693 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fa9     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0x69
0xb6eef6e1     _ZN7Monitor4waitEil + 0x91
0xb6d1fa77     ZN13GCTaskManager8gettaskEj + 0x77
0xb6d20cb5     _ZN12GCTaskThread3runEv + 0x125
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22694 -----------------
0xb75d545b     __pthread_cond_timedwait + 0xdb
0x1cff5700     ????????
sun.jvm.hotspot.debugger.UnalignedAddressException: Trying to read at address: 0x44180ea6 with alignment: 4
     at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal$1.checkAlignment(LinuxDebuggerLocal.java:163)
     at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.readCInteger(LinuxDebuggerLocal.java:451)
     at sun.jvm.hotspot.debugger.DebuggerBase.readAddressValue(DebuggerBase.java:425)
     at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.readAddress(LinuxDebuggerLocal.java:405)
     at sun.jvm.hotspot.debugger.linux.LinuxAddress.getAddressAt(LinuxAddress.java:56)
     at sun.jvm.hotspot.debugger.linux.x86.LinuxX86CFrame.sender(LinuxX86CFrame.java:43)
     at sun.jvm.hotspot.tools.PStack.run(PStack.java:129)
     at sun.jvm.hotspot.tools.JStack.run(JStack.java:41)
     at sun.jvm.hotspot.tools.Tool.start(Tool.java:204)
     at sun.jvm.hotspot.tools.JStack.main(JStack.java:58)
----------------- 22695 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6efd42d     _ZN13ObjectMonitor4waitExiP6Thread + 0x99d
0xb6f7b3b7     _ZN18ObjectSynchronizer4waitE6HandlexP6Thread + 0x47
0xb6dc83de     ????????
0xb1b700da     * java.lang.Object.wait(long) bci:0 (Interpreted frame)
0xb1b68aeb     * java.lang.Object.wait() bci:2 line:474 (Interpreted frame)
0xb1b68aeb     * java.lang.ref.Reference$ReferenceHandler.run() bci:46 line:116 (Interpreted frame)
0xb1b661a2     <StubRoutines>
0xb6d732dc     ZN9JavaCalls11callhelperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread + 0x1bc
0xb6f072d8     ZN2os20osexception_wrapperEPFvP9JavaValueP12methodHandleP17JavaCallArgumentsP6ThreadES1_S3_S5_S7_ + 0x18
0xb6d72b35     ZN9JavaCalls12callvirtualEP9JavaValue11KlassHandle12symbolHandleS3_P17JavaCallArgumentsP6Thread + 0xd5
0xb6d72bce     ZN9JavaCalls12callvirtualEP9JavaValue6Handle11KlassHandle12symbolHandleS4_P6Thread + 0x5e
0xb6ddfe85     Z12threadentryP10JavaThreadP6Thread + 0xb5
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22696 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6efd42d     _ZN13ObjectMonitor4waitExiP6Thread + 0x99d
0xb6f7b3b7     _ZN18ObjectSynchronizer4waitE6HandlexP6Thread + 0x47
0xb6dc83de     ????????
0xb1b700da     * java.lang.Object.wait(long) bci:0 (Interpreted frame)
0xb1b68aeb     * java.lang.ref.ReferenceQueue.remove(long) bci:44 line:116 (Interpreted frame)
0xb1b68a14     * java.lang.ref.ReferenceQueue.remove() bci:2 line:132 (Interpreted frame)
0xb1b68a14     * java.lang.ref.Finalizer$FinalizerThread.run() bci:3 line:159 (Interpreted frame)
0xb1b661a2     <StubRoutines>
0xb6d732dc     ZN9JavaCalls11callhelperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread + 0x1bc
0xb6f072d8     ZN2os20osexception_wrapperEPFvP9JavaValueP12methodHandleP17JavaCallArgumentsP6ThreadES1_S3_S5_S7_ + 0x18
0xb6d72b35     ZN9JavaCalls12callvirtualEP9JavaValue11KlassHandle12symbolHandleS3_P17JavaCallArgumentsP6Thread + 0xd5
0xb6d72bce     ZN9JavaCalls12callvirtualEP9JavaValue6Handle11KlassHandle12symbolHandleS4_P6Thread + 0x5e
0xb6ddfe85     Z12threadentryP10JavaThreadP6Thread + 0xb5
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22697 -----------------
0xb75d7c5e     __libc_accept + 0x3e
0xa53471b0     ????????
0xb6ac9f37     acceptThread + 0x57
0xb6e8dc7b     ZN16JvmtiAgentThread22startfunction_wrapperEP10JavaThreadP6Thread + 0xfb
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22698 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6efdfa7     ZN13ObjectMonitor8rawwaitExiP6Thread + 0x397
0xb6e7a593     _ZN8JvmtiEnv14RawMonitorWaitEP15JvmtiRawMonitorx + 0x63
0xb6e36ab3     jvmti_RawMonitorWait + 0x93
0xb6ace066     debugMonitorWait + 0x46
0xb6abd5fe     dequeueCommand + 0x4e
0xb6abe525     commandLoop + 0x65
0xb6e8dc7b     ZN16JvmtiAgentThread22startfunction_wrapperEP10JavaThreadP6Thread + 0xfb
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22699 -----------------
0xb75d701b     __new_sem_wait + 0x4b
0xb6f054ed     ZN2os11signalwaitEv + 0xd
0xb6f02a05     Z19signalthread_entryP10JavaThreadP6Thread + 0x85
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22700 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6eef838     _ZN7Monitor4waitEil + 0x1e8
0xb6cbe0ae     _ZN12CompileQueue3getEv + 0x6e
0xb6cc010f     ZN13CompileBroker20compilerthread_loopEv + 0x1af
0xb6f9c376     Z21compilerthread_entryP10JavaThreadP6Thread + 0x16
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22701 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6eef838     _ZN7Monitor4waitEil + 0x1e8
0xb6cbe0ae     _ZN12CompileQueue3getEv + 0x6e
0xb6cc010f     ZN13CompileBroker20compilerthread_loopEv + 0x1af
0xb6f9c376     Z21compilerthread_entryP10JavaThreadP6Thread + 0x16
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22702 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6eef838     _ZN7Monitor4waitEil + 0x1e8
0xb6cbe0ae     _ZN12CompileQueue3getEv + 0x6e
0xb6cc010f     ZN13CompileBroker20compilerthread_loopEv + 0x1af
0xb6f9c376     Z21compilerthread_entryP10JavaThreadP6Thread + 0x16
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22703 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6eef6e1     _ZN7Monitor4waitEil + 0x91
0xb6ec718a     ZN17LowMemoryDetector32lowmemory_detector_thread_entryEP10JavaThreadP6Thread + 0x8a
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22704 -----------------
0xb75d545b     __pthread_cond_timedwait + 0xdb
0x212b12d8     ????????
sun.jvm.hotspot.debugger.UnalignedAddressException: Trying to read at address: 0x44180ea5 with alignment: 4
     at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal$1.checkAlignment(LinuxDebuggerLocal.java:163)
     at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.readCInteger(LinuxDebuggerLocal.java:451)
     at sun.jvm.hotspot.debugger.DebuggerBase.readAddressValue(DebuggerBase.java:425)
     at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.readAddress(LinuxDebuggerLocal.java:405)
     at sun.jvm.hotspot.debugger.linux.LinuxAddress.getAddressAt(LinuxAddress.java:56)
     at sun.jvm.hotspot.debugger.linux.x86.LinuxX86CFrame.sender(LinuxX86CFrame.java:43)
     at sun.jvm.hotspot.tools.PStack.run(PStack.java:129)
     at sun.jvm.hotspot.tools.JStack.run(JStack.java:41)
     at sun.jvm.hotspot.tools.Tool.start(Tool.java:204)
     at sun.jvm.hotspot.tools.JStack.main(JStack.java:58)
----------------- 22705 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6efd42d     _ZN13ObjectMonitor4waitExiP6Thread + 0x99d
0xb6f7b3b7     _ZN18ObjectSynchronizer4waitE6HandlexP6Thread + 0x47
0xb6dc83de     ????????
0xb1b700da     * java.lang.Object.wait(long) bci:0 (Interpreted frame)
0xb1b68aeb     * java.lang.ref.ReferenceQueue.remove(long) bci:44 line:116 (Interpreted frame)
0xb1b68a14     * java.lang.ref.ReferenceQueue.remove() bci:2 line:132 (Interpreted frame)
0xb1b68a14     * sun.java2d.Disposer.run() bci:3 line:107 (Interpreted frame)
0xb1b68df1     * java.lang.Thread.run() bci:11 line:595 (Interpreted frame)
0xb1b661a2     <StubRoutines>
0xb6d732dc     ZN9JavaCalls11callhelperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread + 0x1bc
0xb6f072d8     ZN2os20osexception_wrapperEPFvP9JavaValueP12methodHandleP17JavaCallArgumentsP6ThreadES1_S3_S5_S7_ + 0x18
0xb6d72b35     ZN9JavaCalls12callvirtualEP9JavaValue11KlassHandle12symbolHandleS3_P17JavaCallArgumentsP6Thread + 0xd5
0xb6d72bce     ZN9JavaCalls12callvirtualEP9JavaValue6Handle11KlassHandle12symbolHandleS4_P6Thread + 0x5e
0xb6ddfe85     Z12threadentryP10JavaThreadP6Thread + 0xb5
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22706 -----------------
0xb75666cd     __libc_poll + 0x7d
0x4080de15     ????????
0x4080dcc7     ????????
0x4080dd8d     ????????
0xb1b700da     * sun.awt.X11.XToolkit.waitForEvents() bci:0 (Interpreted frame)
0xb1b68aeb     * sun.awt.X11.XToolkit.run(boolean) bci:64 line:463 (Interpreted frame)
0xb1b68aeb     * sun.awt.X11.XToolkit.run() bci:5 line:438 (Interpreted frame)
0xb1b68df1     * java.lang.Thread.run() bci:11 line:595 (Interpreted frame)
0xb1b661a2     <StubRoutines>
0xb6d732dc     ZN9JavaCalls11callhelperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread + 0x1bc
0xb6f072d8     ZN2os20osexception_wrapperEPFvP9JavaValueP12methodHandleP17JavaCallArgumentsP6ThreadES1_S3_S5_S7_ + 0x18
0xb6d72b35     ZN9JavaCalls12callvirtualEP9JavaValue11KlassHandle12symbolHandleS3_P17JavaCallArgumentsP6Thread + 0xd5
0xb6d72bce     ZN9JavaCalls12callvirtualEP9JavaValue6Handle11KlassHandle12symbolHandleS4_P6Thread + 0x5e
0xb6ddfe85     Z12threadentryP10JavaThreadP6Thread + 0xb5
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22711 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6efd42d     _ZN13ObjectMonitor4waitExiP6Thread + 0x99d
0xb6f7b3b7     _ZN18ObjectSynchronizer4waitE6HandlexP6Thread + 0x47
0xb6dc83de     ????????
0xb1b700da     * java.lang.Object.wait(long) bci:0 (Interpreted frame)
0xb1b68aeb     * java.lang.Object.wait() bci:2 line:474 (Interpreted frame)
0xb1b68aeb     * sun.awt.AWTAutoShutdown.run() bci:32 line:259 (Interpreted frame)
0xb1b68df1     * java.lang.Thread.run() bci:11 line:595 (Interpreted frame)
0xb1b661a2     <StubRoutines>
0xb6d732dc     ZN9JavaCalls11callhelperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread + 0x1bc
0xb6f072d8     ZN2os20osexception_wrapperEPFvP9JavaValueP12methodHandleP17JavaCallArgumentsP6ThreadES1_S3_S5_S7_ + 0x18
0xb6d72b35     ZN9JavaCalls12callvirtualEP9JavaValue11KlassHandle12symbolHandleS3_P17JavaCallArgumentsP6Thread + 0xd5
0xb6d72bce     ZN9JavaCalls12callvirtualEP9JavaValue6Handle11KlassHandle12symbolHandleS4_P6Thread + 0x5e
0xb6ddfe85     Z12threadentryP10JavaThreadP6Thread + 0xb5
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22714 -----------------
0xb75d88b1     __libc_waitpid + 0x41
0xb1b700da     * java.lang.UNIXProcess.waitForProcessExit(int) bci:0 (Interpreted frame)
0xb1b68a3f     * java.lang.UNIXProcess.access$900(java.lang.UNIXProcess, int) bci:2 line:20 (Interpreted frame)
0xb1b68a3f     * java.lang.UNIXProcess$1$1.run() bci:165 line:132 (Interpreted frame)
0xb1b661a2     <StubRoutines>
0xb6d732dc     ZN9JavaCalls11callhelperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread + 0x1bc
0xb6f072d8     ZN2os20osexception_wrapperEPFvP9JavaValueP12methodHandleP17JavaCallArgumentsP6ThreadES1_S3_S5_S7_ + 0x18
0xb6d72b35     ZN9JavaCalls12callvirtualEP9JavaValue11KlassHandle12symbolHandleS3_P17JavaCallArgumentsP6Thread + 0xd5
0xb6d72bce     ZN9JavaCalls12callvirtualEP9JavaValue6Handle11KlassHandle12symbolHandleS4_P6Thread + 0x5e
0xb6ddfe85     Z12threadentryP10JavaThreadP6Thread + 0xb5
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22725 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6efd42d     _ZN13ObjectMonitor4waitExiP6Thread + 0x99d
0xb6f7b3b7     _ZN18ObjectSynchronizer4waitE6HandlexP6Thread + 0x47
0xb6dc83de     ????????
0xb1b700da     * java.lang.Object.wait(long) bci:0 (Interpreted frame)
0xb1b68aeb     * javax.swing.TimerQueue.run() bci:14 line:233 (Interpreted frame)
0xb1b68df1     * java.lang.Thread.run() bci:11 line:595 (Interpreted frame)
0xb1b661a2     <StubRoutines>
0xb6d732dc     ZN9JavaCalls11callhelperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread + 0x1bc
0xb6f072d8     ZN2os20osexception_wrapperEPFvP9JavaValueP12methodHandleP17JavaCallArgumentsP6ThreadES1_S3_S5_S7_ + 0x18
0xb6d72b35     ZN9JavaCalls12callvirtualEP9JavaValue11KlassHandle12symbolHandleS3_P17JavaCallArgumentsP6Thread + 0xd5
0xb6d72bce     ZN9JavaCalls12callvirtualEP9JavaValue6Handle11KlassHandle12symbolHandleS4_P6Thread + 0x5e
0xb6ddfe85     Z12threadentryP10JavaThreadP6Thread + 0xb5
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 3217 -----------------
0xb75d88b1     __libc_waitpid + 0x41
0xb1b700da     * java.lang.UNIXProcess.waitForProcessExit(int) bci:0 (Interpreted frame)
0xb1b68a3f     * java.lang.UNIXProcess.access$900(java.lang.UNIXProcess, int) bci:2 line:20 (Interpreted frame)
0xb1b68a3f     * java.lang.UNIXProcess$1$1.run() bci:165 line:132 (Interpreted frame)
0xb1b661a2     <StubRoutines>
0xb6d732dc     ZN9JavaCalls11callhelperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread + 0x1bc
0xb6f072d8     ZN2os20osexception_wrapperEPFvP9JavaValueP12methodHandleP17JavaCallArgumentsP6ThreadES1_S3_S5_S7_ + 0x18
0xb6d72b35     ZN9JavaCalls12callvirtualEP9JavaValue11KlassHandle12symbolHandleS3_P17JavaCallArgumentsP6Thread + 0xd5
0xb6d72bce     ZN9JavaCalls12callvirtualEP9JavaValue6Handle11KlassHandle12symbolHandleS4_P6Thread + 0x5e
0xb6ddfe85     Z12threadentryP10JavaThreadP6Thread + 0xb5
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 3393 -----------------
0xb75d526d     __pthread_cond_wait + 0x7d
0xb6f06fee     ZN2os5Linux14safecond_waitEP14pthread_cond_tP15pthread_mutex_t + 0xae
0xb6efd42d     _ZN13ObjectMonitor4waitExiP6Thread + 0x99d
0xb6f7b3b7     _ZN18ObjectSynchronizer4waitE6HandlexP6Thread + 0x47
0xb6dc83de     ????????
0xb1b700da     * java.lang.Object.wait(long) bci:0 (Interpreted frame)
0xb1b68aeb     * java.lang.Object.wait() bci:2 line:474 (Interpreted frame)
0xb1b68aeb     * java.awt.EventQueue.invokeAndWait(java.lang.Runnable) bci:50 line:846 (Interpreted frame)
0xb1b68aeb     * javax.swing.SwingUtilities.invokeAndWait(java.lang.Runnable) bci:1 line:1257 (Interpreted frame)
0xb1b68aeb     * com.alcatel.tamtam.main.Usr_FollowWGLProcess.runProcess() bci:355 line:891 (Interpreted frame)
0xb1b68a14     * com.alcatel.tamtam.main.Usr_FollowWGLProcess$2.construct() bci:4 line:798 (Interpreted frame)
0xb1b68a14     * com.alcatel.tamtam.main.SwingWorker$2.run() bci:8 line:109 (Interpreted frame)
0xb1b68df1     * java.lang.Thread.run() bci:11 line:595 (Interpreted frame)
0xb1b661a2     <StubRoutines>
0xb6d732dc     ZN9JavaCalls11callhelperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread + 0x1bc
0xb6f072d8     ZN2os20osexception_wrapperEPFvP9JavaValueP12methodHandleP17JavaCallArgumentsP6ThreadES1_S3_S5_S7_ + 0x18
0xb6d72b35     ZN9JavaCalls12callvirtualEP9JavaValue11KlassHandle12symbolHandleS3_P17JavaCallArgumentsP6Thread + 0xd5
0xb6d72bce     ZN9JavaCalls12callvirtualEP9JavaValue6Handle11KlassHandle12symbolHandleS4_P6Thread + 0x5e
0xb6ddfe85     Z12threadentryP10JavaThreadP6Thread + 0xb5
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98
----------------- 22712 -----------------
0xb74bacdf     __GI_raise + 0x4f
0xb74bc40d     __GI_abort + 0xfd
0xa00214f7     ????????
0xa0021544     ????????
0xa00216b6     ????????
0xa3cd7d26     ????????
0xa3cd5a28     ????????
0xa3ccc5d0     ????????
0xa3cd4f72     ????????
0xa46ee686     Z20tryprevious_handleriP7siginfoPv + 0x3e
0xa46ee8b3     Z18memsignal_handleriP7siginfoPv + 0x167
0xb75d8e40     ????????
<interpreter> return entry points
<interpreter> return entry points
<interpreter> return entry points
<interpreter> return entry points
<interpreter> return entry points
<interpreter> return entry points
<interpreter> return entry points
<interpreter> return entry points
0xb1b661a2     <StubRoutines>
0xb6d732dc     ZN9JavaCalls11callhelperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread + 0x1bc
0xb6f072d8     ZN2os20osexception_wrapperEPFvP9JavaValueP12methodHandleP17JavaCallArgumentsP6ThreadES1_S3_S5_S7_ + 0x18
0xb6d72b35     ZN9JavaCalls12callvirtualEP9JavaValue11KlassHandle12symbolHandleS3_P17JavaCallArgumentsP6Thread + 0xd5
0xb6d72bce     ZN9JavaCalls12callvirtualEP9JavaValue6Handle11KlassHandle12symbolHandleS4_P6Thread + 0x5e
0xb6ddfe85     Z12threadentryP10JavaThreadP6Thread + 0xb5
0xb6f96dbd     _ZN10JavaThread3runEv + 0x11d
0xb6f07de8     Z6startP6Thread + 0x178
0xb75d2de8     start_thread + 0x98

[Bento|http://www.filemaker.co.uk/products/bento/iphone.html] may be something that could do what you require (maybe a little expensive for what you're trying to achieve). Alternatively, an application like [CSV Touch for iPhone|http://itunes.apple.com/gb/app/csv-touch/id286776951?mt=8] might just be what the doctor ordered. (sorry, couldn't resist!)

Similar Messages

  • HT3986 I have a pc that is one year old and the hard drive is crashing we use it only for quick books to run our small business I would like to buy amac and install the OS  forom the pc to the apple product i will not use the pc after can i use the OS off

    I have a pc that is one year old and the hard drive is crashing we use it only for quick books to run our small business I would like to buy a macmini and install the OS  from the pc to the apple product i will not use the pc after, can i use the OS off the pc or do I have to purchase another?

    I think you can get Windows 7 for around $99. Install the 64bit version as the 32bit version will not be able to use all your new computer's ram if you have more than about 3.5gb.
    Back up your quick books data now before the old hard drive dies. You can copy your data over to your new installation of Windows and quick books.
    By the way, there is quick books for Mac http://quickbooks.intuit.com/mac/?sc=BNR-000-COR-quickbooks&priorityCode=4902000 000&cid=ppc_google_QB-Intuit-Core-Brand-Mac_quick-books-for-mac_exact&site=&ad_i d=9347918288&raw_keyword=quick%20books%20for%20mac
    So you may not need to install Windows at all.

  • Error while running this small Application. Please Guide

    Hello Folks
    I am getting this error when I run this small application.
    Can some one please tell me what is the problem?
    Attached is the ERROR and the CLASS.
    The ERROR is:
    java.lang.NullPointerException
         at javax.swing.plaf.basic.BasicTabbedPaneUI$TabbedPaneLayout.calculateSize(BasicTabbedPaneUI.java:1293)
         at javax.swing.plaf.basic.BasicTabbedPaneUI$TabbedPaneLayout.preferredLayoutSize(BasicTabbedPaneUI.java:1272)
         at java.awt.Container.preferredSize(Container.java:836)
         at java.awt.Container.getPreferredSize(Container.java:820)
         at javax.swing.JComponent.getPreferredSize(JComponent.java:1044)
    CLASS:
    public class BlankPaneDemo {
    private JTabbedPane tabbedPane;
    private JFrame dlframe;
    // Constructor.
    public BlankPaneDemo() {
    dlframe = new JFrame("The Plumes Proxy ");
    tabbedPane = new JTabbedPane(SwingConstants.LEFT);
    tabbedPane.setBackground(Color.blue);
    tabbedPane.setForeground(Color.white);
    // Calls a method that adds individual tabs to the
    // tabbedpane object.
    populateTabbedPane();
    dlframe.getContentPane().add(tabbedPane);
    dlframe.pack();
    dlframe.setSize(765, 690);
    dlframe.setBackground(Color.white);
    dlframe.setVisible(true);
    } // End Constructor.
    private void populateTabbedPane()
    tabbedPane.addTab("Welcome",
    null,
    null,
    "Welcome Options");
    public static void main(String[] args)
    BlankPaneDemo bpd = new BlankPaneDemo();
    } // End Class.

    Which version of jdk are you using ?
    in jdk1.4 it is working fine on my system,
    May be there is problem with passing null component in statement :
    tabbedPane.addTab("Welcome", null, null, "Welcome Options");

  • Java crashes help please

    Hi I'm looking at a ADSL speed test website that used a java applet.
    I have the latest java release and I'm running XP Pro SP2
    Jave crashes and IE closes and i then have a file appear on my desktop with the following text:
    Any help would be great. Thanks
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_FLT_STACK_CHECK (0xc0000092) at pc=0x0804d0a9, pid=404, tid=3288
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_02-b06 mixed mode)
    # Problematic frame:
    # v ~RuntimeStub::resolve_virtual_call
    # 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 (0x03ff9c00): JavaThread "main" [_thread_in_Java, id=3288]
    siginfo: ExceptionCode=0xc0000092, ExceptionInformation=0x00000000 0x01b73ac4
    Registers:
    EAX=0xffffffff, EBX=0x000008c5, ECX=0x30317f18, EDX=0x3031a8d8
    ESP=0x01b73a58, EBP=0x01b73b68, ESI=0x30317f18, EDI=0x000008c5
    EIP=0x0804d0a9, EFLAGS=0x00010212
    Top of Stack: (sp=0x01b73a58)
    0x01b73a58: ffff1372 ffff4022 ffffffff 07f95df7
    0x01b73a68: 011c001b 01b73b40 ffff0023 f72053d1
    0x01b73a78: 884440e0 4b08f50c 48a8e6b0 00cce6b0
    0x01b73a88: 804f4049 00000080 00000002 00020000
    0x01b73a98: 00000000 b714e794 b714e788 0000f50c
    0x01b73aa8: 5be00000 4005c805 00000000 80000000
    0x01b73ab8: 00004002 00000000 3ffd8000 01b73b0c
    0x01b73ac8: 01b73b24 00000000 01b73b1c 00000000
    Instructions: (pc=0x0804d0a9)
    0x0804d099: 00 00 83 ec 6c dd 34 24 9b dd 24 24 dd 5c 24 6c
    0x0804d0a9: dd 5c 24 74 dd 5c 24 7c dd 9c 24 84 00 00 00 dd
    Stack: [0x01a80000,0x01b80000), sp=0x01b73a58, free space=974k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    v ~RuntimeStub::resolve_virtual_call
    J java.util.Properties$LineReader.readLine()I
    j java.util.Properties.load0(Ljava/util/Properties$LineReader;)V+7
    j java.util.Properties.load(Ljava/io/InputStream;)V+10
    j java.util.logging.LogManager.readConfiguration(Ljava/io/InputStream;)V+13
    j java.util.logging.LogManager.readConfiguration()V+181
    j java.util.logging.LogManager$2.run()Ljava/lang/Object;+4
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0a10f400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3496]
    0x0a10a400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1080]
    0x0a109400 JavaThread "Attach Listener" daemon [_thread_blocked, id=2996]
    0x0a108400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=588]
    0x0a0fa800 JavaThread "Finalizer" daemon [_thread_blocked, id=3044]
    0x0a0f6400 JavaThread "Reference Handler" daemon [_thread_blocked, id=1452]
    =>0x03ff9c00 JavaThread "main" [_thread_in_Java, id=3288]
    Other Threads:
    0x0a0f1800 VMThread [id=2560]
    0x0a110800 WatcherThread [id=384]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 960K, used 196K [0x302f0000, 0x303f0000, 0x30a50000)
    eden
    [error occurred during error reporting, step 190, id 0xc0000092]
    Dynamic libraries:
    0x00400000 - 0x0049b000      C:\Program Files\Internet Explorer\iexplore.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x7e410000 - 0x7e4a0000      C:\WINDOWS\system32\USER32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\SHELL32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x42cf0000 - 0x42e14000      C:\WINDOWS\system32\urlmon.dll
    0x77120000 - 0x771ab000      C:\WINDOWS\system32\OLEAUT32.dll
    0x42990000 - 0x429d5000      C:\WINDOWS\system32\iertutil.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x10000000 - 0x10007000      C:\WINDOWS\system32\ASAPHook.dll
    0x773d0000 - 0x774d3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x5d090000 - 0x5d12a000      C:\WINDOWS\system32\comctl32.dll
    0x42ef0000 - 0x434bb000      C:\WINDOWS\system32\IEFRAME.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\UxTheme.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x20000000 - 0x202c5000      C:\WINDOWS\system32\xpsp2res.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x5dff0000 - 0x5e01f000      C:\WINDOWS\system32\IEUI.dll
    0x76380000 - 0x76385000      C:\WINDOWS\system32\MSIMG32.dll
    0x4ec50000 - 0x4edf3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2180_x-ww_522f9f82\gdiplus.dll
    0x47060000 - 0x47081000      C:\WINDOWS\system32\xmllite.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\apphelp.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x746f0000 - 0x7471a000      C:\WINDOWS\system32\msimtf.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x605d0000 - 0x605d9000      C:\WINDOWS\system32\mslbui.dll
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x6bd10000 - 0x6bd20000      C:\PROGRA~1\MICROS~2\Office12\msohevi.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.163_x-ww_681e29fb\MSVCR80.dll
    0x5c2c0000 - 0x5c300000      C:\WINDOWS\ime\sptip.dll
    0x74c80000 - 0x74cac000      C:\WINDOWS\system32\OLEACC.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x01480000 - 0x01491000      C:\WINDOWS\IME\SPGRMR.DLL
    0x7d1e0000 - 0x7d49e000      C:\WINDOWS\system32\msi.dll
    0x014a0000 - 0x014fb000      C:\Program Files\Common Files\Microsoft Shared\INK\SKCHUI.DLL
    0x61930000 - 0x6197a000      C:\Program Files\Internet Explorer\ieproxy.dll
    0x75e90000 - 0x75f40000      C:\WINDOWS\system32\SXS.DLL
    0x42c10000 - 0x42cdf000      C:\WINDOWS\system32\WININET.dll
    0x01e00000 - 0x01e09000      C:\WINDOWS\system32\Normaliz.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\system32\MLANG.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\ws2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x02fb0000 - 0x0332f000      c:\program files\google\googletoolbar2.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\imagehlp.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\WSOCK32.dll
    0x74980000 - 0x74a93000      C:\WINDOWS\system32\msxml3.dll
    0x59a60000 - 0x59b01000      C:\WINDOWS\system32\DBGHELP.DLL
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\netapi32.dll
    0x708f0000 - 0x70903000      C:\WINDOWS\system32\asycfilt.dll
    0x76990000 - 0x769b5000      C:\WINDOWS\system32\ntshrui.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x76ee0000 - 0x76f1c000      C:\WINDOWS\system32\RASAPI32.dll
    0x76e90000 - 0x76ea2000      C:\WINDOWS\system32\rasman.dll
    0x76eb0000 - 0x76edf000      C:\WINDOWS\system32\TAPI32.dll
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x71b20000 - 0x71b32000      C:\WINDOWS\system32\MPR.dll
    0x75f60000 - 0x75f67000      C:\WINDOWS\System32\drprov.dll
    0x71c10000 - 0x71c1e000      C:\WINDOWS\System32\ntlanman.dll
    0x71cd0000 - 0x71ce7000      C:\WINDOWS\System32\NETUI0.dll
    0x71c90000 - 0x71cd0000      C:\WINDOWS\System32\NETUI1.dll
    0x71c80000 - 0x71c87000      C:\WINDOWS\System32\NETRAP.dll
    0x71bf0000 - 0x71c03000      C:\WINDOWS\System32\SAMLIB.dll
    0x77c70000 - 0x77c93000      C:\WINDOWS\system32\msv1_0.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x75f70000 - 0x75f79000      C:\WINDOWS\System32\davclnt.dll
    0x10930000 - 0x10979000      C:\WINDOWS\system32\PortableDeviceApi.dll
    0x73ba0000 - 0x73bb3000      C:\WINDOWS\system32\sti.dll
    0x74ae0000 - 0x74ae7000      C:\WINDOWS\system32\CFGMGR32.dll
    0x722b0000 - 0x722b5000      C:\WINDOWS\system32\sensapi.dll
    0x03f10000 - 0x03f20000      C:\Program Files\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelper.dll
    0x03f30000 - 0x03f4f000      C:\WINDOWS\system32\dla\tfswshx.dll
    0x03f50000 - 0x03f5f000      C:\WINDOWS\system32\tfswapi.dll
    0x03f60000 - 0x03f9b000      C:\WINDOWS\system32\dla\tfswcres.dll
    0x6d7c0000 - 0x6d839000      C:\Program Files\Java\jre1.6.0_02\bin\ssv.dll
    0x7c340000 - 0x7c396000      C:\Program Files\Java\jre1.6.0_02\bin\MSVCR71.dll
    0x29500000 - 0x29551000      C:\Program Files\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll
    0x0ffd0000 - 0x0fff8000      C:\WINDOWS\system32\rsaenh.dll
    0x27500000 - 0x275c9000      C:\Program Files\Common Files\Microsoft Shared\Windows Live\msidcrl40.dll
    0x75e60000 - 0x75e73000      C:\WINDOWS\system32\cryptnet.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x4d4f0000 - 0x4d548000      C:\WINDOWS\system32\WINHTTP.dll
    0x04780000 - 0x04790000      C:\Program Files\HPQ\IAM\Bin\ItIeAddIN.dll
    0x04790000 - 0x047f9000      C:\Program Files\HPQ\IAM\Bin\ItMsg.dll
    0x7c000000 - 0x7c054000      C:\WINDOWS\system32\MSVCR70.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x71d40000 - 0x71d5c000      C:\WINDOWS\system32\actxprxy.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x435d0000 - 0x43941000      C:\WINDOWS\system32\mshtml.dll
    0x746c0000 - 0x746e9000      C:\WINDOWS\system32\msls31.dll
    0x43560000 - 0x435c0000      C:\WINDOWS\system32\ieapfltr.dll
    0x77690000 - 0x776b1000      C:\WINDOWS\system32\NTMARTA.DLL
    0x050a0000 - 0x050f7000      C:\Program Files\HPQ\IAM\Bin\ItSSO.dll
    0x040e0000 - 0x04103000      C:\Program Files\HPQ\IAM\Bin\ItVCL.dll
    0x04b00000 - 0x04b08000      C:\Program Files\HPQ\IAM\Bin\ItRpc.dll
    0x04b60000 - 0x04b69000      C:\Program Files\HPQ\IAM\Bin\ItClient.dll
    0x63380000 - 0x633f8000      c:\windows\system32\jscript.dll
    0x58760000 - 0x58792000      C:\WINDOWS\system32\iepeers.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x42b90000 - 0x42c07000      C:\WINDOWS\system32\mshtmled.dll
    0x1b000000 - 0x1b00c000      C:\WINDOWS\system32\ImgUtil.dll
    0x1b060000 - 0x1b06e000      C:\WINDOWS\system32\pngfilt.dll
    0x05800000 - 0x0581c000      C:\Program Files\HPQ\IAM\Bin\Aswallet.dll
    0x42aa0000 - 0x42b12000      C:\WINDOWS\system32\msfeeds.dll
    0x061d0000 - 0x0622b000      C:\Program Files\Common Files\Adobe\Acrobat\ActiveX\PDFShell.dll
    0x72d20000 - 0x72d29000      C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000      C:\WINDOWS\system32\msacm32.drv
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE16~2.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE16~2.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.6.0_02 -Djavaplugin.nodotversion=160_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE16~2.0_0 -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE16~2.0_0\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE16~2.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE16~2.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.6.0_02 -Djavaplugin.nodotversion=160_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE16~2.0_0
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    CLASSPATH=.;C:\Program Files\Java\jre1.5.0_06\lib\ext\QTJava.zip
    PATH=C:\PROGRA~1\Java\JRE16~2.0_0\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\HPQ\IAM\bin;C:\Program Files\QuickTime\QTSystem\;.
    USERNAME=hrowinski
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 8, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (1 cores per cpu, 1 threads per core) family 6 model 13 stepping 8, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1572208k(878116k free), swap 2204864k(1714828k free)
    vm_info: Java HotSpot(TM) Client VM (1.6.0_02-b06) for windows-x86, built on Jul 12 2007 01:16:14 by "java_re" with unknown MS VC++:1310

    Thanks for the help so far, but I still have a problem with my Merge Sort. The sort uses up all the program's memory and throws an "OutOfMemoryError".
    Here is the Merge Sort:
    //This is the merge sort and its methods!!!
         public void mergeSort()
              if(line.length<=1)
                   return;
                   int[] half1=new int[line.length/2];
                   int[] half2=new int[line.length-half1.length];
                   System.arraycopy(line, 0, half1, 0, half1.length);
                   System.arraycopy(line, half1.length, half2, 0, half2.length);
                   Sort s1=new Sort(half1);
                   Sort s2=new Sort(half2);
                   s1.mergeSort();
                   s2.mergeSort();
                   merge(half1, half2);
         public void merge(int[] a, int[] b)
              int first=0;
              int second=0;
              int c=0;
              while((first<a.length)&&(second<b.length))
                   if(a[first]<b[second])
                        line[c]=a[first];
                        first++;
                   else
                        line[c]= b[second];
                        second++;
                   c++;
              System.arraycopy(a, first, line, c, a.length-first);
              System.arraycopy(b, second, line, c, b.length-second);
         }

  • My safari keeps crashing running 10.5.8

    my safari keeps crashing running 10.5.8 any help would be appreciated.

    Hi same problem.  Crash report below
    Process:    
    Safari [244]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    6.0.2 (8536.26.17)
    Build Info: 
    WebBrowser-7536026017000000~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [170]
    User ID:    
    501
    Date/Time:  
    2013-01-21 08:01:06.628 +0000
    OS Version: 
    Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:     
    11774 sec
    Crashes Since Last Report:      
    2
    Per-App Interval Since Last Report:  4 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                 
    F8E892D7-BA57-1C9A-5C1A-175EDE24FF59
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'data parameter is nil'
    terminate called throwing an exception
    abort() called
    Application Specific Backtrace 1:
    0   CoreFoundation                 
    0x00007fff909f00a6 __exceptionPreprocess + 198
    1   libobjc.A.dylib                
    0x00007fff8c6103f0 objc_exception_throw + 43
    2   CoreFoundation                 
    0x00007fff909efe7c +[NSException raise:format:] + 204
    3   Foundation                     
    0x00007fff937844ae +[NSPropertyListSerialization propertyListWithData:options:format:error:] + 67
    4   WebCore                        
    0x00000001027891cb _ZN7WebCore8Settings29initializeDefaultFontFamiliesEv + 587
    5   WebCore                        
    0x0000000102788458 _ZN7WebCore8SettingsC2EPNS_4PageE + 456
    6   WebCore                        
    0x0000000102788488 _ZN7WebCore8Settings6createEPNS_4PageE + 40
    7   WebCore                        
    0x0000000101cf00dc _ZN7WebCore4PageC2ERNS0_11PageClientsE + 252
    8   WebKit                         
    0x00000001017b90bf -[WebView(WebPrivate) _commonInitializationWithFrameName:groupName:] + 1215
    9   WebKit                         
    0x0000000101703b73 -[WebView(WebPrivate) _initWithFrame:frameName:groupName:usesDocumentViews:] + 195
    10  WebKit                         
    0x00000001017039af -[WebView initWithFrame:frameName:groupName:] + 255
    11  Safari                         
    0x00007fff94ff7fdd _ZN6Safari8SWebView16webViewWithFrameERK6CGRectRKNS_2CF6StringES7_ + 143
    12  Safari                         
    0x00007fff94ee94f0 _ZN6Safari23ExtensionViewController17createAndLoadViewEv + 92
    13  Safari                         
    0x00007fff94ed30d5 _ZN6Safari33ExtensionGlobalPageViewControllerC2EPNS_9ExtensionERKNS_2CF3URLE + 101
    14  Safari                         
    0x00007fff94ec480b _ZN6Safari33ExtensionGlobalPageViewController6createEPNS_9ExtensionERKNS_2CF3UR LE + 47
    15  Safari                         
    0x00007fff94ebd8b7 _ZN6Safari9Extension21retrieveGlobalWebViewEv + 47
    16  Safari                         
    0x00007fff94ebceff _ZN6Safari9Extension6enableEv + 87
    17  Safari                         
    0x00007fff94eda314 _ZN6Safari20ExtensionsController23loadInstalledExtensionsEv + 606
    18  Safari                         
    0x00007fff94ed9134 _ZN6Safari20ExtensionsController19reloadAllExtensionsEv + 54
    19  Safari                         
    0x00007fff94da3450 -[AppController awakeFromNib] + 1541
    20  CoreFoundation                 
    0x00007fff909e7e89 -[NSSet makeObjectsPerformSelector:] + 201
    21  AppKit                         
    0x00007fff8fdda216 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    22  AppKit                         
    0x00007fff8fdb91fd loadNib + 317
    23  AppKit                         
    0x00007fff8fdb8729 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    24  AppKit                         
    0x00007fff8fdb855e -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 200
    25  AppKit                         
    0x00007fff8fdb833e +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 360
    26  AppKit                         
    0x00007fff8fdb4adf NSApplicationMain + 398
    27  Safari                         
    0x00007fff94fb7d54 SafariMain + 166
    28  libdyld.dylib                  
    0x00007fff8dc3e7e1 start + 0
    29  ???                            
    0x0000000000000002 0x0 + 2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff93ae4212 __pthread_kill + 10
    1   libsystem_c.dylib        
    0x00007fff95865af4 pthread_kill + 90
    2   libsystem_c.dylib        
    0x00007fff958a9dce abort + 143
    3   libc++abi.dylib          
    0x00007fff8c793a17 abort_message + 257
    4   libc++abi.dylib          
    0x00007fff8c7913c6 default_terminate() + 28
    5   libobjc.A.dylib          
    0x00007fff8c610873 _objc_terminate() + 91
    6   libc++abi.dylib          
    0x00007fff8c7913f5 safe_handler_caller(void (*)()) + 8
    7   libc++abi.dylib          
    0x00007fff8c791450 std::terminate() + 16
    8   libc++abi.dylib          
    0x00007fff8c7925b7 __cxa_throw + 111
    9   libobjc.A.dylib          
    0x00007fff8c61050c objc_exception_throw + 327
    10  com.apple.CoreFoundation 
    0x00007fff909efe7c +[NSException raise:format:] + 204
    11  com.apple.Foundation     
    0x00007fff937844ae +[NSPropertyListSerialization propertyListWithData:options:format:error:] + 67
    12  WebCore                  
    0x00000001027891cb WebCore::Settings::initializeDefaultFontFamilies() + 587
    13  WebCore                  
    0x0000000102788458 WebCore::Settings::Settings(WebCore::Page*) + 456
    14  WebCore                  
    0x0000000102788488 WebCore::Settings::create(WebCore::Page*) + 40
    15  WebCore                  
    0x0000000101cf00dc WebCore::Page::Page(WebCore::Page::PageClients&) + 252
    16  com.apple.WebKit         
    0x00000001017b90bf -[WebView(WebPrivate) _commonInitializationWithFrameName:groupName:] + 1215
    17  com.apple.WebKit         
    0x0000000101703b73 -[WebView(WebPrivate) _initWithFrame:frameName:groupName:usesDocumentViews:] + 195
    18  com.apple.WebKit         
    0x00000001017039af -[WebView initWithFrame:frameName:groupName:] + 255
    19  com.apple.Safari.framework
    0x00007fff94ff7fdd Safari::SWebView::webViewWithFrame(CGRect const&, Safari::CF::String const&, Safari::CF::String const&) + 143
    20  com.apple.Safari.framework
    0x00007fff94ee94f0 Safari::ExtensionViewController::createAndLoadView() + 92
    21  com.apple.Safari.framework
    0x00007fff94ed30d5 Safari::ExtensionGlobalPageViewController::ExtensionGlobalPageViewController(Sa fari::Extension*, Safari::CF::URL const&) + 101
    22  com.apple.Safari.framework
    0x00007fff94ec480b Safari::ExtensionGlobalPageViewController::create(Safari::Extension*, Safari::CF::URL const&) + 47
    23  com.apple.Safari.framework
    0x00007fff94ebd8b7 Safari::Extension::retrieveGlobalWebView() + 47
    24  com.apple.Safari.framework
    0x00007fff94ebceff Safari::Extension::enable() + 87
    25  com.apple.Safari.framework
    0x00007fff94eda314 Safari::ExtensionsController::loadInstalledExtensions() + 606
    26  com.apple.Safari.framework
    0x00007fff94ed9134 Safari::ExtensionsController::reloadAllExtensions() + 54
    27  com.apple.Safari.framework
    0x00007fff94da3450 -[AppController awakeFromNib] + 1541
    28  com.apple.CoreFoundation 
    0x00007fff909e7e89 -[NSSet makeObjectsPerformSelector:] + 201
    29  com.apple.AppKit         
    0x00007fff8fdda216 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    30  com.apple.AppKit         
    0x00007fff8fdb91fd loadNib + 317
    31  com.apple.AppKit         
    0x00007fff8fdb8729 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    32  com.apple.AppKit         
    0x00007fff8fdb855e -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 200
    33  com.apple.AppKit         
    0x00007fff8fdb833e +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 360
    34  com.apple.AppKit         
    0x00007fff8fdb4adf NSApplicationMain + 398
    35  com.apple.Safari.framework
    0x00007fff94fb7d54 SafariMain + 166
    36  libdyld.dylib            
    0x00007fff8dc3e7e1 start + 1
    Thread 1:
    0   libsystem_kernel.dylib   
    0x00007fff93ae46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff95866eec _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff95866cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff95851171 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff93ae4d16 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8c7fedea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib        
    0x00007fff8c7fe9ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff93ae46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff95866eec _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff95866cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff95851171 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib   
    0x00007fff93ae40fa __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff95868f89 _pthread_cond_wait + 869
    2   WebCore                  
    0x0000000101cd70db WebCore::IconDatabase::syncThreadMainLoop() + 107
    3   WebCore                  
    0x0000000101cd4bf4 WebCore::IconDatabase::iconDatabaseSyncThread() + 500
    4   com.apple.JavaScriptCore 
    0x00007fff8e2d336f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib        
    0x00007fff95864742 _pthread_start + 327
    6   libsystem_c.dylib        
    0x00007fff95851181 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff93ae46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff95866eec _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff95866cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff95851171 start_wqthread + 13
    Thread 6:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib   
    0x00007fff93ae2686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff93ae1c42 mach_msg + 70
    2   com.apple.QuartzCore     
    0x00007fff95a7d35b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore     
    0x00007fff95b01e76 thread_fun + 25
    4   libsystem_c.dylib        
    0x00007fff95864742 _pthread_start + 327
    5   libsystem_c.dylib        
    0x00007fff95851181 thread_start + 13
    Thread 7:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff93ae2686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff93ae1c42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff9098c803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff90991ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff909916b2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation     
    0x00007fff93721586 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation     
    0x00007fff9377f612 __NSThread__main__ + 1345
    7   libsystem_c.dylib        
    0x00007fff95864742 _pthread_start + 327
    8   libsystem_c.dylib        
    0x00007fff95851181 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5e509a98  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff5e509ac0  rsp: 0x00007fff5e509a98
       r8: 0x00007fff7abd5278   r9: 0x00007fff5e509aa0  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff5e509c20  r13: 0x00007fff5e50b1f0  r14: 0x00007fff7abd6180  r15: 0x00007fff5e509b00
      rip: 0x00007fff93ae4212  rfl: 0x0000000000000206  cr2: 0x00007fff7abcefe8
    Logical CPU: 0
    Binary Images:
    0x1016f4000 -   
    0x1016f4fff  com.apple.Safari (6.0.2 - 8536.26.17) <948F804E-A2F9-3E52-A178-A641675616C3> /Applications/Safari.app/Contents/MacOS/Safari
    0x1016f9000 -   
    0x101883fff  com.apple.WebKit (8536 - 8536.26.17) <3D25C875-B5D1-390C-A449-C1D4FB7DECCB> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
    0x101979000 -   
    0x101b60ff7  com.apple.WebKit2 (8536 - 8536.26.17) <83AB27D5-EF84-35E2-A4B7-78A4791771AF> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
    0x101cd0000 -   
    0x102c89fff  WebCore (7536.26.15) <9D6C3EF1-FFC2-32FB-9953-BC76E3EAB5D8> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
    0x7fff612f4000 -
    0x7fff6132893f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
    0x7fff891a7000 -
    0x7fff891b0fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff891b1000 -
    0x7fff891c0ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
    0x7fff891c3000 -
    0x7fff891f9fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
    0x7fff891fa000 -
    0x7fff89245fff  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <8370178E-438C-375C-AA41-A8DEE60B8636> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff89246000 -
    0x7fff893bafff  com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff89449000 -
    0x7fff894d6ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff894d7000 -
    0x7fff89672fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff896a0000 -
    0x7fff896a2fff  libCVMSPluginSupport.dylib (8.6.1) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff896a3000 -
    0x7fff896a8fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
    0x7fff89762000 -
    0x7fff89778fff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff8981f000 -
    0x7fff89833fff  libGL.dylib (8.6.1) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff89834000 -
    0x7fff8983cfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
    0x7fff898b7000 -
    0x7fff898c1fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff898c3000 -
    0x7fff89912ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
    0x7fff89913000 -
    0x7fff89917fff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8991a000 -
    0x7fff8991afff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8a218000 -
    0x7fff8a242ff7  com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8a243000 -
    0x7fff8a63afff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8a680000 -
    0x7fff8a799ff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8a83b000 -
    0x7fff8a8d5fff  com.apple.CoreSymbolication (3.0 - 87) <3D9CBE8D-F047-3DFA-B067-F9589E2AF8BA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff8a8d6000 -
    0x7fff8a912fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8a918000 -
    0x7fff8a923fff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8a924000 -
    0x7fff8a9e1ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8a9e2000 -
    0x7fff8a9e2fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8a9e3000 -
    0x7fff8aa04fff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8aa08000 -
    0x7fff8aa3cfff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8aa3d000 -
    0x7fff8aa4bff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
    0x7fff8aa4c000 -
    0x7fff8aa6eff7  libxpc.dylib (140.41) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
    0x7fff8aa6f000 -
    0x7fff8aa83fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8aa84000 -
    0x7fff8aa86fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff8aa87000 -
    0x7fff8aa8afff  libRadiance.dylib (845) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff8aa8b000 -
    0x7fff8aaa2fff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff8ab2b000 -
    0x7fff8ae42ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <DF7CABCA-F2CB-345B-8EFF-F0F4E937B7FF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8ae4f000 -
    0x7fff8aeb8fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
    0x7fff8aef5000 -
    0x7fff8b046fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8b048000 -
    0x7fff8b04eff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
    0x7fff8b162000 -
    0x7fff8b362fff  libicucore.A.dylib (491.11.1) <CC318A27-878A-38CE-9292-1B98353FA9C7> /usr/lib/libicucore.A.dylib
    0x7fff8b363000 -
    0x7fff8b3afff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
    0x7fff8b3cc000 -
    0x7fff8b409fe7  libGLImage.dylib (8.6.1) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8b40a000 -
    0x7fff8b415ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8b5a1000 -
    0x7fff8b63bfff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff8b63c000 -
    0x7fff8b66dff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff8b66e000 -
    0x7fff8b67afff  libCSync.A.dylib (324.6) <2033247A-CABC-3E20-8498-7367A8F44A08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff8b6b7000 -
    0x7fff8b7b9fff  libJP2.dylib (845) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8b7c7000 -
    0x7fff8b7d5ff7  libkxld.dylib (2050.18.24) <7027CE49-007D-3553-8FFA-3E3B428B2316> /usr/lib/system/libkxld.dylib
    0x7fff8b7d6000 -
    0x7fff8c166c67  com.apple.CoreGraphics (1.600.0 - 324.6) <DCC70C6E-AB6D-3457-A823-7569CB29B107> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8c167000 -
    0x7fff8c168fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
    0x7fff8c169000 -
    0x7fff8c190fff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff8c191000 -
    0x7fff8c461fff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8c46c000 -
    0x7fff8c4edfff  com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8c4ee000 -
    0x7fff8c50efff  libPng.dylib (845) <C3CDD2B4-3CB0-3F6D-8411-DAAF267E952B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8c5f5000 -
    0x7fff8c5fbfff  libGFXShared.dylib (8.6.1) <CF55E720-1B9E-3E24-A1DA-7FA8B261CD8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8c5ff000 -
    0x7fff8c71792f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
    0x7fff8c718000 -
    0x7fff8c723ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff8c790000 -
    0x7fff8c7b5ff7  libc++abi.dylib (24.4) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
    0x7fff8c7bb000 -
    0x7fff8c7bbfff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8c7e4000 -
    0x7fff8c7f9fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff8c7fa000 -
    0x7fff8c80fff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    0x7fff8c810000 -
    0x7fff8c838fff  libJPEG.dylib (845) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8c8af000 -
    0x7fff8c906ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff8c907000 -
    0x7fff8ca8dfff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff8ca8e000 -
    0x7fff8caebfff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8d5c3000 -
    0x7fff8d5c3fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    0x7fff8d6d4000 -
    0x7fff8d6d8fff  libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8d7f3000 -
    0x7fff8d844ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <E095637C-457F-3D8F-AE32-A032F9D5A46C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8d845000 -
    0x7fff8d845fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff8d862000 -
    0x7fff8d866fff  com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8dbf3000 -
    0x7fff8dc3bfff  com.apple.framework.CoreWiFi (1.0 - 100.10) <0E863B4A-1094-3F8D-BEDE-D99537E9C588> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8dc3c000 -
    0x7fff8dc3fff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x7fff8dc40000 -
    0x7fff8dc5dfff  com.apple.openscripting (1.3.6 - 148.2) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8dca2000 -
    0x7fff8dd21ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8ddaa000 -
    0x7fff8ddb8fff  com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff8ddb9000 -
    0x7fff8ddb9fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff8ddba000 -
    0x7fff8ddcdff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
    0x7fff8ddd5000 -
    0x7fff8de0dfff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
    0x7fff8de0e000 -
    0x7fff8de76fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff8e035000 -
    0x7fff8e042fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff8e043000 -
    0x7fff8e056ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff8e095000 -
    0x7fff8e32fff7  com.apple.JavaScriptCore (8536 - 8536.26.7) <ADAD1276-675A-3000-B746-560A2EB596A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8e76d000 -
    0x7fff8e778fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
    0x7fff8e7d6000 -
    0x7fff8e7d6fff  libOpenScriptingUtil.dylib (148.2) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8e7d7000 -
    0x7fff8e875ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff8eabe000 -
    0x7fff8ead4fff  com.apple.MultitouchSupport.framework (235.28 - 235.28) <BD78B16E-9B5A-3E07-93B4-13AD1A538CAC> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8eb6a000 -
    0x7fff8eb6bff7  libdnsinfo.dylib (453.18) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
    0x7fff8eb6c000 -
    0x7fff8eb8bff7  com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff8eb8c000 -
    0x7fff8eb8ffff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8ebea000 -
    0x7fff8ee8efff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff8ee8f000 -
    0x7fff8eec9fff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8eece000 -
    0x7fff8eefcfff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff8f767000 -
    0x7fff8f768fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8f769000 -
    0x7fff8f76dff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff8f76e000 -
    0x7fff8f7eeff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8fac7000 -
    0x7fff8fb6dff7  com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8fb6e000 -
    0x7fff8fbf0fff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8fbf1000 -
    0x7fff8fc4bfff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff8fc4c000 -
    0x7fff8fc4dfff  libquit.dylib (130) <DC77F406-C5D4-301B-A96D-9A3DCA263756> /usr/lib/libquit.dylib
    0x7fff8fc4e000 -
    0x7fff8fc91ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8fc92000 -
    0x7fff8fca0fff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8fca1000 -
    0x7fff8fca1ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8fcbe000 -
    0x7fff8fcc3fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8fcc4000 -
    0x7fff908f1ff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff90942000 -
    0x7fff9094efff  com.apple.CrashReporterSupport (10.8.2 - 415) <55783BF9-125E-3F9C-A412-6A095ECD9353> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff9095d000 -
    0x7fff90b46fff  com.apple.CoreFoundation (6.8 - 744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff91b10000 -
    0x7fff91b7dff7  com.apple.framework.IOKit (2.0 - 755.18.10) <142E19DD-1C8D-3D61-ABC8-83994A73279F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff91b7e000 -
    0x7fff91b80fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
    0x7fff91e8d000 -
    0x7fff921bdff7  com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff9221c000 -
    0x7fff9222eff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    0x7fff92629000 -
    0x7fff92654fff  com.apple.framework.Apple80211 (8.0.1 - 801.17) <05786C8E-8C6F-31AF-80B5-9C98175757B4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff92655000 -
    0x7fff9265cfff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff9265f000 -
    0x7fff9265ffff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff92660000 -
    0x7fff926bcff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff926bd000 -
    0x7fff92701fff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
    0x7fff9273d000 -
    0x7fff9274afff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
    0x7fff9274b000 -
    0x7fff927a7fff  com.apple.corelocation (1.0 - 1239.39) <88EFC8F1-0A91-3EB6-A1F6-76294541D85D> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff92838000 -
    0x7fff92958fff  com.apple.desktopservices (1.7.2 - 1.7.2) <CDE8C2C2-C505-31B0-8C61-E40E4EA364A5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff929cc000 -
    0x7fff929ceff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff929cf000 -
    0x7fff92accfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
    0x7fff92acd000 -
    0x7fff92b3afff  com.apple.datadetectorscore (4.0 - 269.1) <B69645EB-C4BF-3D52-A49B-CB1A1A88512F> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff92b3b000 -
    0x7fff92b3fff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff92c32000 -
    0x7fff9304ffff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff931a2000 -
    0x7fff9327cff7  com.apple.backup.framework (1.4.1 - 1.4.1) <A3CFCA9E-717C-302D-821B-16FD35E6673F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff9327d000 -
    0x7fff9327eff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff9327f000 -
    0x7fff93280fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff9335a000 -
    0x7fff93360fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <F7DAF7CC-5893-3F06-9168-3B0192B66D15> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff93361000 -
    0x7fff933beff7  com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff933bf000 -
    0x7fff933e6ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff93439000 -
    0x7fff9343bfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff93452000 -
    0x7fff9345cff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x7fff9345d000 -
    0x7fff934b3ff7  com.apple.opencl (2.1.20 - 2.1.20) <AF142CA4-EA1D-31B0-A48F-AA2B75D4309E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff934b4000 -
    0x7fff936e9ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff936ea000 -
    0x7fff93a46fff  com.apple.Foundation (6.8 - 945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff93a59000 -
    0x7fff93a5aff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
    0x7fff93a5b000 -
    0x7fff93aa5ff7  libGLU.dylib (8.6.1) <DF45C1E3-3884-3991-B84F-F39B482E8BF8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff93aa6000 -
    0x7fff93ad1fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
    0x7fff93ad2000 -
    0x7fff93aedff7  libsystem_kernel.dylib (2050.18.24) <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
    0x7fff93aee000 -
    0x7fff93b44fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff93c01000 -
    0x7fff93e86ff7  com.apple.RawCamera.bundle (4.03 - 676) <21D098D4-35EC-3495-9227-2DA19B9BD640> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff93e87000 -
    0x7fff93ea6ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    0x7fff93ea7000 -
    0x7fff93f79ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff941fb000 -
    0x7fff942f0fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
    0x7fff942f1000 -
    0x7fff9431fff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
    0x7fff94320000 -
    0x7fff943d1fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff9446a000 -
    0x7fff94567ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
    0x7fff94568000 -
    0x7fff9456aff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
    0x7fff9456b000 -
    0x7fff945a1fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff945a2000 -
    0x7fff945b1ff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff945b2000 -
    0x7fff945b3ff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
    0x7fff945b4000 -
    0x7fff945bbfff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
    0x7fff9472e000 -
    0x7fff94783ff7  libTIFF.dylib (845) <ADCB4683-69EB-318B-8BE7-5FDF38BCADAF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff94788000 -
    0x7fff947c7ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff947f1000 -
    0x7fff94808fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff94a7e000 -
    0x7fff94ac1fff  com.apple.RemoteViewServices (2.0 - 80.5) <F3A897C9-A277-3B56-8FB3-2BC2C10C33BF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff94ac3000 -
    0x7fff94ad0ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff94d2e000 -
    0x7fff94d96ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
    0x7fff94d97000 -
    0x7fff9528cfff  com.apple.Safari.framework (8536 - 8536.26.14) <8A1EDE49-1974-3CA6-9B1A-54A1C5B2FF24> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff952a8000 -
    0x7fff952caff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff952cb000 -
    0x7fff95390ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff9545b000 -
    0x7fff9545bfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff9574b000 -
    0x7fff95750fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
    0x7fff95850000 -
    0x7fff9591cfe7  libsystem_c.dylib (825.25) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
    0x7fff959c0000 -
    0x7fff95b6efff  com.apple.QuartzCore (1.8 - 304.0) <897FAA5D-FF13-33FE-878B-B164D684F019> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff95b6f000 -
    0x7fff95bbeff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff95d1c000 -
    0x7fff95d3dff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
    0x7fff95d3e000 -
    0x7fff95e49fff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff95e52000 -
    0x7fff95e5aff7  libsystem_dnssd.dylib (379.32.1) <62AA0B84-188A-348B-8F9E-3E2DB08DB93C> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff95e5b000 -
    0x7fff95e61fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    0x7fff95f95000 -
    0x7fff95f97fff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff95f98000 -
    0x7fff95f9cfff  libpam.2.dyl

  • Process name representation in a LINUX machine for a JAVA program running..

    Hi,
    We are using an Intel machine loaded with Red Hat Linux 7.2 OS to run JAVA programs. We have a requirement to calculate the CPU and MEMORY usage for each JAVA program running. Unfortunately when a java program is run say "java ESR" and we run a ps -ef | grep -i java, it is shown as hkumar 2847 2799 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2874 2847 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2875 2874 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2876 2874 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2877 2874 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2878 2874 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2879 2874 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2880 2874 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2881 2874 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2882 2874 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2883 2874 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2884 2874 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    hkumar 2885 2874 0 19:15 pts/3 00:00:00 /usr/java/jdk1.3.1_03/bin/i386/n
    instead of the actual name of the program ie. ESR.
    Does anybody know why this happens? Is there a way out to ensure that "ps -ef | grep java" gives the actual name of the java program being RUN?
    Thanks in advance,
    Harish

    You have less chance to identify which programm that VM instance is running right now.
    But you could (as we do) keep track of your programs if you save the process-id when you start the program.
    We need this to shut down running java batch programs but you could find out the used system resources with this way as well...

  • What path to use to access network files from Java app running on Mac

    I have a Java app running on a Mac with OS X that I'm using to check for files that exists on Windows servers within our network.
    Using a path like /Volumes/<Share>/ works because I've already connected to the drive using Finder. If I try to use a fully qualify the path with "smb://<Server>/<Share>" then my app doesn't see anything. Is there any way that I can get Java to connect to a directory without first having mapped or made the connection via some external tool like Finder?
    Here's the code I'm testing with:
    package FileImports;
    import java.io.File;
    import java.util.Arrays;
    public class Dir {
    static int indentLevel = -1;
    static void listPath(File path) {
    File files[];
    indentLevel++;
    files = path.listFiles();
    if (!(files == null)){
    Arrays.sort(files);
    for (int i = 0, n = files.length; i < n; i++) {
    for (int indent = 0; indent < indentLevel; indent++) {
    System.out.print(" ");
    System.out.println(files.toString());
    if (files[i].isDirectory()) {
    listPath(files[i]);
    indentLevel--;
    } else System.out.println("Directory not accessible!");
    public static void main(String args[]) {
    // this path works where <share> = the directory where my files exist.
    listPath(new File("/Volumes/<share>"));
    // this path returns a null result in files
    // listPath(new File("smb://<Server>/<Share>/"));
    Thanks,
    Alex
    Edited by: agates on Sep 25, 2008 11:14 AM

    agates wrote:
    Thanks for the response. I'll have to dig a little deeper into JCIFS. It looks like it would work great windows to windows. I haven't been able to find in the documentation where it would work on OS X without having to mount the targeted file system first. Has anyone had success creating a connection to a windows file system from OS X with JCIFS?Since jCIFS is written in pure Java and implements the entire SMB/CIFS protocoll on it's own it doesn't require any support from the OS (apart from a normal JVM runnig). Thus it should work exactly the same in OS X and Windows (and Linux and Solaris and ...).

  • How to execute unix command from the Java program running on Windows

    Hello,
    I need to
    1. Execute a unix shell script from a Java program running on the Windows.
    2. I also need to capture the output of this shell script in my program.
    Please suggest me how to achieve this.
    Thanks in Advance.

    Hi...
    Something is missing here
    If you want to execute a shell script in windows that not posible unless you find or develop a unix shell script parser for windows.
    But if you are trying the execute a unix shell script on a remote unix computer from your java program running on a windows platform you can do that by logging on to the UNIX terminal which is running on port 23 I think.
    You can test this using telnet tool on windows
    just type on command prompt
    telnet <ip of the unix pc> <port number this case 23>
    you should get the unix terminal. If that works you can do the same through java or you can directly conect to port 23 of that pc using sockets that way your program will be platform independant

  • Execute Unix command from Java program running on windows

    Hello,
    I need to write a java program that fetches file count in a particular unix machine directory. But java program will be running on windows machine.
    The program should execute unix list command and fetch the output of that command.
    Can anyone help me on this?
    Thanks.

    Hi there,
    I had a similiar problem, though years ago. It was to have a java program execute any other. Lately, I've had to have a java program running on a unix machine execute a shell script. Entirely two different scenarios. I'm not sure what you will need for your app, but look into this:
    Java Native Interface for executing C/C++ code.
    C/C++ Code for launching the program you need to run.
    java.lang.Runtime(?).exec(....)
    With a combination of that stuff, you can make a launcher for any os that has Java running on it, and with Runtime, you can exec() pretty near any sort of unix shell or app command you'd like.
    Good luck.
    Tim

  • I have Adobe Photoshop CS4 and have just upgraded my Mac operating system to Yosemite with the newest version of Java 2014 running. When I try to access Photoshop from Bridge or directly open it asks for a Legacy Version of Java 6. As I am a pensioner I c

    I have Adobe Photoshop CS4 and have just upgraded my Mac operating system to Yosemite with the newest version of Java 2014 running. When I try to access Photoshop from Bridge or directly open it asks for a Legacy Version of Java 6. As I am a pensioner I cannot afford an upgrade does anyone know of a work-around for this problem?

    Hi Daddyfred,
    CS4 Photoshop has not been tested on Yosemite. But still you can try the Java 6 update using the below link.
    http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase6-419 409.html
    Thank you for posting on Adobe Forums.

  • Can Java SE run in a Window PE (Preinstallation Environment)

    Hi there,
    Can Java SE run in a Window PE (Preinstallation Environment).
    Thank you for all your help....

    One simple reason is that ME has a lot less core classes than SE. So there is a big possibility that you use something that will not be available on the ME.

  • What is the highest Java version running with SOA Suite v10.1.3.3 ?

    What is the highest Java version running with SOA Suite v10.1.3.3 ?
    From my point of view at least v1.4.1
    Maybe v1.5
    but not v1.6
    Is this true?
    Peter

    I guess only 1.5.
    1.6 is officially not supported and 1.4 does break stuff, I tried running it with it, and didn't even come up.
    Regards,
    Chintan

  • Out of Memory Error in Java Agents running in lotus notes

    I have a java agent running inside lotus notes jvm. It runs fine for some days but after some days start giving out of memory error and terminates.
    I need to restart agent manager in notes to enable java agent running. Is there a way to catch out of memory error so that on its catch i could restart agent manager.
    Regards,
    Saitu

    Dear Peter,
    The agent is written in java and
    I need to know a way to enter catch block of 'OUTOFMEMORYERROR'.
    My whole code is in a try block with two catches, one for outofmemoryerror and another for exception. When outofmemory error occurs control passes to the exception catch and not outofmemoryerror catch.
    Since out of memory is an error and not an exception, is there a way to catch it or run some code when out of memory occurs.
    Regards,
    Saitu

  • Java crashes on a solaris 9 randomly with a core dump

    Hello
    Currently we are using JBoss Application server on solaris 9. Over a period of time. Java crashes suddenly. The condition under which this can be reproduced is currently not reproduceable. But over a period of time, this crash just happens.
    The following is the stack trace of the core file. Can somebody see this and let me know what could be the possible problem.
    bash-2.05# adb java.3558.1133780573
    core file = java.3558.1133780573 -- program `` /global/netmfs/netmbase/NetM62/licensing/jre/bin/java'' on platform SUNW,Sun-Fire-V440
    SIGABRT: Abort
    $c
    libc.so.1`_lwp_kill+8(6, 0, acf7b6e8, 2, 0, af2d482c) libc.so.1`abort+0x100(2d80f8, b, b3ef0040, 0, 48, 0) libkernel32.so`__1cUSehScanInvokeTryList6FpnQSEH_THREAD_BLOCK__i_+0x334(2d9790,
    af1cd7f8, af2d7324, 0, 2, 0)
    libkernel32.so`__1cOSignal_HandlerFraise6FIpviipL_i_+0xfc(c0000005, acf7ba20, 0 , 2, acf7b858, 1800) libkernel32.so`__1cPRaise_Exception2f6MipnHsiginfo_pv_v_+0xa4(516f28, b, acf7bcd8, acf7ba20, af2ea1e4, 2c) libthread.so.1`__sighndlr+0xc(b, acf7bcd8, acf7ba20, af1cd854, 0, 0) libthread.so.1`call_user_handler+0x234(b, acf7bcd8, acf7ba20, 0, 0, 0) libthread.so.1`sigacthandler+0x64(b, acf7bcd8, acf7ba20, 1, f6e89af0, 3ba) 0xfa0f4520(b5fec400, f6e89af0, b5fec550, 3ba, fa015624, b5fed448) 0xfa43586c(f5c770a8, b5fec530, bcdddf90, b5fec530, bcdddf90, b5fec400) 0xfa005b10(f6e8a270, b6, 8, fa0155e0, f6e847a0, acf7bf70) 0xfa005b10(2d6b00, b8, acf7c0e4, fa0152c0, fa015624, acf7c000) 0xfa005b10(2d6b00, b8, 8, fa015590, feca1858, acf7c078) 0xfa005b10(2d6b00, 0, 0, fa0155e0, 3349f0, acf7c108) 0xfa000118(acf7c1f0, acf7c388, a, f6e89818, fa00aae0, acf7c328) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7c380, acf7c318, acf7c320, 2d6b00, 2d6b00, 34e9cc
    libjvm.so`JVM_DoPrivileged+0x4c0(632adc, ff0104d0, acf7c65c, 0, 1, 1) libjava.so`Java_java_security_AccessController_doPrivileged__Ljava_security_Priv
    ilegedExceptionAction_2+0x14(2d6b94, acf7c5e0, acf7c65c, ffffffff, fa015624, 0) 0xfa00be48(2d6b00, b8, 15c, 4, f6e847a0, acf7c5f8) 0xfa005b10(2d6b00, 0, 0, fa015480, 3349f0, acf7c690) 0xfa000118(acf7c778, acf7c838, a, f6e87d18, fa00aae0, acf7c844) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7c830, acf7c82c, acf7c840, 2d6b00, 2d6b00,
    acf7d170)
    libjvm.so`__1cNinstanceKlassbBcall_class_initializer_impl6FnTinstanceKlassHandle
    pnGThread_v_+0xfc(acf7c950, 2d6b00, 10b, acf7c9e8, 1, 0) libjvm.so`__1cNinstanceKlassPinitialize_impl6FnTinstanceKlassHandle_pnGThread__v
    +0x4f4(acf7ca98, 2d6b00, acf7d490, 2d741c, 2d6b00, 0) libjvm.so`_1cNinstanceKlassKinitialize6MpnGThread__v_+0x84(f6e87dd0, 2d6b00, 1b8, f5c01e00, acf7cb5c, 1) libjvm.so`__1cMLinkResolverTresolve_static_call6FrnICallInfo_rnLKlassHandle_nMsy
    mbolHandle_53iipnGThread__v_+0x190(0, 2d6b00, ff0104d0, acf7cc54, acf7cc50, 1) libjvm.so`__1cMLinkResolverOresolve_invoke6FrnICallInfo_nGHandle_nSconstantPoolH
    andle_inJBytecodesECode_pnGThread__v_+0xd8(acf7cf44, acf7cf0c, acf7cf08, 12, b8 , 2d6b00) libjvm.so`__1cSInterpreterRuntimeOresolve_invoke6FpnKJavaThread_nJBytecodesECode
    __v_+0x6ac(2d6b00, b8, 8, b5feaea8, f6e80c78, 0) 0xfa01561c(2d6b00, b8, b5feaf20, fa015590, fa015624, acf7d0d0) 0xfa005b10(2d6b00, b8, 1b9, fa015590, f6dc6a20, acf7d170) 0xfa005b10(2d6b00, b8, 8, fa0155e0, f6dc6a20, acf7d208) 0xfa005b10(2d6b00, b8, acf7d3ac, fa015590, f6dc9888, acf7d2b0) 0xfa005b10(2d6b00, b8, 8, fa015590, f6dc6a20, acf7d340) 0xfa005b10(2d6b00, 0, 0, fa0155e0, 3349f0, acf7d3c8) 0xfa000118(acf7d4b0, acf7d570, a, f6dc87d0, fa00aae0, acf7d57c) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7d568, acf7d564, acf7d578, 2d6b00, 2d6b00, 0) libjvm.so`__1cNinstanceKlassbBcall_class_initializer_impl6FnTinstanceKlassHandle
    pnGThread_v_+0xfc(acf7d688, 2d6b00, 10b, acf7d720, 1, 0) libjvm.so`__1cNinstanceKlassPinitialize_impl6FnTinstanceKlassHandle_pnGThread__v
    +0x4f4(acf7d7d0, 2d6b00, acf7e118, 2d72c4, 2d6b00, b5c49570) libjvm.so`_1cNinstanceKlassKinitialize6MpnGThread__v_+0x84(f6dc9700, 2d6b00, 1b8, f5c01e00, acf7d894, 1) libjvm.so`__1cMLinkResolverTresolve_static_call6FrnICallInfo_rnLKlassHandle_nMsy
    mbolHandle_53iipnGThread__v_+0x190(0, 2d6b00, ff0104d0, acf7d98c, acf7d988, 1) libjvm.so`__1cMLinkResolverOresolve_invoke6FrnICallInfo_nGHandle_nSconstantPoolH
    andle_inJBytecodesECode_pnGThread__v_+0xd8(acf7dc7c, acf7dc44, acf7dc40, 6d, b8 , 2d6b00) libjvm.so`__1cSInterpreterRuntimeOresolve_invoke6FpnKJavaThread_nJBytecodesECode
    __v_+0x6ac(2d6b00, b8, acf7de5c, fa0155d8, fa015624, acf7dd50) 0xfa01561c(2d6b00, b8, b5c47f38, fa015590, f67cf4d0, acf7dde8) 0xfa005a44(2d6b00, b8, 3, fa015590, fa015304, acf7deb8) 0xfa005b54(be833b70, b6, acf7e024, fa015590, fa015304, acf7df48) 0xfa005b54(be833b78, b6, acf7e0a4, fa015270, b6080000, acf7dfc8) 0xfa005b54(2d6b00, 0, 0, fa015270, 3349f0, acf7e048) 0xfa000118(acf7e138, acf7e270, a, f67d9ba0, fa00aae0, acf7e2ac) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7e268, acf7e264, acf7e29c, 2d6b00, 2d6b00,
    fece7f70)
    libjvm.so`__1cKReflectionGinvoke6FnTinstanceKlassHandle_nMmethodHandle_nGHandle_
    inOobjArrayHandle_nJBasicType_4ipnGThread__pnHoopDesc__+0xeec(0, acf7e3c0, ff0104d0, 1, f67cf810, a) libjvm.so`__1cKReflectionNinvoke_method6FpnHoopDesc_nGHandle_nOobjArrayHandle_pn
    GThread__2_+0x230(be3e4900, acf7e448, acf7e444, 2d6b00, feda0bd0, acf7e810) libjvm.so`JVM_InvokeMethod+0x26c(acf7e5b0, acf7e5ac, ff005ddc, ff0073e8, c6, 0) libjava.so`Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x10(2d6b94,
    acf7e528, acf7e5b4, acf7e5b0, acf7e5ac, 0) 0xfa00be48(b5fed8d0, b8, acf7e634, c, b6080000, acf7e540) 0xfa005b10(b5fefd98, be8339c0, b5fed8d0, fa015590, f6b5c960, acf7e5d8) 0xfa2267c4(b5fefdb0, be8339c0, b60a0028, fa015270, 1, acf7e648) 0xfa2264e0(be3f5ca8, be8339c0, b60a0028, be3f5c70, f5c2a550, f5c2a550) 0xfa005b10(be41d6d8, f65ee028, acf7e878, fa015270, f68e6d70, acf7e778) 0xfa005fd8(be40db50, f65ee028, acf7e914, fa0156f0, f6229940, acf7e810) 0xfa005fd8(be3f6f48, b6, 49, fa0156f0, c6, acf7e8b0) 0xfa005b10(be3f6f48, b7, acf7ea70, fa0152b8, 0, acf7e978) 0xfa005b10(be3f6f48, f65ee028, acf7eb00, fa015430, fa00aae0, acf7ea10) 0xfa005fd8(be3ebba8, f65ee028, acf7eb98, fa0156f0, 2d6b00, acf7eaa0) 0xfa005fd8(be481ee8, f65ee028, acf7ec30, fa0156f0, 42e6f04c, acf7eb38) 0xfa005fd8(be47c270, f65ee028, acf7ecc0, fa0156f0, 1, acf7ebd0) 0xfa005fd8(be448ef8, b6, acf7ed90, fa0156f0, f620a188, acf7ec50) 0xfa005b10(be448ef8, b6, 0, fa015270, b6080000, acf7ed18) 0xfa005b10(be449a38, b6, acf7eed0, fa015270, c6, acf7edc8) 0xfa005b10(be6e0488, f5ee2070, 4, fa015270, f5c045c0, acf7ee58) 0xfa005fd8(2d6b00, 0, 0, fa015740, 3349f0, acf7ef00) 0xfa000118(acf7eff0, acf7f128, a, f67f5f50, fa00aae0, acf7f164) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7f120, acf7f11c, acf7f154, 2d6b00, 2d6b00,
    fece7f70)
    libjvm.so`__1cKReflectionGinvoke6FnTinstanceKlassHandle_nMmethodHandle_nGHandle_
    inOobjArrayHandle_nJBasicType_4ipnGThread__pnHoopDesc__+0xeec(0, acf7f278, ff0104d0, 1, f67cf810, a) libjvm.so`__1cKReflectionNinvoke_method6FpnHoopDesc_nGHandle_nOobjArrayHandle_pn
    GThread__2_+0x230(be849d88, acf7f300, acf7f2fc, 2d6b00, feda0bd0, acf7f6c8) libjvm.so`JVM_InvokeMethod+0x26c(acf7f468, acf7f464, ff005ddc, ff0073e8, 20, 0) libjava.so`Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x10(2d6b94,
    acf7f3e0, acf7f46c, acf7f468, acf7f464, 0) 0xfa00be48(b5fed810, b8, acf7f4ec, c, b6080000, acf7f3f8) 0xfa005b10(b5fed8a8, be6d7ab8, b5fed810, fa015590, 3230bc, acf7f490) 0xfa2267c4(b5fed8c0, be6d7ab8, b60a0000, fa015270, be843a68, acf7f500) 0xfa2264e0(b5fed858, be6d7ab8, b60a0000, b5fed858, 1, 0) 0xfa005b10(be6de080, b6, b5fed858, fa015270, be6d4478, acf7f620) 0xfa005b10(be6de080, b6, acf7f7c8, fa015270, 96, acf7f6c8) 0xfa005b10(be6de080, f5ee2070, 4, fa015270, f5c045c0, acf7f750) 0xfa005fd8(be6d6a18, f67d91d0, 8, fa015740, fa015304, acf7f7f8) 0xfa00601c(be6a3ac0, b6, 8, fa015590, 8, acf7f8a0) 0xfa005b54(be6a3ac0, f640af90, acf7fa7c, fa015270, f640af90, acf7f978) 0xfa005fd8(be8338f8, b7, 0, fa0156f0, f640af90, acf7fa08) 0xfa005c64(be8338f8, b7, acf7fb18, fa015430, be8338f8, acf7fab0) 0xfa005c64(acf7fba8, 0, 0, fa015430, 3349f0, acf7fb48) 0xfa000118(acf7fc30, acf7fe98, a, f6496780, fa00aae0, acf7fdb8) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(acf7fe90, acf7fcf8, acf7fdb0, 2d6b00, 2d6b00,
    acf7fd08)
    libjvm.so`__1cJJavaCallsMcall_virtual6FpnJJavaValue_nLKlassHandle_nMsymbolHandle
    _4pnRJavaCallArguments_pnGThread__v_+0x164(feff0000, 2d71e8, acf7fda4, acf7fda0 , acf7fdb0, 2d6b00) libjvm.so`__1cJJavaCallsMcall_virtual6FpnJJavaValue_nGHandle_nLKlassHandle_nMsym
    bolHandle_5pnGThread__v_+0x60(acf7fe90, acf7fe8c, acf7fe84, acf7fe7c, acf7fe74,
    2d6b00)
    libjvm.so`__1cMthread_entry6FpnKJavaThread_pnGThread__v_+0x128(2d6b00, 2d6b00, 2d6190, 2d71e8, 319508, fecd6a5c) libjvm.so`__1cKJavaThreadDrun6M_v_+0x288(2d6b00, 0, ff00f808, ffff8000, 0, 0) libjvm.so`_start+0x134(2d6b00, 0, 0, 0, 0, 0) libthread.so.1`_lwp_start(0, 0, 0, 0, 0, 0)
    Second Core dump with adb
    bash-2.05# adb java.9337.1133744404
    .core file = java.9337.1133744404 -- program `` /global/netmfs/netmbase/NetM62/licensing/jre/bin/java'' on platform SUNW,Sun-Fire-V440
    SIGABRT: Abort
    .$c
    $c
    libc.so.1`_lwp_kill+8(6, 0, ad0fc950, 2, 0, aeed482c) libc.so.1`abort+0x100(bd90f8, b, b3670200, 0, 48, 0) libkernel32.so`__1cUSehScanInvokeTryList6FpnQSEH_THREAD_BLOCK__i_+0x334(6197b0,
    aedcd7f8, aeed7324, 0, 2, 0)
    libkernel32.so`__1cOSignal_HandlerFraise6FIpviipL_i_+0xfc(c0000005, ad0fcc88, 0 , 2, ad0fcac0, 1800) libkernel32.so`__1cPRaise_Exception2f6MipnHsiginfo_pv_v_+0xa4(50c028, b, ad0fcf40, ad0fcc88, aeeea1e4, 2c) libthread.so.1`__sighndlr+0xc(b, ad0fcf40, ad0fcc88, aedcd854, 0, 0) libthread.so.1`call_user_handler+0x234(b, ad0fcf40, ad0fcc88, 0, 0, 0) libthread.so.1`sigacthandler+0x64(b, ad0fcf40, ad0fcc88, fa015590, b6130000,
    ad0fcfc0)
    0xfa0157f0(b5cb5908, b6, 8, fa015740, 0, ad0fd070) 0xfa005c64(b5cb5908, b7, ad0fd208, fa015270, b5cb1c90, ad0fd118) 0xfa005c64(b5cb5908, b7, 0, fa015430, b6130000, ad0fd1a8) 0xfa005c64(be56d460, b6, 8, fa015430, f691f2b0, ad0fd240) 0xfa005b10(be56d498, b6, be574c70, fa015270, 4889ba9b, ad0fd330) 0xfa005b10(be56d4a8, b7, ad0fd4d4, fa015270, 9, ad0fd3c8) 0xfa005b10(be56d4a8, b7, 0, fa015430, b6130000, ad0fd448) 0xfa005b10(be56d4a8, f6915008, 8, fa015430, 42a1665e, ad0fd540) 0xfa005fd8(bd44ecd0, f63b2338, ad0fd6c4, fa0156f0, b5cb4b38, ad0fd5d8) 0xfa005fd8(b5cb4a60, b7, ad0fd6d0, fa0156f0, b5cb4b48, ad0fd660) 0xfa005b10(b5cb4a60, b6, ad0fd818, fa015430, f65b7528, ad0fd718) 0xfa005b10(bd41bcf0, f63b1548, ad0fd8a0, fa015270, b6130000, ad0fd7b8) 0xfa005fd8(bd410620, b7, ad0fd934, fa0156f0, b6130000, ad0fd840) 0xfa005b10(bd410620, b6, ad0fd9c4, fa015430, b6130000, ad0fd8d0) 0xfa005b10(bd410620, b6, ad0fda44, fa015270, b6130000, ad0fd968) 0xfa005b10(bd8d1420, f63aa0c8, ad0fdad4, fa015270, 4400, ad0fd9e8) 0xfa005fd8(bd8c7f60, f65c2490, ad0fdb5c, fa0156f0, f6906720, ad0fda70) 0xfa005fd8(be548400, f68f50b0, ad0fdbe8, fa0156f0, f65b4158, ad0fdaf0) 0xfa005fd8(b5caf718, f6d147c0, 0, fa0156f0, b6130000, ad0fdb80) 0xfa005fd8(b5caeb10, b7, ad0fdcf8, fa0156f0, b6130000, ad0fdc10) 0xfa005c64(b5caeb10, f6a62080, ad0fdd8c, fa015430, f6ad6088, ad0fdc90) 0xfa005fd8(b5caf718, f6d147c0, ad0fde3c, fa0156f0, b6130000, ad0fdd20) 0xfa005fd8(be6abc20, b6, 0, fa015738, b6130000, ad0fddd0) 0xfa005b10(be6abc20, b7, ad0fdf94, fa015270, 4400, ad0fdea0) 0xfa005b10(be6abc20, b7, 0, fa015478, b6130000, ad0fdf38) 0xfa005b10(be6abc20, b7, 0, fa015478, f6864318, ad0fdfc8) 0xfa005b10(be6abc20, b6, ad0fe14c, fa015430, 3230bc, ad0fe058) 0xfa005b10(be6abc20, b7, ad0fe1d8, fa015270, b6130000, ad0fe0f0) 0xfa005b10(be6abc20, f6ad6088, ad0fe264, fa015430, f6ad6088, ad0fe178) 0xfa005fd8(be695da8, f6ab5750, 0, fa0156f0, b6130000, ad0fe208) 0xfa005fd8(b5caeb10, b7, ad0fe3ac, fa0156f0, f65b4158, ad0fe2a8) 0xfa005b10(b5caeb10, b7, ad0fe43c, fa015478, b6130000, ad0fe350) 0xfa005b10(b5caeb10, f6a62080, ad0fe4c8, fa015478, f5c355f8, ad0fe3e0) 0xfa005fd8(be7db4e8, b6, ad0fe55c, fa0156f0, aeed28, ad0fe468) 0xfa005b10(be7db4e8, b7, 0, fa015590, b6130000, ad0fe4f0) 0xfa005b10(be7db4e8, f6da8e80, ad0fe664, fa0156f0, fa0154c4, ad0fe580) 0xfa005fd8(be7d8e20, b7, ad0fe700, fa015270, f68e2490, ad0fe608) 0xfa005c64(be7d8e20, b7, ad0fe788, fa015430, fa0154c4, ad0fe6a0) 0xfa005c64(be7d8e20, b7, ad0fe808, fa015270, fa015624, ad0fe728) 0xfa005c64(aeed28, b8, ad0fe888, fa015430, f5c05cb0, ad0fe7a8) 0xfa005c64(b5c556a8, f66f5b10, ad0fe910, fa015270, f66f5b10, ad0fe828) 0xfa00612c(aeed28, 0, 0, fa0156f0, 3349f0, ad0fe8b0) 0xfa000118(ad0fe9a0, ad0fead8, a, f66f5668, fa00aae0, ad0feb10) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(ad0fead0, ad0feacc, ad0feb04, aeed28, aeed28,
    fece7f70)
    libjvm.so`__1cKReflectionGinvoke6FnTinstanceKlassHandle_nMmethodHandle_nGHandle_
    inOobjArrayHandle_nJBasicType_4ipnGThread__pnHoopDesc__+0xeec(0, ad0fec28, ff0104d0, 1, f655dbd0, e) libjvm.so`__1cKReflectionNinvoke_method6FpnHoopDesc_nGHandle_nOobjArrayHandle_pn
    GThread__2_+0x230(be023bb0, ad0fecb0, ad0fecac, aeed28, feda0bd0, ad0ff080) libjvm.so`JVM_InvokeMethod+0x26c(ad0fede8, ad0fede4, ff005ddc, ff0073e8, f6159f00, ad0ff120) libjava.so`Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x10(aeedbc,
    ad0fed84, ad0fedec, ad0fede8, ad0fede4, fece6088) 0xfa4067a8(be07f5a8, be7d8938, b5c53fc0, fa015430, 20, 0) 0xfa4062a8(be7d8e28, be7d8938, b5c53fc0, fa013bc8, bd0ac0f0, ad0fee58) 0xfa226284(be7d8e40, be7d8938, b5c53fc0, bd0ac040, f6159f00, 1) 0xfa225fa0(be07f5a8, be7d8938, b5c53fc0, 1, f5c2a550, f5c2a550) 0xfa005b10(be035120, f660cb18, ad0ff0e8, fa015270, f661f5d0, ad0fefe8) 0xfa005fd8(be0281a0, f660cb18, ad0ff184, fa0156f0, f6226670, ad0ff080) 0xfa005fd8(be023b70, b6, 49, fa0156f0, f6159f00, ad0ff120) 0xfa005b10(be023b70, b7, ad0ff2e0, fa0137d8, 0, ad0ff1e8) 0xfa005b10(be023b70, f660cb18, ad0ff370, fa015430, 20, ad0ff280) 0xfa005fd8(be0741e0, f660cb18, ad0ff408, fa0156f0, bd0ac0f0, ad0ff310) 0xfa005fd8(be066d20, f660cb18, ad0ff4a0, fa0156f0, 42a165e0, ad0ff3a8) 0xfa005fd8(be05f6d0, f660cb18, ad0ff530, fa0156f0, 1, ad0ff440) 0xfa005fd8(be05a1b8, b6, ad0ff600, fa0156f0, f620a1f8, ad0ff4c0) 0xfa005b10(be05a1b8, b6, 0, fa015270, b6130000, ad0ff588) 0xfa005b10(be023af0, b6, 0, fa015270, f5c045c0, ad0ff630) 0xfa005b10(be0d4ed0, f65f5b80, ad0ff7d8, fa015270, f6d80ae8, ad0ff6c8) 0xfa00612c(be0ab2f0, f65f5b80, ad0ff7e0, fa0156f0, f6560da8, ad0ff778) 0xfa00612c(be0b84d0, b6, ad0ff8f8, fa0156f0, 0, ad0ff810) 0xfa005c64(be0b84d0, b6, ad0ff900, fa015270, f6560da8, ad0ff898) 0xfa005c64(be0af510, f5c1e740, ad0ffa24, fa015270, fa013848, ad0ff930) 0xfa00612c(be0ab2f0, b7, ad0ffaac, fa0156f0, 0, ad0ff9c0) 0xfa005c64(be0ab2f0, f5c1e740, ad0ffb2c, fa015430, 0, ad0ffa48) 0xfa00612c(b5d4ea98, f5c1e740, ad0ffba4, fa0156f0, 0, ad0ffad0) 0xfa00612c(ad0ffba8, 0, 0, fa0156f0, 3349f0, ad0ffb48) 0xfa000118(ad0ffc30, ad0ffe98, a, f5c1efd8, fa00aae0, ad0ffdb8) libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallAr
    guments_pnGThread__v_+0x274(ad0ffe90, ad0ffcf8, ad0ffdb0, aeed28, aeed28,
    ad0ffd08)
    libjvm.so`__1cJJavaCallsMcall_virtual6FpnJJavaValue_nLKlassHandle_nMsymbolHandle
    _4pnRJavaCallArguments_pnGThread__v_+0x164(feff0000, ae82b8, ad0ffda4, ad0ffda0 , ad0ffdb0, aeed28) libjvm.so`__1cJJavaCallsMcall_virtual6FpnJJavaValue_nGHandle_nLKlassHandle_nMsym
    bolHandle_5pnGThread__v_+0x60(ad0ffe90, ad0ffe8c, ad0ffe84, ad0ffe7c, ad0ffe74,
    aeed28)
    libjvm.so`__1cMthread_entry6FpnKJavaThread_pnGThread__v_+0x128(aeed28, aeed28, af6758, ae82b8, 319508, fecd6a5c) libjvm.so`__1cKJavaThreadDrun6M_v_+0x288(aeed28, ffffffe2, ff00f808, ffff8000, 0 , 0) libjvm.so`_start+0x134(aeed28, 0, 0, 0, 0, 0) libthread.so.1`_lwp_start(0, 0, 0, 0, 0, 0)

    Hi there
    Not sure which jdk you are using but I am guessing you are using native code?
    libkernel32.so
    See http://java.sun.com/j2se/1.4.2/docs/guide/vm/signal-chaining.html
    Start your application this way, this should solve your problem.
    export LD_PRELOAD=<libjvm.so dir>/libjsig.so; java_application (ksh)
    setenv LD_PRELOAD <libjvm.so dir>/libjsig.so; java_application (csh)
    Also, even if u are using 1.3.1, u can get the libjsig.so from 1.4.2 and do the same.
    Hope this helps.

  • Java Thread run some day then death ,use jstack check it,it  run again, is

    hi all;
    I write a java program run as linux daemon,
    command line is >nohup java myclass &>/dev/null
    it run some day ,then death, ,look like death lock ,but thread not exit
    if i use jstack checke it ,it run again!
    my env is
    Linux version 2.4.20 ,redhat linux
    jstack 14616
    Attaching to process ID 14616, please wait...
    Debugger attached successfully.
    Client compiler detected.
    JVM version is 1.5.0_02-b09
    my program like
    commandline nohuo java StartUp >/dev/null &
    public Class StartUp{
    public static void main(String[] argv){
       Connection con = getDBConnection
         Thread t1 = new Thread(new MyRun(con));
      t1.start();
         Thread t2 = new Thread(new MyRun(con));
      t2.start();
      for(;;){
      Thread.sleep(100);
    public class MyRun implements Runnable{
    Connection con;
    public MyRun(Connection c){con = c;}
    public void run(){
         for(;;){
         object = readData(con);
         process(object);
         log.info("watch info ....");
         Thread.sleep(500);
    }

    Today i found my program hang, i use kill -SIGQUIT to print thead trace
    but i can't find the bug,after send singal ,the thread run again!
    another question
    how to detect a thread is hang?and use another thread restart it?
    thread dump
    Full thread dump Java HotSpot(TM) Client VM (1.5.0_02-b09 mixed mode, sharing):
    "pool-1-thread-2" prio=1 tid=0x08447858 nid=0x5aa6 waiting on condition [0x4680f000..0x4681021c]
    at sun.misc.Unsafe.park(Native Method)
    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:118)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1772)
    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:359)
    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:470)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:674)
    at java.lang.Thread.run(Thread.java:595)
    "pool-1-thread-1" prio=1 tid=0x08392740 nid=0x5aa5 waiting on condition [0x4678f000..0x4678ff1c]
    at sun.misc.Unsafe.park(Native Method)
    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:118)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1772)
    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:359)
    at com.ejet.mms.MmsSend.run(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
    at java.lang.Thread.run(Thread.java:595)
    "Low Memory Detector" daemon prio=1 tid=0x080a18b0 nid=0x5a9f runnable [0x00000000..0x00000000]
    "CompilerThread0" daemon prio=1 tid=0x080a0360 nid=0x5a9e waiting on condition [0x00000000..0x417e2c04]
    "Signal Dispatcher" daemon prio=1 tid=0x0809f478 nid=0x5a9d waiting on condition [0x00000000..0x00000000]
    "Finalizer" daemon prio=1 tid=0x080989e8 nid=0x5a9c in Object.wait() [0x413e4000..0x413e441c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x66c18420> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x66c18420> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=1 tid=0x08097cf8 nid=0x5a9b in Object.wait() [0x41364000..0x4136451c]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x66c184a0> (a java.lang.ref.Reference$Lock)
    at java.lang.Object.wait(Object.java:474)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    - locked <0x66c184a0> (a java.lang.ref.Reference$Lock)
    "main" prio=1 tid=0x0805ae68 nid=0x5a98 waiting on condition [0xbfffc000..0xbfffc4f8]
    at java.lang.Thread.sleep(Native Method)
    at com.ejet.mms.MmsStartup.main(Unknown Source)
    "VM Thread" prio=1 tid=0x08095218 nid=0x5a9a runnable
    "VM Periodic Task Thread" prio=1 tid=0x080a2d40 nid=0x5aa0 waiting on condition

Maybe you are looking for

  • Third party issue

    hI, I placed a third party order. The final cusotmer wants to return the material back. I want the material to come back 1st scenario to me. 2nd scenario send it back to the third party vendor. Those which are repairable shall be received back by me.

  • Problem while creating Oracle Content Server Identity plug-in  in SES

    Hi, I am Integrating Oracle SES with UCM.Both UCM and Oracle SES are installed on the same machine. I have installed SESCrawlerExport compoent on UCM and also taken Snapshot of Repository. But when i am trying to create Oracle Content server Identity

  • Default settings for HP Photosmart

    How can I set the default size for copies?  I can use the "Edit" function to set the size (Normally Actual Size) but the next time I use the copier it often copies to only 50% of the size of the original and I then have to go back and change the sett

  • How to revert back from storage(buffer_pool keep) clause

    Hi, We have fired "alter TABLE APPLSYS.FND_CONCURRENT_PROGRAMS storage (buffer_pool keep);" But, now we dont want the specified table to be cached in keep pool. So, how to do the same ? Could anybody please suggest ?

  • SAP MII Build Complex XML Structure

    Hi All, I have a requirement in which I have to fetch data from multiple queries and build a xml output. I m able to execute queries, put repeater on them, and able to trace the results. But now, I want to build an xml out of this and show it as tran