Process receiving SIGEXIT


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris BigAdmin RSS Process receiving SIGEXIT
# 1  
Old 04-21-2011
Process receiving SIGEXIT

I am running a process on Solaris 10 sparc. It runs for several days. After that it crashes. pstack on the core shows one of the threads received SIGEXIT.

Wondering what circumstances process would receive SIGEXIT? Proces is not using sigexit(pid,0) call. It does has signal handlers.

Anyhelp is appreciated.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

mail is not receiving from the server

Dear All, I am using CentOS release 5.5 (Final).I want to monitoring the system activity through mail.But the <code>mail -s "Subject" user1@domain.com</code> is not working from the server.could you help me the procedure to generate mail from the server. (2 Replies)
Discussion started by: kpoobathi
2 Replies

2. Shell Programming and Scripting

Why am i receiving too many argument error with this?

#!/bin/bash while do codes done it says line 2: [: too many arguments why? (4 Replies)
Discussion started by: garfish
4 Replies

3. Programming

Help receiving a frame in C!

Hello everybody, I have a problem with a program i'm coding, the thing is that i need the program to check quickly if it receives a response, if not, just go ahead. My program sends the frame successfully, but it keeps waiting for the response until it receives something. That's what i need to... (2 Replies)
Discussion started by: Zykl0n-B
2 Replies

4. Forum Support Area for Unregistered Users & Account Problems

Not Receiving Activation Email

I've tried suggestions from previous threads sending an activation email several times. I'm not sure if email server is blocking domain name. What is the domain name of the activation email...unix.com? (1 Reply)
Discussion started by: BigSky
1 Replies

5. UNIX for Advanced & Expert Users

Receiving mail in Unix

I have 2 problems with my mail on Unix.. 1- I have accounts on 2 different unix boxes, one running Sun Solaris and other is a version of Linux. When I receive email on those machines, on one the email arrives in my /var/mail/USERNAME; whereas on the other box the email is delivered to... (4 Replies)
Discussion started by: milhan
4 Replies

6. Forum Support Area for Unregistered Users & Account Problems

not receiving email

I've requested several passwords and they are not being sent to my email. My email is working - email address removed (2 Replies)
Discussion started by: xyz
2 Replies

7. Forum Support Area for Unregistered Users & Account Problems

Not receiving my reset password

Hi, I reset my password couple of times. On both the occasions, I get the message that the password is reset and it would be mailed to you. But I have never received the mail. Could you please let me know my password so that I can login. My user id is ranj@tcs. Thanks, Ranjith (1 Reply)
Discussion started by: whyaskedhere
1 Replies

8. UNIX for Dummies Questions & Answers

Receiving Value from plsql package.

Hi, I am working on a shell script that fires a plsql package. I would like the package to return a value to the shell script and then the shell script to return it to the javascript. Is it possible for the shell script to accept the return status from the plsql package and then pass it back... (4 Replies)
Discussion started by: akpopa
4 Replies
Login or Register to Ask a Question
jstack(1)						      General Commands Manual							 jstack(1)

NAME
jstack - stack trace SYNOPSIS
jstack [ option ] pid jstack [ option ] executable core jstack [ option ] [server-id@]remote-hostname-or-IP DESCRIPTION
jstack prints Java stack traces of Java threads for a given Java process or core file or a remote debug server. For each Java frame, the full class name, method name, 'bci' (byte code index) and line number, if available, are printed. With the -m option, jstack prints both Java and native frames of all threads along with the 'pc' (program counter). For each native frame, the closest native symbol to 'pc', if available, is printed. C++ mangled names are not demangled. To demangle C++ names, the output of this command may be piped to c++filt. NOTE - This utility is unsupported and may or may not be available in future versions of the J2SE SDK. jstack is not currently available on Windows platforms or on the Linux Itanium platform. PARAMETERS
Options are mutually exclusive. Option, if used, should follow immediately after the command name. pid process id for which the stacktrace is to be printed. The process must be a Java process. To get a list of Java processes running on a machine, jps may be used. executable Java executable from which the core dump was produced. core core file for which the stack trace is to be printed. remote-hostname-or-IP remote debug server's (see jsadebugd) hostname or IP address. server-id optional unique id, if multiple debug servers are running on the same remote host. OPTIONS
-m prints mixed mode (both Java and native C/C++ frames) stack trace. -h Prints a help message. -help Prints a help message. SEE ALSO
pstack(1) c++filt(1) jps(1) jsadebugd(1) KNOWN BUGS
Mixed mode stack trace, the -m option, does not work with the remote debug server. 13 June 2004 jstack(1)