Daemon thread

hello anybody can tell me how to make a java program run in the background without a console, just like apache running in the background without any console or other windows. thanks in advance

See http://jakarta.apache.org/commons/daemon

Similar Messages

  • What is a daemon thread in java ?

    What is a daemon thread in java ? Explain with a small example.

    Any thread marked as a daemon. There is nothing special about it. The only intersting thing is that the Java VM terminates if no non-daemon thread is running. So you usually use a daemon thread for bookkeeping tasks, so that this thread doesn't prevent the VM from successfully terminating.

  • Thread pool of daemon threads?

    If I create a Thread, it can be made a daemon thread by invoking setDaemon(true). But what if I create a thread pool via java.util.concurrent.Executors.newFixedThreadPool(NTHREADS)? How can those threads be made daemon threads?
    CBy

    Thanks Joachim! I didn't know that the newFixedThreadPool method was overloaded.

  • How to use a thread as daemon thread

    In multithreading i have undergone through daemon thread concepts and its mentioned as low priority thread which runs in the background of garbage collection.
    My query is how to make the thread daemon thread r we going to use thread priorities here.
    Can anyone demonstrate with an example reg this. I will be very much thankful to them.

    In general, threads that run application code are not daemon threads, and threads that run system code are daemon threads,so the daemon attribute is queried using the isDaemon() method; it is set using the setDaemon() method.....

  • Daemon thread still alive when the environment is closed

    I'm using the replication framework with the Java API in an OSGi container (equinox). I notice that when I'm closing the environment there is a deamon thread still alive. Each time I start a new replication environment and shut it down, one more daemon thread is added (and still running).
    Is there a way to close the replication framework and all their associated threads?
    I'm using BDB 4.7.25 - windows
    thanks
    dong

    Hi Dong,
    I don't know of a way to force the removal of the daemon thread(s).
    I believe that the thread is actually gone - as long as you are closing down the environment cleanly. The alternative to using daemon threads is to ensure that DetachCurrentThread is called by the JNI layer for each thread. Given the way the Berkeley DB Java API is implemented, that is not feasible.
    Are the additional threads causing issues?
    Regards,
    Alex

  • Java FX task daemon thread

    Hello,
    I'm working on a large scale GUI and running in to OOMs. Looking at the threads, there are hundreds of them sitting around named Java FX task daemon thread.
    Daemon Thread [Java FX task daemon thread] (Running)            
                                    Daemon Thread [Java FX task daemon thread] (Suspended)      
                                                    Unsafe.park(boolean, long) line: not available [native method]              
                                                    LockSupport.park(Object) line: 158        
                                                    AbstractQueuedSynchronizer$ConditionObject.await() line: 1987          
                                                    DelayQueue<E>.take() line: 160              
                                                    ScheduledThreadPoolExecutor$DelayedWorkQueue.take() line: 609   
                                                    ScheduledThreadPoolExecutor$DelayedWorkQueue.take() line: 602   
                                                    ScheduledThreadPoolExecutor(ThreadPoolExecutor).getTask() line: 947            
                                                    ThreadPoolExecutor$Worker.run() line: 907      
                                                    Thread.run() line: 662    Can anyone shed some light on what is starting these threads?

    I had similar issues with a server running on XP, where it kept dying randomly with no problems.
    I tracked down what was happening by getting the exit value of the java process - which may give you information regarding what happened to the process.
    For example, if CTRL+C was pressed you get a value of 130 returned in the Linux environment. Using this error information I found out why my server kept dying (which was the XP telnet window was sending dodgy key presses to the window the server was running in).
    The exit code of a process is available after it exits via $status in Unix or %errorlevel% in a PC .bat file.

  • Daemon Threads

    Hi, what I want is to connect from a daemon thread to Ldap, if I set the thread to daemon=false it works, if I set it to daemon=treu; it does'nt work anymore.
    Thanks.

    The problem was in fact when I was trying to wrote to file, and not the connection to Ldap. When the thread was set to daemon=false it worked, and I could see that the connection to Ldap was working, but when it was set to daemon=true, the thread couldn't write t the file and I thought that the connection was the problem. Anyway, thanks, the problem is solved now.

  • Daemon Threads: Can you explain this behaviour

    Hey All,
    Please refer to code segment given below. As per the defination of Daemon threads it should terminate when all other user threads die. In this case it should terminate when main thread ends as thread2 has not been initiated yet.
    The result is not consistent. We get the expected output sometimes, whereas sometimes program goes in to an infinite loop and other times excutes a few lines of thread2 and then quits.
    Can someone explain this?
    Thank you
    Vidur Gupta
    class simpleThread extends Thread
         public void run()
              System.out.println("Thread 1 daemon starts");
              babyThread thread2 = new babyThread(); //Thread2 created
              thread2.setDaemon(false); //Thread2 daemon=false
              thread2.start();          
              System.out.println("Thread 1 daemon status= "+ this.isDaemon());
              System.out.println("Thread 1 ends"); //thread1 ends
    class babyThread extends Thread
         public void run()
              System.out.println("Thread 2 starts");
              while(true) //Thread2 goes in to an infinite loop
              System.out.println("Thread 2 daemon status= "+ this.isDaemon());
    public class daemon
         public static void main(String[] args) //Main
              int i=0;
              simpleThread thread1= new simpleThread(); //Create thread1
              thread1.setDaemon(true); //Set Thread1 as Daemon
              thread1.start();
              while(i<1000000)
                   i++;
              System.out.println("Thread Main ends"); //Main ends
    }

    It's not clear what behavior you expect, or what behavior you're observing, but here's what I would expect to happen:
    thread1.start() is called.
    After that, either of two things could happen:
    1) the main thread could go into your very short spinlock counting up to 1000000
    OR
    2) thread1 starts running
    You can't predict or control which one of those happens, and it may be that on successive runs of your program, one happens sometimes and the other one happens other times.
    At some point, you'll get to where the main thread dies. If the only other thread that has been started is thread1, then, since it's a deamon, the program will die.
    However, it may be that sometimes that happens, and other times, thread1 gets enough CPU time to call thread2.start(). You may not see any output from thread2 or see the ""Thread 1 daemon status" output that comes right after t2.start() before main ends, but if t2 has been started, then you've got another non-deamon.
    Bottom line: Whether or not there's an additional non-deamon besides main depends on how the scheduler happens to schedule your threads, and you should not expect that to be consistent or predictable.

  • Can anyone tell daemon thread in simple words with an example

    can anyone tell Daemon thread in simple words (i don't understand high level language)with an example

    He reminds me of a candidate I had the ... priviledge? ... of interviewing for a web developer position not too long ago. I asked him to "reverse the characters in a string, i.e. star = rats" using his language of choice. He stands, walks to the white-board and starts to write some stuff. At that time, I turned to my boss and we start making comments to each other about the guys resume and discussing some of our current workload, giving him time to work this code out on the board. A few minutes (5 - 10) go by and I glance up to see that he has written a single line of code (and that his hands are covered in dry erase marker from having scrubbed multiple attempts off the board). His code (I believe it as a stab at either php or javascript) read:
    "reverse_string('star');"
    I looked at my boss, he looked at me ... we both blinked a couple of times and then I explained, "no - I need you to implement the reverse_string method. I want you to write the code that does the actual reversing."
    "Oh. Yeah, I can't do that."

  • What is a daemon thread?

    hi all,
    can somebody plz tell me what is daemon thread and what is the difference between daemon thread a user thread. thanx in advance..

    Daemons are background programs that run all the time
    during up-time, ready to do something that may be
    required at any point. These are NOT limited to the
    JVM, but the concept is mirrored in teh ability to
    set a java thread as daemon, as the JVM is just that:
    a Virtual Machine that mimics an environment.
    Correspondingly OSs have daemon processes (called
    d services on windows) e.g. for printing. Calling
    Thread.setDaemon() will I believe mark the thread as
    to not be destroyed until VM shutdown, and will not
    itself stop shutdown of the VM if it is still running.Maybe I got confused by all those nots but if the only threads running are daemon
    threads, the VM is allowed to stop; I made that mistake myself several times.
    This is what I ripped from the API docs:
    The Java Virtual Machine continues to execute threads until either of the following occurs:
    - The exit method of class Runtime has been called and the security manager has permitted the exit operation to take place.
    - All threads that are not daemon threads have died, either by returning from the call to the run method or by throwing an exception that propagates beyond the run method.
    It's the "continues to execute until' ... 'all threads that are *not* daemon threads
    have died" part. They should have worded that a bit less cryptic ;-)
    kind regards,
    Jos
    ps. First I thought daemon threads run under your bed while drooling sometimes ;-)

  • Garbage collector as daemon thread

    hai
    y is garbage collector made as daemon thread
    what r the primary reasons?

    http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f=1&t=012268
    Are you guys in the same class?
    The Truth About Garbage Collection
    Reference Objects and Garbage Collection
    Garbage collection and performance
    Also, please make the extra effort to write out words such as "why" and "are". The extra keystrokes won't cost much in the way of time, and the enhanced clarity will be appreciated by those communicating on a forum with international readership.
    http://faq.javaranch.com/view?UseRealWords

  • Need help  regarding Daemon threads

    Hi to All
    What are deamon threrads ?
    Why we need to set Deamon(true)?
    explain me clearly
    I know deamon threads are low prior
    Again why we need to set to true.
    Help me

    You have two threads running. Neither one is daemon. One ends. The other keeps on running.
    You have two threads running. One is daemon. The daemon thread ends. The other keeps on running.
    You have two threads running. One is daemon. The other thread ends. The application ends because the only remaining thread is a daemon.
    You have five threads running. Three are daemon. A non-daemon thread ends. All other threads keep on running. A daemon thread ends. All other threads keep on running. The only remaining non-daemon thread ends. The application ends because the only remaining threads are daemons.
    Got it?

  • Thread Operation - daemon thread

    What will be the output of the following program (with explaination)?
    public class A extends Thread {
    A() {
    setDaemon(true);
    public void run() {
    (new B()).start();
    try{
    Thread.sleep(60000);
    } catch (InterruptedException x) {}
    System.out.println("A done");
    class B extends Thread{
    public void run() {
    try{
    Thread.sleep(60000);
    } catch (InterruptedException x) {}
    System.out.println("B done");
    public static void main(String[] args) {
    (new A()).start();
    }

    If you consult the documentation for Thread.setDaemon to see what a daemon thread means; and the docs for the constructors of Thread to see what the default daemon status is, then you will understand why this program prints nothing.
    Now if you moved those prints ahead of the sleeps it might print something but it need not - all depends on scheduling.

  • Tomcat JVM is crashing frequently at "CompilerThread1 daemon"   thread

    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xb75d9837, pid=6351, tid=484600720
    # JRE version: 6.0_18-b07
    # Java VM: Java HotSpot(TM) Server VM (16.0-b13 mixed mode linux-x86 )
    # Problematic frame:
    # V [libjvm.so+0x214837]
    # 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 (0x1d6f4800): JavaThread "CompilerThread1" daemon [_thread_in_native, id=6408, stack(0x1cda6000,0x1ce27000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x00000000
    Registers:
    EAX=0x00000000, EBX=0xb7b1cde0, ECX=0x00000000, EDX=0x0aee9594
    ESP=0x1ce24d30, EBP=0x1ce24d98, ESI=0x0b2eb760, EDI=0x0b2eb72c
    EIP=0xb75d9837, CR2=0x00000000, EFLAGS=0x00010202
    Top of Stack: (sp=0x1ce24d30)
    0x1ce24d30: 0aee9594 00000001 1ce251e0 1ce251e0
    0x1ce24d40: 00000008 00042a18 0b10a09c b7723cc1
    0x1ce24d50: 00000000 00000000 0b093dc8 00000002
    0x1ce24d60: ffffffff 00000002 00000000 090dd1e0
    0x1ce24d70: 00000001 0aee9594 00000006 0b10a094
    0x1ce24d80: 0000009b 1ce2524c 01000e07 b7b1cde0
    0x1ce24d90: 00000e07 1ce251e0 1ce24ef8 b75d8d46
    0x1ce24da0: 1ce251e0 00000001 b7b25a20 b7b25a20
    Instructions: (pc=0xb75d9837)
    0xb75d9827: c2 89 57 18 8b 55 dc 8b 02 52 ff 50 40 89 45 d0
    0xb75d9837: 8b 00 8b 4f 34 21 c1 89 4f 34 8b 55 d0 8b 4e 04
    Stack: [0x1cda6000,0x1ce27000], sp=0x1ce24d30, free space=1fb1ce246c0k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x214837]
    V [libjvm.so+0x213d46]
    V [libjvm.so+0x26eb76]
    V [libjvm.so+0x26b185]
    V [libjvm.so+0x2035f7]
    V [libjvm.so+0x273a1c]
    V [libjvm.so+0x273329]
    V [libjvm.so+0x652476]
    V [libjvm.so+0x64bb0e]
    V [libjvm.so+0x55de9e]
    C [libpthread.so.0+0x55ab]
    Current CompileTask:
    C2: 44% ! com.misys.alm.commons.util.TrackerUtil.updateChildArtifact(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;[Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;)V @ 432 (1034 bytes)
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x0a541c00 JavaThread "http-9980-3" daemon [_thread_in_native, id=16245, stack(0x1c8af000,0x1c900000)]
    0x09d76400 JavaThread "http-9980-2" daemon [_thread_in_Java, id=8488, stack(0x1b228000,0x1b279000)]
    0x093cac00 JavaThread "http-9980-1" daemon [_thread_in_Java, id=7668, stack(0x1b35e000,0x1b3af000)]
    0x0a10bc00 JavaThread "TP-Monitor" daemon [_thread_blocked, id=6918, stack(0x1b3af000,0x1b400000)]
    0x0a265c00 JavaThread "TP-Processor4" daemon [_thread_in_native, id=6917, stack(0x1b70d000,0x1b75e000)]
    0x0a265800 JavaThread "TP-Processor3" daemon [_thread_blocked, id=6916, stack(0x1b75e000,0x1b7af000)]
    0x0a7ddc00 JavaThread "TP-Processor2" daemon [_thread_blocked, id=6915, stack(0x1b7af000,0x1b800000)]
    0x0a2b1400 JavaThread "TP-Processor1" daemon [_thread_blocked, id=6914, stack(0x1b95e000,0x1b9af000)]
    0x0a2ac000 JavaThread "http-9980-Acceptor-0" daemon [_thread_in_native, id=6908, stack(0x1c202000,0x1c253000)]
    0x0a473400 JavaThread "ContainerBackgroundProcessor[StandardEngine[Catalina]]" daemon [_thread_blocked, id=6907, stack(0x1b9af000,0x1ba00000)]
    0x1b408400 JavaThread "Timer-1" daemon [_thread_blocked, id=6791, stack(0x1b90a000,0x1b95b000)]
    0x09e7d000 JavaThread "Timer-0" daemon [_thread_blocked, id=6641, stack(0x1c615000,0x1c666000)]
    0x1ca8fc00 JavaThread "GC Daemon" daemon [_thread_blocked, id=6439, stack(0x1cc20000,0x1cc71000)]
    0x1d6f5400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=6409, stack(0x1cd55000,0x1cda6000)]
    =>0x1d6f4800 JavaThread "CompilerThread1" daemon [_thread_in_native, id=6408, stack(0x1cda6000,0x1ce27000)]
    0x1d6f3800 JavaThread "CompilerThread0" daemon [_thread_blocked, id=6407, stack(0x1ce27000,0x1cea8000)]
    0x1d6f2c00 JavaThread "YJPAgent-OOMESnapshotDetector" daemon [_thread_in_native, id=6406, stack(0x1cea8000,0x1cef9000)]
    0x1d6f1c00 JavaThread "YJPAgent-CPUSampler" daemon [_thread_blocked, id=6405, stack(0x1d148000,0x1d199000)]
    0x1d6e8000 JavaThread "YJPAgent-RequestListener" daemon [_thread_in_native, id=6396, stack(0x1d82c000,0x1d87d000)]
    0x1d6e7c00 JavaThread "YJPAgent-Telemetry" daemon [_thread_blocked, id=6395, stack(0x1d199000,0x1d1ea000)]
    0x1d9db400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6390, stack(0x1d8af000,0x1d900000)]
    0x1d9f0400 JavaThread "Surrogate Locker Thread (CMS)" daemon [_thread_blocked, id=6389, stack(0x1da0c000,0x1da5d000)]
    0x1d9c3800 JavaThread "YJPAgent-Process-Exit-Listener" daemon [_thread_blocked, id=6388, stack(0x1da5d000,0x1daae000)]
    0x0917bc00 JavaThread "Finalizer" daemon [_thread_blocked, id=6367, stack(0x1dcae000,0x1dcff000)]
    0x0917e000 JavaThread "Reference Handler" daemon [_thread_blocked, id=6366, stack(0x1dcff000,0x1dd50000)]
    0x08f25000 JavaThread "main" [_thread_in_native, id=6352, stack(0xb7374000,0xb73c5000)]
    Other Threads:
    0x09155400 VMThread [stack: 0x1dd56000,0x1ddd7000] [id=6365]
    0x1d6f7800 WatcherThread [stack: 0x1ccd4000,0x1cd55000] [id=6410]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    par new generation total 97728K, used 61750K [0x23290000, 0x29250000, 0x2b290000)
    eden space 97408K, 63% used [0x23290000, 0x26edd860, 0x291b0000)
    from space 320K, 0% used [0x29200000, 0x29200000, 0x29250000)
    to space 320K, 0% used [0x291b0000, 0x291b0000, 0x29200000)
    concurrent mark-sweep generation total 686096K, used 413235K [0x2b290000, 0x55094000, 0xa3290000)
    concurrent-mark-sweep perm gen total 61160K, used 38713K [0xa3290000, 0xa6e4a000, 0xb3290000)
    Dynamic libraries:
    002c2000-002dc000 r-xp 00000000 fd:00 2261857 /lib/ld-2.5.so
    002dc000-002dd000 r-xp 00019000 fd:00 2261857 /lib/ld-2.5.so
    002dd000-002de000 rwxp 0001a000 fd:00 2261857 /lib/ld-2.5.so
    002e0000-0041f000 r-xp 00000000 fd:00 2261877 /lib/libc-2.5.so
    0041f000-00420000 ---p 0013f000 fd:00 2261877 /lib/libc-2.5.so
    00420000-00422000 r-xp 0013f000 fd:00 2261877 /lib/libc-2.5.so
    00422000-00423000 rwxp 00141000 fd:00 2261877 /lib/libc-2.5.so
    00423000-00426000 rwxp 00423000 00:00 0
    00428000-0044d000 r-xp 00000000 fd:00 2261894 /lib/libm-2.5.so
    0044d000-0044e000 r-xp 00024000 fd:00 2261894 /lib/libm-2.5.so
    0044e000-0044f000 rwxp 00025000 fd:00 2261894 /lib/libm-2.5.so
    00451000-00453000 r-xp 00000000 fd:00 2261885 /lib/libdl-2.5.so
    00453000-00454000 r-xp 00001000 fd:00 2261885 /lib/libdl-2.5.so
    00454000-00455000 rwxp 00002000 fd:00 2261885 /lib/libdl-2.5.so
    00457000-0046a000 r-xp 00000000 fd:00 2261880 /lib/libpthread-2.5.so
    0046a000-0046b000 r-xp 00013000 fd:00 2261880 /lib/libpthread-2.5.so
    0046b000-0046c000 rwxp 00014000 fd:00 2261880 /lib/libpthread-2.5.so
    0046c000-0046e000 rwxp 0046c000 00:00 0
    00485000-0048c000 r-xp 00000000 fd:00 2261881 /lib/librt-2.5.so
    0048c000-0048d000 r-xp 00006000 fd:00 2261881 /lib/librt-2.5.so
    0048d000-0048e000 rwxp 00007000 fd:00 2261881 /lib/librt-2.5.so
    006e5000-006f8000 r-xp 00000000 fd:00 2261884 /lib/libnsl-2.5.so
    006f8000-006f9000 r-xp 00012000 fd:00 2261884 /lib/libnsl-2.5.so
    006f9000-006fa000 rwxp 00013000 fd:00 2261884 /lib/libnsl-2.5.so
    006fa000-006fc000 rwxp 006fa000 00:00 0
    08048000-08052000 r-xp 00000000 fd:00 5439579 /usr/java/jdk1.6.0_18/bin/java
    08052000-08053000 rwxp 00009000 fd:00 5439579 /usr/java/jdk1.6.0_18/bin/java
    08ed3000-0b7c1000 rwxp 08ed3000 00:00 0 [heap]
    19cf5000-19ffe000 rwxp 19cf5000 00:00 0
    1c253000-1c261000 r-xs 000b1000 fd:00 9994476 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis27801552943659080349sf_soap50_sdk.jar
    1c261000-1c262000 r-xs 00004000 fd:00 9994475 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis26363007992229894723saaj.jar
    1c262000-1c268000 r-xs 0004a000 fd:00 9994474 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis27755368179470462176mail.jar
    1c268000-1c26f000 r-xs 00059000 fd:00 9994473 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis26508601577286648523log4j-1.2.15.jar
    1c26f000-1c271000 r-xs 00006000 fd:00 9994472 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis25489544076553511072jaxrpc.jar
    1c271000-1c273000 r-xs 00008000 fd:00 9994471 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis21136271980145934396commons-logging.jar
    1c273000-1c276000 r-xs 0000f000 fd:00 9994470 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22003270640467629775commons-discovery.jar
    1c276000-1c28a000 r-xs 00173000 fd:00 9994469 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23053891385948624420axis.jar
    1c28a000-1c28c000 r-xs 0000c000 fd:00 9994468 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis27411805959205169693activation.jar
    1c28c000-1c28e000 r-xs 002e6000 fd:00 9994467 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22783883274223008829CSFEESBService.aar
    1c28e000-1c29c000 r-xs 000b1000 fd:00 9994466 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23371351321622465627sf_soap50_sdk.jar
    1c29c000-1c29d000 r-xs 00004000 fd:00 9994465 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22288820831745009728saaj.jar
    1c29d000-1c2a3000 r-xs 0004a000 fd:00 9994464 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23706995569129484465mail.jar
    1c2a3000-1c2aa000 r-xs 00059000 fd:00 9994463 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis28879361364145998495log4j-1.2.15.jar
    1c2aa000-1c2ac000 r-xs 00006000 fd:00 9994462 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22742112490708660545jaxrpc.jar
    1c2ac000-1c2ae000 r-xs 00008000 fd:00 9994461 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22699559983216956128commons-logging.jar
    1c2ae000-1c2b1000 r-xs 0000f000 fd:00 9994460 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis24107377805555793351commons-discovery.jar
    1c2b1000-1c2c5000 r-xs 00173000 fd:00 5475030 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis26084084880868286433axis.jar
    1c2c5000-1c2c7000 r-xs 0000c000 fd:00 5475029 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23162679860383273671activation.jar
    1c2c7000-1c2c8000 r-xs 002ee000 fd:00 5475028 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis28330942878102394679CSFEProxyWeb.aar
    1c2c8000-1c2d4000 r-xs 00091000 fd:00 5475027 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23807116137289355005sf_soap50_sdk.jar
    1c2d4000-1c2d5000 r-xs 00004000 fd:00 5475026 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis28396723900002705845saaj.jar
    1c2d5000-1c2db000 r-xs 0004a000 fd:00 5475025 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis28117391532793006319mail.jar
    1c2db000-1c2e2000 r-xs 00059000 fd:00 5475024 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis25530869754076118566log4j-1.2.15.jar
    1c2e2000-1c2e4000 r-xs 00006000 fd:00 5475023 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23209996884536823590jaxrpc.jar
    1c2e4000-1c2e6000 r-xs 00008000 fd:00 5475022 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis24411724148291575859commons-logging.jar
    1c2e6000-1c2e9000 r-xs 0000f000 fd:00 5473459 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis22989469508921805234commons-discovery.jar
    1c2e9000-1c2fd000 r-xs 00173000 fd:00 5473427 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23003225943313702190axis.jar
    1c2fd000-1c2ff000 r-xs 0000c000 fd:00 5473426 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis26910392698666596723activation.jar
    1c2ff000-1c300000 r-xs 002ca000 fd:00 5473425 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis24796406229517899618CollabnetQueryWeb.aar
    1c300000-1c4f9000 rwxp 1c300000 00:00 0
    1c4f9000-1c500000 ---p 1c4f9000 00:00 0
    1c500000-1c5fe000 rwxp 1c500000 00:00 0
    1c5fe000-1c600000 ---p 1c5fe000 00:00 0
    1c611000-1c613000 r-xs 00007000 fd:00 5473422 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis25512313672529203744mex-1.5-impl.jar
    1c613000-1c615000 r-xs 00007000 fd:00 5473418 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis29121706716215621128mex-1.5.mar
    1c615000-1c618000 ---p 1c615000 00:00 0
    1c618000-1c666000 rwxp 1c618000 00:00 0
    1c666000-1c667000 r-xs 00002000 fd:00 5473421 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis26954598024559529263axis2-jaxws-mar-1.5.mar
    1c667000-1c668000 r-xs 00005000 fd:00 5473420 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis21550234674497936367axis2-scripting-1.5.mar
    1c668000-1c66a000 r-xs 00002000 fd:00 5473419 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23565044233648453074ping-1.5.mar
    1c66a000-1c66b000 r-xs 00003000 fd:00 5473417 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis2274951722267417783mtompolicy-1.5.mar
    1c66b000-1c66d000 r-xs 00005000 fd:00 5473416 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis23407811500865596858addressing-1.5.mar
    1c66d000-1c674000 r-xs 00111000 fd:00 5441699 /usr/java/jdk1.6.0_18/jre/lib/resources.jar
    1c674000-1c677000 r-xs 00018000 fd:00 8685239 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xom-1.0.jar
    1c677000-1c6b4000 r-xs 0024f000 fd:00 8685235 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xmlbeans-2.3.0.jar
    1c6b4000-1c6b6000 r-xs 00013000 fd:00 8685233 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xml-resolver-1.2.jar
    1c6b6000-1c6be000 r-xs 00028000 fd:00 8685231 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xml-apis-1.3.02.jar
    1c6be000-1c6d2000 r-xs 000e3000 fd:00 8685229 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xercesImpl-2.6.2.jar
    1c6d2000-1c6f0000 r-xs 0027d000 fd:00 8685227 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/xalan-2.7.0.jar
    1c6f0000-1c6f6000 r-xs 00079000 fd:00 8685225 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/wstx-asl-3.2.4.jar
    1c6f6000-1c6fb000 r-xs 00020000 fd:00 8685223 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/wsdl4j-1.6.2.jar
    1c6fb000-1c700000 r-xs 00033000 fd:00 8685221 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/woden-impl-dom-1.0M8.jar
    1c700000-1c800000 rwxp 1c700000 00:00 0
    1c800000-1c83b000 r-xs 002c1000 fd:00 8685200 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jaxb-xjc-2.1.7.jar
    1c85e000-1c861000 ---p 1c85e000 00:00 0
    1c861000-1c8af000 rwxp 1c861000 00:00 0
    1c8af000-1c8b2000 ---p 1c8af000 00:00 0
    1c8b2000-1cafa000 rwxp 1c8b2000 00:00 0
    1cafa000-1cb00000 ---p 1cafa000 00:00 0
    1cb00000-1cbfd000 rwxp 1cb00000 00:00 0
    1cbfd000-1cc00000 ---p 1cbfd000 00:00 0
    1cc01000-1cc03000 r-xs 00008000 fd:00 5473415 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis27232555104038487252soapmonitor-1.5.mar
    1cc03000-1cc08000 r-xs 00020000 fd:00 8685219 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/woden-api-1.0M8.jar
    1cc08000-1cc09000 r-xs 00007000 fd:00 8685218 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/soapmonitor-1.5.jar
    1cc09000-1cc0b000 r-xs 00007000 fd:00 8685216 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/neethi-2.0.4.jar
    1cc0b000-1cc11000 r-xs 00059000 fd:00 8685213 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/mail-1.4.jar
    1cc11000-1cc18000 r-xs 00059000 fd:00 8685211 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/log4j-1.2.15.jar
    1cc18000-1cc1b000 r-xs 0001d000 fd:00 8685209 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jibx-run-1.2.1.jar
    1cc1b000-1cc20000 r-xs 0005f000 fd:00 8685207 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jibx-bind-1.2.1.jar
    1cc20000-1cc23000 ---p 1cc20000 00:00 0
    1cc23000-1cc71000 rwxp 1cc23000 00:00 0
    1cc71000-1cc73000 r-xs 00007000 fd:00 8685215 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/mex-1.5-impl.jar
    1cc73000-1cc74000 r-xs 00006000 fd:00 8685166 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-xmlbeans-1.5.jar
    1cc74000-1cc75000 r-xs 00002000 fd:00 8685165 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-transport-local-1.5.jar
    1cc75000-1cc78000 r-xs 00021000 fd:00 8685164 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-transport-http-1.5.jar
    1cc78000-1cc79000 r-xs 00002000 fd:00 8685163 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-spring-1.5.jar
    1cc79000-1cc7b000 r-xs 00014000 fd:00 8685162 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-saaj-1.5.jar
    1cc7b000-1cc7d000 r-xs 00002000 fd:00 8685161 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-mtompolicy-1.5.jar
    1cc7d000-1cc85000 r-xs 00058000 fd:00 8685160 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-metadata-1.5.jar
    1cc85000-1cc93000 r-xs 000e6000 fd:00 8685158 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-kernel-1.5.jar
    1cc93000-1cc95000 r-xs 00003000 fd:00 8685157 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-json-1.5.jar
    1cc95000-1cc96000 r-xs 00008000 fd:00 8685156 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-jibx-1.5.jar
    1cc96000-1cca3000 r-xs 00091000 fd:00 8685155 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-jaxws-1.5.jar
    1cca3000-1cca5000 r-xs 00005000 fd:00 8685154 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-jaxbri-1.5.jar
    1cca5000-1cca7000 r-xs 00005000 fd:00 8685153 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-java2wsdl-1.5.jar
    1cca7000-1cca9000 r-xs 00010000 fd:00 8685152 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-fastinfoset-1.5.jar
    1cca9000-1ccab000 r-xs 00021000 fd:00 8685151 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-corba-1.5.jar
    1ccab000-1ccaf000 r-xs 00038000 fd:00 8685150 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-codegen-1.5.jar
    1ccaf000-1ccb1000 r-xs 00028000 fd:00 8685149 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-adb-codegen-1.5.jar
    1ccb1000-1ccbc000 r-xs 000b3000 fd:00 8685148 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axis2-adb-1.5.jar
    1ccbc000-1ccc0000 r-xs 0001d000 fd:00 8685146 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axiom-impl-1.2.8.jar
    1ccc0000-1ccc3000 r-xs 00025000 fd:00 8685144 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axiom-dom-1.2.8.jar
    1ccc3000-1ccc9000 r-xs 00037000 fd:00 8685142 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/axiom-api-1.2.8.jar
    1ccc9000-1ccce000 r-xs 00068000 fd:00 8685141 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/antlr-2.7.7.jar
    1ccce000-1ccd0000 r-xs 0000e000 fd:00 8685138 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/activation-1.1.jar
    1ccd0000-1ccd4000 r-xs 0001f000 fd:00 8685237 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/XmlSchema-1.4.3.jar
    1ccd4000-1ccd5000 ---p 1ccd4000 00:00 0
    1ccd5000-1cd55000 rwxp 1ccd5000 00:00 0
    000000 00:00 0
    1d0ff000-1d100000 ---p 1d0ff000 00:00 0
    1d100000-1d103000 r-xs 00023000 fd:00 8685204 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jdom-1.0.jar
    1d103000-1d109000 r-xs 00032000 fd:00 8685202 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jaxen-1.1.1.jar
    1d109000-1d11b000 r-xs 000bf000 fd:00 8685198 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jaxb-impl-2.1.7.jar
    1d11b000-1d11e000 r-xs 00013000 fd:00 8685196 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jaxb-api-2.1.jar
    1d11e000-1d130000 r-xs 00245000 fd:00 8685194 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/icu4j-2.6.1.jar
    1d130000-1d135000 r-xs 00026000 fd:00 8685192 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/httpcore-4.0.jar
    1d135000-1d139000 r-xs 00039000 fd:00 5472277 /usr/local/tomcat/lib/tomcat-dbcp.jar
    1d139000-1d148000 r-xs 00114000 fd:00 5472282 /usr/local/tomcat/lib/catalina.jar
    1d148000-1d14b000 ---p 1d148000 00:00 0
    1d14b000-1d199000 rwxp 1d14b000 00:00 0
    1d199000-1d19c000 ---p 1d199000 00:00 0
    1d19c000-1d5ec000 rwxp 1d19c000 00:00 0
    1d5ec000-1d5ff000 r-xp 00000000 fd:00 5441669 /usr/java/jdk1.6.0_18/jre/lib/i386/libnet.so
    1d5ff000-1d600000 rwxp 00013000 fd:00 5441669 /usr/java/jdk1.6.0_18/jre/lib/i386/libnet.so
    1d600000-1d6fb000 rwxp 1d600000 00:00 0
    1d6fb000-1d700000 ---p 1d6fb000 00:00 0
    1d700000-1d800000 rwxp 1d700000 00:00 0
    1d800000-1d80b000 r-xs 000af000 fd:00 5472276 /usr/local/tomcat/lib/tomcat-coyote.jar
    1d80b000-1d80d000 r-xs 0000d000 fd:00 5472281 /usr/local/tomcat/lib/commons-logging-1.1.1.jar
    1d80d000-1d80f000 r-xs 0000c000 fd:00 5472285 /usr/local/tomcat/lib/tomcat-i18n-ja.jar
    1d80f000-1d81b000 r-xs 0014c000 fd:00 5472275 /usr/local/tomcat/lib/jasper-jdt.jar
    1d81b000-1d81d000 r-xs 00011000 fd:00 5472287 /usr/local/tomcat/lib/jsp-api.jar
    1d81d000-1d81f000 r-xs 0000c000 fd:00 5472280 /usr/local/tomcat/lib/catalina-ant.jar
    1d81f000-1d822000 r-xs 00018000 fd:00 5472279 /usr/local/tomcat/lib/jasper-el.jar
    1d822000-1d824000 r-xs 0000b000 fd:00 5472286 /usr/local/tomcat/lib/tomcat-i18n-fr.jar
    1d824000-1d827000 r-xs 0000f000 fd:00 5472278 /usr/local/tomcat/lib/tomcat-i18n-es.jar
    1d827000-1d82c000 r-xs 00035000 fd:00 5472288 /usr/local/tomcat/lib/catalina-tribes.jar
    1d82c000-1d82f000 ---p 1d82c000 00:00 0
    1d82f000-1d87d000 rwxp 1d82f000 00:00 0
    1d87d000-1d87e000 r-xs 00000000 fd:00 5473424 /usr/local/tomcat/temp/axis2-tmp-3253273374704840051.tmp/axis24685980876675038614version-1.5.aar
    1d87e000-1d880000 r-xs 0000c000 fd:00 8685205 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/jettison-1.0-RC2.jar
    1d880000-1d881000 r-xs 00003000 fd:00 8685191 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-ws-metadata_2.0_spec-1.1.2.jar
    1d881000-1d883000 r-xs 00006000 fd:00 8685189 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-stax-api_1.0_spec-1.0.1.jar
    1d883000-1d885000 r-xs 00006000 fd:00 8685187 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-saaj_1.3_spec-1.0.1.jar
    1d885000-1d886000 r-xs 00003000 fd:00 8685185 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-jta_1.1_spec-1.1.jar
    1d886000-1d888000 r-xs 0000a000 fd:00 8685184 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-jaxws_2.1_spec-1.0.jar
    1d888000-1d88d000 r-xs 0002e000 fd:00 8685182 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-javamail_1.4_spec-1.6.jar
    1d88d000-1d88e000 r-xs 00002000 fd:00 8685181 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-annotation_1.0_spec-1.1.jar
    1d88e000-1d88f000 r-xs 00008000 fd:00 8685179 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/geronimo-activation_1.1_spec-1.0.1.jar
    1d88f000-1d894000 r-xs 00048000 fd:00 8685178 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/dom4j-1.6.1.jar
    1d894000-1d896000 r-xs 0000d000 fd:00 8685176 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/commons-logging-1.1.1.jar
    1d896000-1d899000 r-xs 00018000 fd:00 8685174 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/commons-io-1.4.jar
    1d899000-1d89f000 r-xs 00045000 fd:00 8685172 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/commons-httpclient-3.1.jar
    1d89f000-1d8a1000 r-xs 0000b000 fd:00 8685170 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/commons-fileupload-1.2.jar
    1d8a1000-1d8a3000 r-xs 0000a000 fd:00 8685168 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/commons-codec-1.3.jar
    1d8a3000-1d8ac000 r-xs 00075000 fd:00 8685167 /usr/local/tomcat/webapps/axis2/WEB-INF/lib/bcel-5.1.jar
    1d8ac000-1d8af000 r-xs 000cb000 fd:00 5441483 /usr/java/jdk1.6.0_18/jre/lib/ext/localedata.jar
    1d8af000-1d8b2000 ---p 1d8af000 00:00 0
    1d8b2000-1da00000 rwxp 1d8b2000 00:00 0
    1da00000-1da01000 r-xs 00007000 fd:00 5472283 /usr/local/tomcat/lib/el-api.jar
    1da01000-1da02000 r-xs 00003000 fd:00 5472273 /usr/local/tomcat/lib/annotations-api.jar
    1da02000-1da04000 r-xs 0001e000 fd:00 5472274 /usr/local/tomcat/lib/catalina-ha.jar
    1da04000-1da0c000 r-xs 00079000 fd:00 5472284 /usr/local/tomcat/lib/jasper.jar
    1 [stack]
    VM Arguments:
    jvm_args: -Djava.util.logging.config.file=/usr/local/tomcat/conf/logging.properties -Dmisys.app.link.config=/usr/local/tomcat/webapps/reports_utilities/config -Dmisys.alm.properties=/usr/local/misysalm/conf -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Xms256m -Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/usr/local/tomcat/logs -verbose:gc -XX:+PrintGCTimeStamps -XX:+PrintGCDetails -XX:MaxPermSize=256m -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:+CMSIncrementalPacing -XX:CMSIncrementalDutyCycleMin=0 -XX:CMSIncrementalDutyCycle=10 -XX:MaxTenuringThreshold=0 -XX:SurvivorRatio=256 -XX:CMSInitiatingOccupancyFraction=60 -XX:+DisableExplicitGC -Dsun.rmi.dgc.client.gcInterval=600000 -agentpath:/usr/local/install/yjp-9.5.4/bin/linux-x86-32/libyjpagent.so -Djava.endorsed.dirs=/usr/local/tomcat/endorsed -Dcatalina.base=/usr/local/tomcat -Dcatalina.home=/usr/local/tomcat -Djava.io.tmpdir=/usr/local/tomcat/temp
    java_command: org.apache.catalina.startup.Bootstrap start
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/usr/java/jdk1.6.0_18
    PATH=/usr/java/jdk1.6.0_18/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
    LD_LIBRARY_PATH=/usr/java/jdk1.6.0_18/jre/lib/i386/server:/usr/java/jdk1.6.0_18/jre/lib/i386:/usr/java/jdk1.6.0_18/jre/../lib/i386
    SHELL=/bin/bash
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x68c0e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGBUS: [libjvm.so+0x68c0e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGFPE: [libjvm.so+0x55b780], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGPIPE: [libjvm.so+0x55b780], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGXFSZ: [libjvm.so+0x55b780], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGILL: [libjvm.so+0x55b780], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x55e3c0], sa_mask[0]=0x00000000, sa_flags=0x10000004
    SIGHUP: [libjvm.so+0x55e0f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGINT: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGTERM: [libjvm.so+0x55e0f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGQUIT: [libjvm.so+0x55e0f0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    --------------- S Y S T E M ---------------
    OS:Red Hat Enterprise Linux Server release 5.4 (Tikanga)
    uname:Linux 2.6.18-164.el5PAE #1 SMP Tue Aug 18 15:59:11 EDT 2009 i686
    libc:glibc 2.5 NPTL 2.5
    rlimit: STACK 10240k, CORE 0k, NPROC 425984, NOFILE 150000, AS infinity
    load average:2.06 2.04 2.18
    CPU:total 8 (4 cores per cpu, 1 threads per core) family 6 model 23 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1
    Memory: 4k page, physical 24811548k(15279380k free), swap 2031608k(2031504k free)
    vm_info: Java HotSpot(TM) Server VM (16.0-b13) for linux-x86 JRE (1.6.0_18-b07), built on Dec 17 2009 13:41:30 by "java_re" with gcc 3.2.1-7a (J2SE release)
    time: Tue May 17 20:00:16 2011
    elapsed time: 11795 seconds
    please find the error log, the jvm crashed 5 times in the past 1 week, it consistently points to the thread ' CompilerThread1" daemon" ' and the compile task is at the same method and smae class. the only difference between all the crahes is % completion of the compilation.
    Any help appreciated..
    thanks
    Sridhar

    the only thing I can say is try running the latest releases of both the JDK and Tomcat. Native crashes are the hardest ones to solve as there is no real way of knowing what causes the problem. The least you can do is run with the most up to date versions and see if the problem persists; this may be the result of a bug that has already been fixed.

  • How to stop a daemon Java Thread?

    If I have a thread set as daemon and the main program has already exited, how do I locate the thread to stop it?
    Thanks.

    > As for stopping it you use a socket and send it a message. That of course would require another thread because it is a listener.
    Could you explain me a little bit more this (or send a link)? That is probably what I want to do. I want to open another instance of the program and stop the running thread. (By the way I'm doing this on Windows).
    Daemon thread != unix daemon.
    I'm not actually setting the thread as deamon because I want it as a background task, but because I want the main program to exit after it has started the thread and I want the thread to keep running. I read somewhere that I could do this setting the thread as daemon. But I misunderstood what I read.
    Again, what I want to know if there's a way of running an app that when you press a start button, for example starts a thread that performs some ops. and exits, but the thread is still running, and if you re-open the app and press the stop button it stops the running thread, that is, the instance of the app that created the thread is not the one who's going to stop it.
    I don't necesarily want to do it using threads but that was the way I first thought of.
    Thank you for your reply :)
    Message was edited by:
    daraii

Maybe you are looking for

  • How to get a horizontal scroll bar when viewed in devices of lesser screen size?

    I've made a website in DW and its perfect in desktop , but when i check the site on mobile device it is not as expected. The site remains in tablet view and the text , images are not being arranged as needed. I'd be grateful if anyone could help me w

  • Command: Link to KM folder - does it exsist/workaround

    Hi, We have a KM folder where we store articles based on xml forms.  One iView displays the last 3 articles from this folder. Is there a command that can be used in the collection renderer for creating a link to this KM folder and display the content

  • VGA Bios states "Engineering Release"

    Hi Folks, I recently installed the K7N2G-LISR MB for a family member. After delivery I noticed the message in the VGA Bios of "Engineering Sample, not for production use" in the POST. Now, before I get my shorts in a twist, is this refering to the MB

  • How do i keep my iMessages in synch?

    I have set-up my iPhone and MacBook Pro with the correct AppleId and for some reason, my iMessages from my MacBook Pro aren't showing up on my iPhone?

  • MiniSAP 46D Installation Error

    Hi guys,      I have already this error but i cant get a reply. Please help me to overcome this error.      I bought ABAP objects book for miniSAP. I installed it sucessfully first time. But while i am repeating the same procedure for the second time