Sponsored Content
Full Discussion: Svhptdaemon
Operating Systems HP-UX Svhptdaemon Post 302989063 by bbbngowc on Friday 6th of January 2017 04:04:59 PM
Old 01-06-2017
Unfortunately I don't have lsof nor truss installed on this box.

I issued the find command but it came back with no results.

---------- Post updated at 04:04 PM ---------- Previous update was at 03:57 PM ----------

I decided to run find on the entire / fs. This came up, not sure what to make of it. This came from a file in the /tmp directory. /tmp/toolset/spin.0509

Code:
Running Threads (TSRUNPROC) and idle Processors
===============================================

                    TICKS     TICKS                    I TICKS
                    SINCE     SINCE                    C SINCE     NREADY
TID     PID   PPID  RUN       IDLE      PRI  SPU STATE S MIGR      FR LO AL COMMAND
------- ----- ----- --------- --------- ---- --- ----- - --------- -- -- -- -------
9822392 9922  9804  0         414       231  0   SYS   ? 1104611   7  0  -- crashinfo

Processor #0
                    TICKS     TICKS                    I TICKS
                    SINCE     SINCE                    C SINCE     NREADY
TID     PID   PPID  RUN       IDLE      PRI  SPU STATE S MIGR      FR LO AL COMMAND
------- ----- ----- --------- --------- ---- --- ----- - --------- -- -- -- -------
57      28    0     425067099 425067099 152  1   SYS   ? 425067116 0  7  -- svhptdaemon

 
FORK(2) 							System Calls Manual							   FORK(2)

NAME
fork - spawn new process SYNOPSIS
fork( ) DESCRIPTION
Fork is the only way new processes are created. The new process's core image is a copy of that of the caller of fork. The only distinc- tion is the fact that the value returned in the old (parent) process contains the process ID of the new (child) process, while the value returned in the child is 0. Process ID's range from 1 to 30,000. This process ID is used by wait(2). Files open before the fork are shared, and have a common read-write pointer. In particular, this is the way that standard input and output files are passed and also how pipes are set up. SEE ALSO
wait(2), exec(2) DIAGNOSTICS
Returns -1 and fails to create a process if: there is inadequate swap space, the user is not super-user and has too many processes, or the system's process table is full. Only the super-user can take the last process-table slot. ASSEMBLER
(fork = 2.) sys fork (new process return) (old process return, new process ID in r0) The return locations in the old and new process differ by one word. The C-bit is set in the old process if a new process could not be cre- ated. FORK(2)
All times are GMT -4. The time now is 08:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy