Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Java > Java process dies with "Unknown signal 33"

Reply
Thread Tools

Java process dies with "Unknown signal 33"

 
 
OtisUsenet
Guest
Posts: n/a
 
      08-24-2004
Hello,

I have a Java process that, every once in a while, died a sudden death
with "Unknown signal 33".

This is a process that is invoked every 2 hours from a shell script
that runs as a cron job. The java command line looks like this:

java -Dlog4j.configuration=../etc/log4j.xml -server -Xmx512m -Xms256m
my.Class


I have:

java version "1.4.2_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05)
Java HotSpot(TM) Client VM (build 1.4.2_04-b05, mixed mode)

This is on Linux with kernel 2.4.20.


Google doesn't give much for "unknown signal 33". Does anyone know
what this could be?

Thanks.
 
Reply With Quote
 
 
 
 
Gordon Beaton
Guest
Posts: n/a
 
      08-24-2004
On 24 Aug 2004 00:37:09 -0700, OtisUsenet wrote:
> I have a Java process that, every once in a while, died a sudden
> death with "Unknown signal 33".


[...]

> This is on Linux with kernel 2.4.20.
>
> Google doesn't give much for "unknown signal 33". Does anyone know
> what this could be?


According to "kill -l" on my system, signal 33 is SIGRTMIN.
LinuxThreads uses the first three RT signals, so I'll hazard a guess
that there is a threading issue with your application.

If you write some native code to catch the signal, you might be able
to determine where it came from.

Do "man 7 signal" and scroll down to "Real-time Signals" for more.

You might get better help in a Linux newsgroup.

/gordon

--
[ do not email me copies of your followups ]
g o r d o n + n e w s @ b a l d e r 1 3 . s e
 
Reply With Quote
 
 
 
 
OtisUsenet
Guest
Posts: n/a
 
      08-27-2004
Gordon Beaton <> wrote in message news:<412af2e4$>...
> On 24 Aug 2004 00:37:09 -0700, OtisUsenet wrote:
> > I have a Java process that, every once in a while, died a sudden
> > death with "Unknown signal 33".

>
> [...]
>
> > This is on Linux with kernel 2.4.20.
> >
> > Google doesn't give much for "unknown signal 33". Does anyone know
> > what this could be?

>
> According to "kill -l" on my system, signal 33 is SIGRTMIN.
> LinuxThreads uses the first three RT signals, so I'll hazard a guess
> that there is a threading issue with your application.
>
> If you write some native code to catch the signal, you might be able
> to determine where it came from.
>
> Do "man 7 signal" and scroll down to "Real-time Signals" for more.
>
> You might get better help in a Linux newsgroup.
>
> /gordon


Hm, my app is single-threaded. Is it possible that this comes from
some threading issues internal to the JVM implementation, and not
from my application?

Thanks.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
end child process when parent dies (on Unix) Дамјан Георгиевски Python 4 11-18-2008 02:49 AM
process dies on MAC .. Larz Ruby 0 11-17-2008 02:43 PM
Backtick call dies in child process inside daemon google@macrotex.net Perl Misc 2 07-05-2005 12:51 PM
Proc::Background killing parent process when child dies Paul Clements Perl Misc 2 02-11-2004 01:49 AM
Perl 'system' Creates Program That Dies When First C Program Dies Christopher M. Lusardi Perl Misc 3 10-19-2003 11:53 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57