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
Process(3pm)						User Contributed Perl Documentation					      Process(3pm)

NAME
Proc::ProcessTable::Process - Perl process objects SYNOPSIS
$process->kill(9); $process->priority(19); $process->pgrp(500); $uid = $process->uid; ... DESCRIPTION
This is a stub module to provide OO process attribute access for Proc::ProcessTable. Proc::ProcessTable::Process objects are constructed directly by Proc::ProcessTable; there is no constructor method, only accessors. METHODS
kill Sends a signal to the process; just an aesthetic wrapper for perl's kill. Takes the signal (name or number) as an argument. Returns number of processes signalled. priority Get/set accessor; if called with a numeric argument, attempts to reset the process's priority to that number using perl's <B>setpriority function. Returns the process priority. pgrp Same as above for the process group. all other methods... are simple accessors that retrieve the process attributes for which they are named. Currently supported are: uid UID of process gid GID of process euid effective UID of process (Solaris only) egid effective GID of process (Solaris only) pid process ID ppid parent process ID spid sprod ID (IRIX only) pgrp process group sess session ID cpuid CPU ID of processor running on (IRIX only) priority priority of process ttynum tty number of process flags flags of process minflt minor page faults (Linux only) cminflt child minor page faults (Linux only) majflt major page faults (Linux only) cmajflt child major page faults (Linux only) utime user mode time (1/100s of seconds) (Linux only) stime kernel mode time (Linux only) cutime child utime (Linux only) cstime child stime (Linux only) time user + system time ctime child user + system time timensec user + system nanoseconds part (Solaris only) ctimensec child user + system nanoseconds (Solaris only) qtime cumulative cpu time (IRIX only) size virtual memory size (bytes) rss resident set size (bytes) wchan address of current system call fname file name start start time (seconds since the epoch) pctcpu percent cpu used since process started state state of process pctmem percent memory cmndline full command line of process ttydev path of process's tty clname scheduling class name (IRIX only) See the "README.osname" files in the distribution for more up-to-date information. AUTHOR
D. Urist, durist@frii.com SEE ALSO
Proc::ProcessTable.pm, perl(1). perl v5.14.2 2003-10-03 Process(3pm)