Getting a thread to die...die...die...

I've got an instance of a class that extends thread with an infinite loop running in it's run method - just for kicks, it's printing out, "42" over and over again. Another class has, I believe, monitor control of this thread, because it instantiated it and called it's start() method. Now, from this other class, I call interrupt() on the class, but the thread doesn't stop printing 42. Nothing happens.
Why?
Thanks!

isInterrupted returns a boolean that tells you whether or not interrupt() worked, or at least, that's what the API told me. Interrupted() returns true if it worked, then sets it back to false. I'm not sure how that works as a stop flag, then. The problem here is that I really can't modify this program that's running the loop to have any special coding beyond making it extend Thread and have a run method - or I'm trying not to, as the user will be able to modify it, and having too many bells and whistles hanging around can be problematic. Is there anyway to remote detonate this thing? If not, I may have infinite loops like this taking up all of my memory when malicious or uninformed users modify the class!

Similar Messages

  • Not sure if thread is dying

    I have a small chat application passing sockets to seperate threads. The application is set to be a daemon thread so I can close the application that launches it.
    I added small checks throughout the application to see the number of active threads.
    There are two things happenning that I don't understand:
    1. When I first start the application there are always 61 (including newly created daemon) threads running. I assume these are necessary background threads running in the servlet container (Tomcat 5) and the JVM.
    2. When I log in with one client (creating a new socket and therefore new thread on the server's end) the thread count goes to 62. As I log in with other clients the thread count increases accordingly. The strange thing is that when I exit the client application therefore ending the run() method of that thread the first client to exit always seems to have its thread stay alive. By that I mean if I add 3 clients taking the thread count from 61 to 64, then close one client the thread count stays at 64. But then if I close another client then the thread count goes down to 63. The other strange thing is that if I close all clients the thread count remains at 62 (instead of 61 where it should be) and if I then log in another client the thread count remains at 62 but increases with every new client after that. It seems that the first client thread stays active and somehow new sockets can just replace that thread. Since none of the code is different if it's the first socket or the 20th....how can this first one not die and then even get replaced.
    Sorry for the long description....I really am not that well versed in threads. If anyone could shine some light on this problem (or even offer a suggestion as how to better monitor whether the threads are dying or not) I would really appreciate it. Thanks in advance.

    You should experiment/test a little more. Dig around until you can find out what's going on. It's not hard.
    For example, try naming all of your threads. This will allow you to see which threads are yours and which belong to the system. Then, print out the names of only the threads you created, from time to time. You might do this by matching on the name, or perhaps by assigning all of your threads to a single thread group. You also might want to print a message when your thread terminates (that is, at the very bottom of its run() method), for each thread.
    By the way, jconsole is a very useful JVM monitoring tool. It allows you to connect to your application and see which threads are running and what they are doing (among other things). It comes with the Sun JDK.
    Jim

  • Waiting for a thread to die.

    Hello, I hope you can help me...
    I am writting a jdk1.4.1 Swing application that displays a small animation. This animation is processed from within a separate thread. My program makes a call starting this 'animation thread'. For practical reasons my program needs to wait for this thread to die (and thus the full animation to be shown) before it can continue. I am waiting for the animation thread to die using Threads 'join' method. However the problem with this is that I am forcing the GUI thread to wait resulting in the animation being calculated but not displayed. And so... how can I fix this... all I want is to wait until the animation is shown.
    What I would like to do is:
    1. Start animation;
    2. wait intil animation has completed;
    3. continue with program.
    Any help or advice will be greatly appreciated.
    Thank you in advance.

    Maybe this design could work for you. You divide your program into three parts running in three separate threads.
    1. The main thread handling GUI stuff and coordination of the two other threads.
    2. A working thread doing most of what the main thread is now doing.
    3. The animation thread.
    With this division of labour the working thread is waiting for the animation thread to finish (the main GUI thread isn't). The main thread will be free at all times to react to the users input or updating the screen or whatever, while the other two threads are cooperating to produce the animation.

  • Threads not dieing

    would there be any reason for a thread not dieing after the run
    method completes ?
    my run metho completes, but the reads still appear in the '.activeCount()' result
    from Thread.currentThread() ... ???

    wow, so majinda was right; hmm.Amazingly, yes.
    i suppose to be completely sure i need to track them
    myself then ?Yes, I guess so. I looked at the API for 1.5 and noticed the following additional comments:
    "The result might not reflect concurrent activity, and might be affected by the presence of certain system threads.
    Due to the inherently imprecise nature of the result, it is recommended that this method only be used for informational purposes."
    What these "informational purposes" are, I have no idea ...
    any hints on what it uses to do this 'estimate' ... ?Not without looking at the code in more detail. Whatever it uses seems to generate race conditions though.

  • How to get a thread dump, in case of an IDE freeze

    When you're working with the IDE and if it either freezes or becomes sluggish for no apparent reason, it's recommended to generate a thread dump, and report it to Studio feedback alias ([email protected]) with a description of what happened and attach the dump to it.
    A thread dump is an invaluable source of information to IDE developers when investigating deadlocks and some performance issues. It is a textual dump of all active threads and monitors of Java apps running in a Virtual Machine.
    The ways to generate a thread dump differ depending on the platform:
    * Windows systems
    Press Ctrl-Break in the command console you used to start the IDE.
    You won't be able to see the console in case you started the IDE using the default desktop icon created by the IDE installer. To be able to generate the thread dump, you must launch the IDE using a console window (invoke Command Prompt, go to {studio-install-dir}/bin and type runide.exe), or configure the desktop shortcut properties to launch the runide.exe program instead of the default runidew.exe.
    Note: You should increase the screen buffer size of the command prompt, so that it could retian the entire thread dump output. To do that, on the command prompt where IDE is running, open the properties dialog box by right clicking on the titlebar and selecting 'properties'. Then select the 'layout tab' and increase the 'screen buffer size' parameters to - width - 200, Height - 4000.
    * Unix systems
    Press Ctrl-\ in the terminal console you used to start the JSE.
    Alternatively, you can also generate a thread dump by sending the QUIT signal to the Java VM running the JSE
    kill -QUIT process_id
    where process_id is the process number of the respective java process.
    -------Here is a sample thread dump -------
    Full thread dump Java HotSpot(TM) Client VM (1.4.2_01-b06 mixed mode):
    "Text-Layout" daemon prio=2 tid=0x0886ebd8 nid=0x4e4 in Object.wait() [9e8f000..9e8fd94]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x11730910> (a org.netbeans.editor.view.spi.ViewLayoutQueue)
    at java.lang.Object.wait(Object.java:429)
    at org.netbeans.editor.view.spi.ViewLayoutQueue.waitForTask(ViewLayoutQueue.java:128)
    - locked <0x11730910> (a org.netbeans.editor.view.spi.ViewLayoutQueue)
    at org.netbeans.editor.view.spi.ViewLayoutQueue$LayoutThread.run(ViewLayoutQueue.java:182)
    "Compilation" daemon prio=2 tid=0x0883d878 nid=0xb1c in Object.wait() [9c8f000..9c8fd94]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x1143dde0> (a java.util.LinkedList)
    at java.lang.Object.wait(Object.java:429)
    at org.netbeans.core.compiler.CompilationEngineImpl$CompilerThread.nextJobAndTask(CompilationEngineImpl.java:162)
    - locked <0x1143dde0> (a java.util.LinkedList)
    at org.netbeans.core.compiler.CompilationEngineImpl$CompilerThread.run(CompilationEngineImpl.java:175)
    "TimerQueue" daemon prio=5 tid=0x03575478 nid=0xb18 in Object.wait() [988f000..988fd94]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x10d4af60> (a javax.swing.TimerQueue)
    at javax.swing.TimerQueue.run(TimerQueue.java:231)
    - locked <0x10d4af60> (a javax.swing.TimerQueue)
    at java.lang.Thread.run(Thread.java:534)
    "AWT-EventQueue-1" prio=7 tid=0x0344fae0 nid=0xb14 in Object.wait() [3caf000..3cafd94]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x10d4afe8> (a java.awt.EventQueue)
    at java.lang.Object.wait(Object.java:429)
    at java.awt.EventQueue.getNextEvent(EventQueue.java:339)
    - locked <0x10d4afe8> (a java.awt.EventQueue)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:162)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

    You can get a thread dump (Windows only) whitout any preparation. Simply use the Stack Trace tool from this web site:
    http://tmitevski.users.mcs2.netarray.com
    It works on Windows services too.

  • HT201457 I have a mid 2011 iMac and have installed windows 8.1 on it  I costantly get system thread not handled and kernel security check failure and the Mac restarts

    I Have a mid 2011 iMac with windows 8.1 on it and constantly get system thread exception not handled and kernel security check failur

    I Have a mid 2011 iMac with windows 8.1 on it and constantly get system thread exception not handled and kernel security check failur

  • How to get each thread in the threadpool

    Hi,everyone.I'm now learning java.util.concurrent package and I have two questions about the threadpool.
    1) How to get each thread in the threadpool;
    2) How to get each thread's data in the threadpool and dispaly them onto GUI;
    e.g :
    There are 5 threads in the threadpool(ThreadPoolExecutor) and I have 100 tasks(Runnable or Callable),every task scans a directory(every task scans a different directory),how can I display the "real-time" count of the files in the directory which the current 5 threads in the threadpool scan onto the ListView Items in the GUI?

    Willings wrote:
    Hi,everyone.I'm now learning java.util.concurrent package and I have two questions about the threadpool.
    1) How to get each thread in the threadpool;You don't
    2) How to get each thread's data in the threadpool and dispaly them onto GUI;
    e.g : You don't
    There are 5 threads in the threadpool(ThreadPoolExecutor) and I have 100 tasks(Runnable or Callable),every task scans a directory(every task scans a different directory),how can I display the "real-time" count of the files in the directory which the current 5 threads in the threadpool scan onto the ListView Items in the GUI?You should notify your "monitor" when you add something to the pool, and the Runnable/Callable should notify the same "monitor" when it starts to execute, and during its processing. Finally you notify the monitor when the execution has completed.
    Kaj

  • JNI - getting a thread dump

    Hi !
    I'm using JNI to create a JVM inside of my C daemon, and it's working OK except that the JVM is hanging sometimes (rarely), and I would like to get the thread dump, like when you send SIGQUIT to the java process. But it doesn't work with my program. Why?
    Thanks
    - Rustam -

    Do you have any signal handlers installed in your native code? If so, you may have to remove them - they can interfere with the JVM's use of signals, prior to Java 1.4.
    Java 1.4 introduces a "signal chaining" facility whereby you may use your own signal handlers in native code that will be chained after the JVM's own signal handlers are called. This version of JVM includes a library for determining whether a signal is intended for the JVM or for native code in the same process.

  • Getting a thread dump

    Is there a way from within a java program to get a thread dump of the jvm? I want to write some code that watched for a certain condition, then immediatly halts the jvm and dumps all the thread state.
    Thanks for your ideas...

    Thanks, but... those methods are useful for getting a status of the current thread, or of other threads in your thread group, but that is not I'm after.
    What I need is similar to the effect of sending a SIGQUIT signal to the JVM, causing it to stop and dump all the thread state. I want to trigger that from code running in the JVM.
    Basically I am trying to track down a bug in a complex server application, where on a dual processor box (only!), the current time zone gets reset to GMT at some point. It happens at some non-deterministic point in the application's lifetime. The app is multithreaded. I was going to just write a watchdog thread that continually monitored the timezone, then when the timezone changed the watchdog would dump all thread states. After doing this a few times I was hoping to see a pattern in where the various threads were executing. Needless to say, I have examined all the code, and nothing is setting the timezone explicitly.

  • How do i get esixting Thread

    Hai to all,
    I have facing very critical Problem in thread. I have 5 textFields and 5 Checkboxs and 2 buttons(Start and Stop).I have typed filenames in textfields(5 filename to file Textfield for the perpose of reading File).While clicking the start button immediately i create 5 new Thread (Thread name same as textField name).right this place all are working fine.
    My Question is Now i will check the first Check box immediately i want to retrive particular thread of when i was entering first textField likewise i checked.. to all.
    Finally i want one solution..
    Here How do i get Particular Thread
    Regards
    K.suresh

    If you are creating the threads, you should be having their references. Just use the corresponding reference.

  • Getting Stuck threads ,application is going down

    Hi All ,
    Need your expertise on the below issue . from the past 2 days we are getting stuck thread issues .  can you please provide insight  into the below issue  please ?
    ===== FULL THREAD DUMP ===============
      Wed Jan 8 09:28:23 2014
      Oracle JRockit(R) R28.2.3-13-149708-1.6.0_31-20120327-1523-linux-x86_64
      "Main Thread" id=1 idx=0x4 tid=24390 prio=5 alive, waiting, native_blocked
      -- Waiting for notification on: weblogic/t3/srvr/T3Srvr@0xf18da770[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/t3/srvr/T3Srvr.waitForDeath(T3Srvr.java:981)
      ^-- Lock released while waiting: weblogic/t3/srvr/T3Srvr@0xf18da770[fat lock]
      at weblogic/t3/srvr/T3Srvr.run(T3Srvr.java:490)
      at weblogic/Server.main(Server.java:71)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "(Signal Handler)" id=2 idx=0x8 tid=24391 prio=5 alive, native_blocked, daemon
      "(OC Main Thread)" id=3 idx=0xc tid=24392 prio=5 alive, native_waiting, daemon
      "(GC Worker Thread 1)" id=? idx=0x10 tid=24393 prio=5 alive, daemon
      "(GC Worker Thread 2)" id=? idx=0x14 tid=24394 prio=5 alive, daemon
      "(GC Worker Thread 3)" id=? idx=0x18 tid=24395 prio=5 alive, daemon
      "(GC Worker Thread 4)" id=? idx=0x1c tid=24396 prio=5 alive, daemon
      "(GC Worker Thread 5)" id=? idx=0x20 tid=24397 prio=5 alive, daemon
      "(GC Worker Thread 6)" id=? idx=0x24 tid=24398 prio=5 alive, daemon
      "(GC Worker Thread 7)" id=? idx=0x28 tid=24399 prio=5 alive, daemon
      "(GC Worker Thread 8)" id=? idx=0x2c tid=24400 prio=5 alive, daemon
      "(GC Worker Thread 9)" id=? idx=0x30 tid=24401 prio=5 alive, daemon
      "(GC Worker Thread 10)" id=? idx=0x34 tid=24402 prio=5 alive, daemon
      "(GC Worker Thread 11)" id=? idx=0x38 tid=24403 prio=5 alive, daemon
      "(GC Worker Thread 12)" id=? idx=0x3c tid=24404 prio=5 alive, daemon
      "(GC Worker Thread 13)" id=? idx=0x40 tid=24405 prio=5 alive, daemon
      "(GC Worker Thread 14)" id=? idx=0x44 tid=24406 prio=5 alive, daemon
      "(GC Worker Thread 15)" id=? idx=0x48 tid=24407 prio=5 alive, daemon
      "(GC Worker Thread 16)" id=? idx=0x4c tid=24408 prio=5 alive, daemon
      "(GC Worker Thread 17)" id=? idx=0x50 tid=24409 prio=5 alive, daemon
      "(GC Worker Thread 18)" id=? idx=0x54 tid=24410 prio=5 alive, daemon
      "(Code Generation Thread 1)" id=4 idx=0x58 tid=24411 prio=5 alive, native_waiting, daemon
      "(Code Optimization Thread 1)" id=5 idx=0x5c tid=24412 prio=5 alive, native_waiting, daemon
      "(VM Periodic Task)" id=6 idx=0x60 tid=24413 prio=10 alive, native_blocked, daemon
      "Finalizer" id=7 idx=0x64 tid=24414 prio=8 alive, native_waiting, daemon
      at jrockit/memory/Finalizer.waitForFinalizees(J[Ljava/lang/Object;)I(Native Method)
      at jrockit/memory/Finalizer.access$700(Finalizer.java:12)
      at jrockit/memory/Finalizer$4.run(Finalizer.java:189)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Reference Handler" id=8 idx=0x68 tid=24415 prio=10 alive, native_waiting, daemon
      at java/lang/ref/Reference.waitForActivatedQueue(J)Ljava/lang/ref/Reference;(Native Method)
      at java/lang/ref/Reference.access$100(Reference.java:11)
      at java/lang/ref/Reference$ReferenceHandler.run(Reference.java:82)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "(Sensor Event Thread)" id=9 idx=0x6c tid=24416 prio=5 alive, native_blocked, daemon
      "VM JFR Buffer Thread" id=10 idx=0x70 tid=24417 prio=5 alive, in native, daemon
      "Timer-0" id=13 idx=0x74 tid=24418 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: java/util/TaskQueue@0xf190d120[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at java/util/TimerThread.mainLoop(Timer.java:483)
      ^-- Lock released while waiting: java/util/TaskQueue@0xf190d120[fat lock]
      at java/util/TimerThread.run(Timer.java:462)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Timer-1" id=14 idx=0x78 tid=24419 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: java/util/TaskQueue@0xf190d188[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/util/TimerThread.mainLoop(Timer.java:509)
      ^-- Lock released while waiting: java/util/TaskQueue@0xf190d188[fat lock]
      at java/util/TimerThread.run(Timer.java:462)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[STUCK] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" id=15 idx=0x7c tid=24420 prio=1 alive, blocked, native_blocked, daemon
      -- Blocked trying to get lock: oracle/jdbc/driver/T4CConnection@0xe4b45e08[thin lock]
      at jrockit/vm/Threads.sleep(I)V(Native Method)
      at jrockit/vm/Locks.waitForThinRelease(Locks.java:955)[optimized]
      at jrockit/vm/Locks.monitorEnterSecondStageHard(Locks.java:1083)
      at jrockit/vm/Locks.monitorEnterSecondStage(Locks.java:1005)
      at jrockit/vm/Locks.monitorEnter(Locks.java:2179)
      at oracle/jdbc/driver/PhysicalConnection.rollback(PhysicalConnection.java:3896)
      at weblogic/jdbc/wrapper/Connection.forcedCleanup(Connection.java:153)
      at weblogic/common/resourcepool/ResourcePoolImpl.timeoutInactiveResources(ResourcePoolImpl.java:1953)
      at weblogic/common/resourcepool/ResourcePoolImpl.access$1500(ResourcePoolImpl.java:41)
      at weblogic/common/resourcepool/ResourcePoolImpl$ResourcePoolMaintanenceTask.timerExpired(ResourcePoolImpl.java:2675)
      at weblogic/timers/internal/TimerImpl.run(TimerImpl.java:273)
      at weblogic/work/SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
      at weblogic/work/ExecuteThread.execute(ExecuteThread.java:209)
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:178)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "JFR request timer" id=16 idx=0x80 tid=24421 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: java/util/TaskQueue@0xf190d208[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at java/util/TimerThread.mainLoop(Timer.java:483)
      ^-- Lock released while waiting: java/util/TaskQueue@0xf190d208[fat lock]
      at java/util/TimerThread.run(Timer.java:462)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "weblogic.time.TimeEventGenerator" id=18 idx=0x84 tid=24422 prio=9 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/time/common/internal/TimeTable@0xf190e690[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at weblogic/time/common/internal/TimeTable.snooze(TimeTable.java:286)
      ^-- Lock released while waiting: weblogic/time/common/internal/TimeTable@0xf190e690[fat lock]
      at weblogic/time/common/internal/TimeEventGenerator.run(TimeEventGenerator.java:117)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "JMAPI event thread" id=19 idx=0x88 tid=24423 prio=5 alive, in native, daemon
      "weblogic.timers.TimerThread" id=20 idx=0x8c tid=24424 prio=9 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/timers/internal/TimerThread@0xf190d310[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at weblogic/timers/internal/TimerThread$Thread.run(TimerThread.java:262)
      ^-- Lock released while waiting: weblogic/timers/internal/TimerThread@0xf190d310[fat lock]
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'" id=21 idx=0x90 tid=24425 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xf190dfe8[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xf190dfe8[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" id=24 idx=0x94 tid=24426 prio=5 alive, blocked, native_blocked, daemon
      -- Blocked trying to get lock: java/lang/String@0xf18a6480[fat lock]
      at jrockit/vm/Threads.waitForUnblockSignal()V(Native Method)
      at jrockit/vm/Locks.fatLockBlockOrSpin(Locks.java:1411)[optimized]
      at jrockit/vm/Locks.lockFat(Locks.java:1512)[optimized]
      at jrockit/vm/Locks.monitorEnterSecondStageHard(Locks.java:1054)[optimized]
      at jrockit/vm/Locks.monitorEnterSecondStage(Locks.java:1005)[optimized]
      at jrockit/vm/Locks.monitorEnter(Locks.java:2179)[optimized]
      at weblogic/socket/EPollSocketMuxer.processSockets(EPollSocketMuxer.java:153)
      at weblogic/socket/SocketReaderRequest.run(SocketReaderRequest.java:29)
      at weblogic/socket/SocketReaderRequest.execute(SocketReaderRequest.java:42)
      at weblogic/kernel/ExecuteThread.execute(ExecuteThread.java:145)
      at weblogic/kernel/ExecuteThread.run(ExecuteThread.java:117)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'" id=25 idx=0x98 tid=24427 prio=5 alive, in native, daemon
      at jrockit/ext/epoll/EPoll.epollWait0(ILjava/nio/ByteBuffer;II)I(Native Method)
      at jrockit/ext/epoll/EPoll.epollWait(EPoll.java:115)
      at weblogic/socket/EPollSocketMuxer.processSockets(EPollSocketMuxer.java:156)
      ^-- Holding lock: java/lang/String@0xf18a6480[fat lock]
      at weblogic/socket/SocketReaderRequest.run(SocketReaderRequest.java:29)
      at weblogic/socket/SocketReaderRequest.execute(SocketReaderRequest.java:42)
      at weblogic/kernel/ExecuteThread.execute(ExecuteThread.java:145)
      at weblogic/kernel/ExecuteThread.run(ExecuteThread.java:117)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" id=26 idx=0x9c tid=24428 prio=5 alive, blocked, native_blocked, daemon
      -- Blocked trying to get lock: java/lang/String@0xf18a6480[fat lock]
      at jrockit/vm/Threads.waitForUnblockSignal()V(Native Method)
      at jrockit/vm/Locks.fatLockBlockOrSpin(Locks.java:1411)[optimized]
      at jrockit/vm/Locks.lockFat(Locks.java:1512)[optimized]
      at jrockit/vm/Locks.monitorEnterSecondStageHard(Locks.java:1054)[optimized]
      at jrockit/vm/Locks.monitorEnterSecondStage(Locks.java:1005)[optimized]
      at jrockit/vm/Locks.monitorEnter(Locks.java:2179)[optimized]
      at weblogic/socket/EPollSocketMuxer.processSockets(EPollSocketMuxer.java:153)
      at weblogic/socket/SocketReaderRequest.run(SocketReaderRequest.java:29)
      at weblogic/socket/SocketReaderRequest.execute(SocketReaderRequest.java:42)
      at weblogic/kernel/ExecuteThread.execute(ExecuteThread.java:145)
      at weblogic/kernel/ExecuteThread.run(ExecuteThread.java:117)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "ExecuteThread: '3' for queue: 'weblogic.socket.Muxer'" id=27 idx=0xa0 tid=24429 prio=5 alive, blocked, native_blocked, daemon
      -- Blocked trying to get lock: java/lang/String@0xf18a6480[fat lock]
      at jrockit/vm/Threads.waitForUnblockSignal()V(Native Method)
      at jrockit/vm/Locks.fatLockBlockOrSpin(Locks.java:1411)[optimized]
      at jrockit/vm/Locks.lockFat(Locks.java:1512)[optimized]
      at jrockit/vm/Locks.monitorEnterSecondStageHard(Locks.java:1054)[optimized]
      at jrockit/vm/Locks.monitorEnterSecondStage(Locks.java:1005)[optimized]
      at jrockit/vm/Locks.monitorEnter(Locks.java:2179)[optimized]
      at weblogic/socket/EPollSocketMuxer.processSockets(EPollSocketMuxer.java:153)
      at weblogic/socket/SocketReaderRequest.run(SocketReaderRequest.java:29)
      at weblogic/socket/SocketReaderRequest.execute(SocketReaderRequest.java:42)
      at weblogic/kernel/ExecuteThread.execute(ExecuteThread.java:145)
      at weblogic/kernel/ExecuteThread.run(ExecuteThread.java:117)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "VDE Transaction Processor Thread" id=30 idx=0xa4 tid=24430 prio=2 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: com/octetstring/vde/backend/standard/TransactionProcessor@0xf190e0d0[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at com/octetstring/vde/backend/standard/TransactionProcessor.waitChange(TransactionProcessor.java:367)
      ^-- Lock released while waiting: com/octetstring/vde/backend/standard/TransactionProcessor@0xf190e0d0[fat lock]
      at com/octetstring/vde/backend/standard/TransactionProcessor.run(TransactionProcessor.java:212)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_78" id=248 idx=0xa8 tid=28978 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "DoSManager" id=33 idx=0xac tid=24432 prio=6 alive, sleeping, native_waiting, daemon
      at java/lang/Thread.sleep(J)V(Native Method)
      at com/octetstring/vde/DoSManager.run(DoSManager.java:433)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Thread-12" id=34 idx=0xb0 tid=24433 prio=5 alive, parked, native_blocked
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xf48abb88
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at weblogic/utils/concurrent/JDK15ConcurrentBlockingQueue.take(JDK15ConcurrentBlockingQueue.java:89)
      at weblogic/store/internal/PersistentStoreImpl.getOutstandingWork(PersistentStoreImpl.java:672)
      at weblogic/store/internal/PersistentStoreImpl.run(PersistentStoreImpl.java:721)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Timer-2" id=35 idx=0xb4 tid=24434 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: java/util/TaskQueue@0xf5cf4fc0[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/util/TimerThread.mainLoop(Timer.java:509)
      ^-- Lock released while waiting: java/util/TaskQueue@0xf5cf4fc0[fat lock]
      at java/util/TimerThread.run(Timer.java:462)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Timer-3" id=37 idx=0xb8 tid=24435 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: java/util/TaskQueue@0xf5c14d00[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/util/TimerThread.mainLoop(Timer.java:509)
      ^-- Lock released while waiting: java/util/TaskQueue@0xf5c14d00[fat lock]
      at java/util/TimerThread.run(Timer.java:462)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "DBQueueList" id=36 idx=0xbc tid=24436 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: java/lang/Object@0xf5c24d00[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at com/demantra/applicationServer/metaDataObjects/dbQueue/DBQueueList.run(DBQueueList.java:256)
      ^-- Lock released while waiting: java/lang/Object@0xf5c24d00[fat lock]
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "DemantraWorkflowLogCleaner" id=38 idx=0xc0 tid=24437 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: com/demantra/workflow/util/WorkflowServer$LogCleaner@0xe4abf950[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at com/demantra/workflow/util/WorkflowServer$LogCleaner.run(WorkflowServer.java:1379)
      ^-- Lock released while waiting: com/demantra/workflow/util/WorkflowServer$LogCleaner@0xe4abf950[fat lock]
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "WFProcess_0" id=39 idx=0xc4 tid=24438 prio=5 alive, in native, daemon
      at jrockit/net/SocketNativeIO.readBytesPinned(Ljava/io/FileDescriptor;[BIII)I(Native Method)
      at jrockit/net/SocketNativeIO.socketRead(SocketNativeIO.java:32)
      at java/net/SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I(SocketInputStream.java)
      at java/net/SocketInputStream.read(SocketInputStream.java:129)
      at oracle/net/ns/Packet.receive(Packet.java:293)
      at oracle/net/ns/DataPacket.receive(DataPacket.java:104)
      at oracle/net/ns/NetInputStream.getNextPacket(NetInputStream.java:315)[optimized]
      at oracle/net/ns/NetInputStream.read(NetInputStream.java:260)
      at oracle/net/ns/NetInputStream.read(NetInputStream.java:185)
      at oracle/net/ns/NetInputStream.read(NetInputStream.java:102)
      at oracle/jdbc/driver/T4CSocketInputStreamWrapper.readNextPacket(T4CSocketInputStreamWrapper.java:124)
      at oracle/jdbc/driver/T4CSocketInputStreamWrapper.read(T4CSocketInputStreamWrapper.java:80)
      at oracle/jdbc/driver/T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1136)
      at oracle/jdbc/driver/T4CMAREngine.unmarshalSB1(T4CMAREngine.java:1113)
      at oracle/jdbc/driver/T4CTTIfun.receive(T4CTTIfun.java:288)
      at oracle/jdbc/driver/T4CTTIfun.doRPC(T4CTTIfun.java:191)
      at oracle/jdbc/driver/T4C8Oall.doOALL(T4C8Oall.java:523)
      at oracle/jdbc/driver/T4CStatement.doOall8(T4CStatement.java:193)
      at oracle/jdbc/driver/T4CStatement.executeForRows(T4CStatement.java:998)
      at oracle/jdbc/driver/OracleStatement.doExecuteWithTimeout(OracleStatement.java:1315)
      at oracle/jdbc/driver/OracleStatement.executeInternal(OracleStatement.java:1890)
      at oracle/jdbc/driver/OracleStatement.execute(OracleStatement.java:1855)
      ^-- Holding lock: oracle/jdbc/driver/T4CConnection@0xe4b45e08[thin lock]
      at oracle/jdbc/driver/OracleStatementWrapper.execute(OracleStatementWrapper.java:304)
      at weblogic/jdbc/wrapper/Statement.execute(Statement.java:466)
      at org/apache/commons/dbcp/DelegatingStatement.execute(DelegatingStatement.java:264)
      at com/demantra/applicationServer/services/DBServicesCommon.executeSelect(DBServicesCommon.java:1464)
      at com/demantra/applicationServer/services/DBServices.executeSelect(DBServices.java:663)
      at com/demantra/applicationServer/services/DBServicesCommon.createMaterializedViewAs(DBServicesCommon.java:1143)
      at com/demantra/applicationServer/services/DBServices.createMaterializedViewAs(DBServices.java:429)
      at com/demantra/applicationServer/services/queryrun/ExportDataHandler.exportData(ExportDataHandler.java:53)
      at com/demantra/applicationServer/services/queryrun/ExportRunner.exportData(ExportRunner.java:62)
      at com/demantra/applicationServer/metaDataObjects/transfer/profiles/QueryProfile.exportProfile(QueryProfile.java:1002)
      ^-- Holding lock: com/demantra/applicationServer/metaDataObjects/transfer/profiles/QueryProfile@0xe4aa5cd8[biased lock]
      at com/demantra/applicationServer/metaDataObjects/transfer/profiles/IntegrationProfile.exportData(IntegrationProfile.java:331)
      at com/demantra/applicationServer/metaDataObjects/transfer/Transfer.exportData(Transfer.java:370)
      at com/demantra/workflow/step/TransferStep.doExecute(TransferStep.java:266)
      at com/demantra/workflow/step/LinkedStep.execute(LinkedStep.java:914)
      at com/demantra/workflow/process/WFProcess.mainLoop(WFProcess.java:1259)
      at com/demantra/workflow/process/WFProcess.run(WFProcess.java:654)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "WFProcess_1" id=40 idx=0xc8 tid=24439 prio=5 alive, sleeping, native_waiting, daemon
      at java/lang/Thread.sleep(J)V(Native Method)
      at com/demantra/workflow/process/WFProcess.checkStepEndConditions(WFProcess.java:1405)
      at com/demantra/workflow/process/WFProcess.mainLoop(WFProcess.java:1284)
      at com/demantra/workflow/process/WFProcess.run(WFProcess.java:654)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "WFProcess_2" id=41 idx=0xcc tid=24440 prio=5 alive, sleeping, native_waiting, daemon
      at java/lang/Thread.sleep(J)V(Native Method)
      at com/demantra/workflow/process/WFProcess.checkStepEndConditions(WFProcess.java:1405)
      at com/demantra/workflow/process/WFProcess.mainLoop(WFProcess.java:1284)
      at com/demantra/workflow/process/WFProcess.run(WFProcess.java:654)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "WFProcess_3" id=42 idx=0xd0 tid=24441 prio=5 alive, sleeping, native_waiting, daemon
      at java/lang/Thread.sleep(J)V(Native Method)
      at com/demantra/workflow/process/WFProcess.checkStepEndConditions(WFProcess.java:1405)
      at com/demantra/workflow/process/WFProcess.mainLoop(WFProcess.java:1284)
      at com/demantra/workflow/process/WFProcess.run(WFProcess.java:654)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "WFProcess_4" id=43 idx=0xd4 tid=24442 prio=5 alive, sleeping, native_waiting, daemon
      at java/lang/Thread.sleep(J)V(Native Method)
      at com/demantra/workflow/process/WFProcess.checkStepEndConditions(WFProcess.java:1405)
      at com/demantra/workflow/process/WFProcess.mainLoop(WFProcess.java:1284)
      at com/demantra/workflow/process/WFProcess.run(WFProcess.java:654)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "WFProcess_5" id=44 idx=0xd8 tid=24443 prio=5 alive, sleeping, native_waiting, daemon
      at java/lang/Thread.sleep(J)V(Native Method)
      at com/demantra/workflow/process/WFProcess.checkStepEndConditions(WFProcess.java:1405)
      at com/demantra/workflow/process/WFProcess.mainLoop(WFProcess.java:1284)
      at com/demantra/workflow/process/WFProcess.run(WFProcess.java:654)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "WFProcess_6" id=45 idx=0xdc tid=24444 prio=5 alive, sleeping, native_waiting, daemon
      at java/lang/Thread.sleep(J)V(Native Method)
      at com/demantra/workflow/process/WFProcess.checkStepEndConditions(WFProcess.java:1405)
      at com/demantra/workflow/process/WFProcess.mainLoop(WFProcess.java:1284)
      at com/demantra/workflow/process/WFProcess.run(WFProcess.java:654)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "WFProcess_7" id=46 idx=0xe0 tid=24445 prio=5 alive, sleeping, native_waiting, daemon
      at java/lang/Thread.sleep(J)V(Native Method)
      at com/demantra/workflow/process/WFProcess.checkStepEndConditions(WFProcess.java:1405)
      at com/demantra/workflow/process/WFProcess.mainLoop(WFProcess.java:1284)
      at com/demantra/workflow/process/WFProcess.run(WFProcess.java:654)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_86" id=256 idx=0xe4 tid=28986 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_80" id=250 idx=0xe8 tid=28980 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_85" id=255 idx=0xec tid=28985 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_84" id=254 idx=0xf0 tid=28984 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_87" id=257 idx=0xf4 tid=28987 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_81" id=251 idx=0xf8 tid=28981 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_83" id=253 idx=0xfc tid=28983 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "WFProcess_8" id=54 idx=0x100 tid=24453 prio=5 alive, sleeping, native_waiting, daemon
      at java/lang/Thread.sleep(J)V(Native Method)
      at com/demantra/workflow/process/WFProcess.checkStepEndConditions(WFProcess.java:1405)
      at com/demantra/workflow/process/WFProcess.mainLoop(WFProcess.java:1284)
      at com/demantra/workflow/process/WFProcess.run(WFProcess.java:654)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_82" id=252 idx=0x104 tid=28982 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_79" id=249 idx=0x108 tid=28979 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_92" id=262 idx=0x10c tid=28992 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Thread-17" id=58 idx=0x110 tid=24457 prio=5 alive, parked, native_blocked
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe4a33f00
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at weblogic/utils/concurrent/JDK15ConcurrentBlockingQueue.take(JDK15ConcurrentBlockingQueue.java:89)
      at weblogic/store/internal/PersistentStoreImpl.getOutstandingWork(PersistentStoreImpl.java:672)
      at weblogic/store/internal/PersistentStoreImpl.run(PersistentStoreImpl.java:721)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "DynamicListenThread[Default]" id=60 idx=0x114 tid=24458 prio=9 alive, in native, daemon
      at java/net/PlainSocketImpl.socketAccept(Ljava/net/SocketImpl;)V(Native Method)
      at java/net/PlainSocketImpl.accept(PlainSocketImpl.java:408)
      ^-- Holding lock: java/net/SocksSocketImpl@0xe4aec048[biased lock]
      at java/net/ServerSocket.implAccept(ServerSocket.java:462)
      at java/net/ServerSocket.accept(ServerSocket.java:430)
      at weblogic/socket/WeblogicServerSocket.accept(WeblogicServerSocket.java:38)
      at weblogic/server/channels/DynamicListenThread$SocketAccepter.accept(DynamicListenThread.java:535)
      at weblogic/server/channels/DynamicListenThread$SocketAccepter.access$200(DynamicListenThread.java:417)
      at weblogic/server/channels/DynamicListenThread.run(DynamicListenThread.java:173)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'" id=61 idx=0x118 tid=24459 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe4a52f68[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe4a52f68[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'" id=62 idx=0x11c tid=24460 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe4afa538[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe4afa538[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'" id=63 idx=0x120 tid=24461 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe4a626a8[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe4a626a8[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_90" id=260 idx=0x124 tid=28990 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_88" id=258 idx=0x128 tid=28988 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_89" id=259 idx=0x12c tid=28989 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_91" id=261 idx=0x130 tid=28991 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_260" id=585 idx=0x134 tid=29439 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Timer-6" id=69 idx=0x138 tid=26756 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: java/util/TaskQueue@0xe17170f0[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/util/TimerThread.mainLoop(Timer.java:509)
      ^-- Lock released while waiting: java/util/TaskQueue@0xe17170f0[fat lock]
      at java/util/TimerThread.run(Timer.java:462)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Event_Manager_67" id=923 idx=0x13c tid=29870 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xf4b91b40
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Task_Loader_Thread" id=71 idx=0x140 tid=27086 prio=5 alive, sleeping, native_waiting, daemon
      at java/lang/Thread.sleep(J)V(Native Method)
      at com/demantra/common/task/TaskLoader.run(TaskLoader.java:133)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "Query_Execution_268" id=608 idx=0x144 tid=29473 prio=5 alive, parked, native_blocked, daemon
      -- Parking to wait for: java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject@0xe2f645d8
      at jrockit/vm/Locks.park0(J)V(Native Method)
      at jrockit/vm/Locks.park(Locks.java:2230)
      at sun/misc/Unsafe.park(ZJ)V(Native Method)
      at java/util/concurrent/locks/LockSupport.park(LockSupport.java:156)
      at java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
      at java/util/concurrent/LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
      at java/util/concurrent/ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
      at java/util/concurrent/ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
      at java/lang/Thread.run(Thread.java:662)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'" id=73 idx=0x148 tid=28139 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe2ffb420[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe2ffb420[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'" id=74 idx=0x14c tid=28140 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe2feb970[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe2feb970[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'" id=75 idx=0x150 tid=28141 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe300ab10[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe300ab10[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'" id=76 idx=0x154 tid=28142 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe2f55dc0[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe2f55dc0[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'" id=77 idx=0x158 tid=28143 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe2f63970[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe2f63970[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '10' for queue: 'weblogic.kernel.Default (self-tuning)'" id=78 idx=0x15c tid=28144 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe2f73640[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe2f73640[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '11' for queue: 'weblogic.kernel.Default (self-tuning)'" id=79 idx=0x160 tid=28145 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe2fec498[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe2fec498[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '12' for queue: 'weblogic.kernel.Default (self-tuning)'" id=80 idx=0x164 tid=28146 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe2f82d20[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe2f82d20[fat lock]
      at weblogic/work/ExecuteThread.run(ExecuteThread.java:183)
      at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
      -- end of trace
      "[ACTIVE] ExecuteThread: '13' for queue: 'weblogic.kernel.Default (self-tuning)'" id=81 idx=0x168 tid=28147 prio=5 alive, waiting, native_blocked, daemon
      -- Waiting for notification on: weblogic/work/ExecuteThread@0xe2fa0458[fat lock]
      at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
      at java/lang/Object.wait(J)V(Native Method)
      at java/lang/Object.wait(Object.java:485)
      at weblogic/work/ExecuteThread.waitForRequest(ExecuteThread.java:162)
      ^-- Lock released while waiting: weblogic/work/ExecuteThread@0xe2fa0458[fat lock]

    Check -Xmx and -Xms start parameters for java in opmn.xml for the container you are workingk, as well in the Console you can change this in the Properties for the container.
    Greetings

  • Has the AWT-thread just died on anyone?

    I was just curious if this has ever happened to anyone but me...
    We were running our Swing UI, and the application stopped painting. I did a thread dump of the VM (snippet attached), and noticed that the default 'AWT-EventQueue-0' was missing.
    //...BEGINNING OF SNIPPET
    "AWT-Windows" prio=7 tid=0x8a62860 nid=0x354 runnable [0xae0f000..0xae0fdbc]
            at sun.awt.windows.WToolkit.eventLoop(Native Method)
            at sun.awt.windows.WToolkit.run(Unknown Source)
            at java.lang.Thread.run(Unknown Source)
    "SunToolkit.PostEventQueue-0" prio=7 tid=0x8a61db8 nid=0x900 waiting on monitor
    [0xadcf000..0xadcfdbc]
            at java.lang.Object.wait(Native Method)
            at java.lang.Object.wait(Unknown Source)
            at sun.awt.PostEventQueue.run(Unknown Source)
    "Signal Dispatcher" daemon prio=10 tid=0x239df8 nid=0x6a0 waiting on monitor [0.
    .0]
    "Finalizer" daemon prio=9 tid=0x801db8 nid=0xc50 waiting on monitor [0x8c4f000..
    0x8c4fdbc]
            at java.lang.Object.wait(Native Method)
            at java.lang.ref.ReferenceQueue.remove(Unknown Source)
            at java.lang.ref.ReferenceQueue.remove(Unknown Source)
            at java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source)
    "Reference Handler" daemon prio=10 tid=0x8990848 nid=0x8a8 waiting on monitor [0
    x8c0f000..0x8c0fdbc]
            at java.lang.Object.wait(Native Method)
            at java.lang.Object.wait(Unknown Source)
            at java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)
    "VM Thread" prio=5 tid=0x237718 nid=0xf34 runnable
    "VM Periodic Task Thread" prio=10 tid=0x803b10 nid=0x7d8 waiting on monitor
    "Suspend Checker Thread" prio=10 tid=0x239498 nid=0xa54 runnable
    //END CODE SNIPPETDoes anyone have any idea why this would occur? (Of course, this is something that I am unable to reproduce.)
    Thanks a bunch.

    I'm having the same problem, did u figure a solution for it ???

  • 17" Apple CRT from 2001 getting blurry - is it dying?

    So, my 17" Apple CRT is slowly getting blurry, starting at the bottom of the screen. The center is still sharp. I've tried fixing it with the convergence controls, but if I fix the convergence at the bottom, the center is blurry - you can see the RGB grid is out of alignment while adjusting convergence. Any suggestions? I know it's an old display, but I was hoping to get about 6 more months out of it. Thanks!
    Power Mac G4   Mac OS X (10.4.7)   1.2 Ghz owc processor

    Have you tried changing the resolution. Sometimes going for a higher res makes it clearer when it's getting a bit fuzzy round the edges.
    Liz

  • Computer getting hot and battery dying quickly

    Hi!
    Just last night my computer started running hot and I can hear the fans working. The battery life is lasting about 2.5 hours. I've had my mac since fall 2011... What should I do? PS. I'm completely computer clueless which is why I got a mac in the first place!

    Missy,
    to check you battery information open the application "System Information" in the folder "/Applications/Utilities"
    Now select "Hardware > Power" on the left and look at the following information:
    Charge Information:
         Full Charge Capacity:
    Health:
          Cycle Count:
          Condition:
    in my case the Cycle Count is 73

  • How do I get these threads to open at the most recent post?

    This is most annoying: every time I get an email notifying me that there's a new post in a thread I'm following, when I click on the link to go to that thread it sends me to the TOP of the thread and not to the post I was clicking about.
    What am I doing wrong and how do I correct this?

    Well,  I tried it with your post, Klaus, and it seemed to work correctly. Maybe it's just me. When I see an invitation in the email to click on a link to REPLY to a message, I don't click on it, because I don't want to reply to that message. I just want to read it. I might THEN want to reply to it  but I also might not. Maybe I'm just stupid that way.
    In future, I'll pretend to myself that I actually want to REPLY to every post for which I receive a notification.
    But each time I do that, I'll think about the cutlery drawer in the kitchen at Cupertino, and I'll wonder if all the knives in there are perfectly sharp.
    Thanks, folks.

Maybe you are looking for

  • How can i change the default path of installation

    I had creative cloud for a while. Today i changed the default installing folder, from the creative cloud settings/prefferences(can't remember) menu, from C to D. Then i uninstalled all the programs from adobe cs6 to take the new cc programs. When i w

  • What Happened to Photo Booth

    When we first got the computer, the kids were taking pictures all of the time. Now I asked them how come they do not do that anymore and they said it is gone.  How do you find it and get it back? 

  • ABAP WebDynpro in mobile solutions

    Hi Experts, Is it possible to use ABAP Web Dynpro to create web applications that can be run on PDAs or mobile devices that run web browsers? Best regards, Magnus

  • Pci dio 32hs burst mode

    We would like to use simultaneous input output data acquisition using the burst mode protocol. The problem is that we notice that the operations are not simultaneous: first a group and after the second. We have try all tipe of pclk (internal and exte

  • Another MBA and remote disc problem... HELP ME!!!

    This is a last ditch attempt before backing over my mba with my car... I'm trying to do an erase and install using the remote disc... it starts out great, i put the disc in my other computer, a pc, (which has worked just fine before as a remote disc)