.noname process???


 
Thread Tools Search this Thread
Operating Systems Solaris .noname process???
# 1  
Old 09-06-2007
.noname process???

I'm here in the need of an experts' help!!! :-)

When does a process acquire a name ".noname"

In one of my applications I create a process using the following code,
the process is created with the given name 'executable', but the same process is not reachable with the same name.
It is only reachable as .noname!

Do you have any tips to solve this problem?

pid_t
PRH_CreateProcess(char* executable,
char*const argv[],
int p[],
PRH_ProcessNotifier notifier,
SEA_UserContext userContext)
{
pid_t child;
int childPipe[2];
int i;


if (p) {
/* We should create pipes. */
if (PRH_createPipe (&p[0], &childPipe[1]) < 0) {
return 0;
}
if (PRH_createPipe (&childPipe[0], &p[1]) < 0) {
return 0;
}
}

if ((child = vfork ()) < 0) {
REP_LOG_ERROR(("Vfork failed!\n"));
REP_LOG_ERROR(("%s\n", strerror(errno)));
return 0;
}
else if (child)
{
/* Parent, close the child side and register the new process */
if (p) {
close (childPipe[0]);
close (childPipe[1]);
}
PRH_addProcess (child, executable, argv, p, notifier, userContext);
return child;
}
else
{
/* Child, close parent side, setup stdin & stdout and exec away */
if (p) {
close (p[0]);
close (p[1]);

if (dup2 (childPipe[0], 0) < 0) { /* stdin */
REP_LOG_FATAL(("Dup2 failed\n"));
}
close (childPipe[0]);

if (dup2 (childPipe[1], 1) < 0) { /* stdout */
REP_LOG_FATAL(("Dup2 failed\n"));
}
close (childPipe[1]);
}
else
{
/* If no pipe was requested, close stdin and stdout to avoid zoombies
when the parent dies. stderr should also be closed, but that can't
be done since some tools relies on that errors can be printed on
stderr and end up in the SEA log. Each caller should really setup
an "error pipe" for this. */
close(0);
close(1);
}

/* Close all other descriptors that are inherited. */
i = (int)sysconf(_SC_OPEN_MAX);
for (i = i - 1; i > 3; i--)
{
close(i);
}

/* Create own process group */
(void)setpgid(0,0);

execvp (executable, argv );

REP_LOG_ERROR(("Execvp failed (Executable: %s)\n", executable));
REP_LOG_ERROR(("%s\n", strerror(errno)));
_exit (1);
}
REP_LOG_ERROR(("Reached non reachable statement in PRH_CreateProcess\n"));
return 0;
}
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Command to get exact tomcat process I am running ignoring other java process

Team, I have multiple batchjobs running in VM, if I do ps -ef |grep java or tomcat I am getting multiple process list. How do I get my exact tomcat process running and that is unique? via shell script? (4 Replies)
Discussion started by: Ghanshyam Ratho
4 Replies

2. Shell Programming and Scripting

Monitoring processes in parallel and process log file after process exits

I am writing a script to kick off a process to gather logs on multiple nodes in parallel using "&". These processes create individual log files. Which I would like to filter and convert in CSV format after they are complete. I am facing following issues: 1. Monitor all Processes parallelly.... (5 Replies)
Discussion started by: shunya
5 Replies

3. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (6 Replies)
Discussion started by: naveeng
6 Replies

4. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (1 Reply)
Discussion started by: naveeng
1 Replies

5. BSD

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (0 Replies)
Discussion started by: naveeng
0 Replies

6. Shell Programming and Scripting

Sending an email with mail function shows up as an attachment 'noname'

I have a file named email.html with this as the contents: Content-type: text/html ACHI,ACCRETIVE HEALTH ,7.15,<br>CPRT,Copart Inc.,36.14,<br>GEOB.MX,GEO-B,1.660,<br>GCO,Genesco Inc. Comm,73.58,<br>GMAN,Gordmans Stores, ,<br>GES,Guess? Inc. Comm,26.45,<br>KBR,KBR Inc. Common... (1 Reply)
Discussion started by: phpchick
1 Replies

7. Shell Programming and Scripting

script to monitor the process system when a process from user takes longer than 15 min run.

get email notification from from system when a process from XXXX user takes longer than 15 min run.Let me know the time estimation for the same. hi ,any one please tell me , how to write a script to get email notification from system when a process from as mentioned above a xxxx user takes... (1 Reply)
Discussion started by: kirankrishna3
1 Replies

8. Shell Programming and Scripting

[KSH/Bash] Starting a parent process from a child process?

Hey all, I need to launch a script from within 2 other scripts that can run independently of the two parent scripts... Im having a hard time doing this, if anyone knows how please let me know. More detail. ScriptA (bash), ScriptB (ksh), ScriptC (bash) ScriptA, launches ScriptB ScirptB,... (7 Replies)
Discussion started by: trey85stang
7 Replies

9. Shell Programming and Scripting

Shell Script to Kill Process(number of process) Unix/Solaris

Hi Experts, we do have a shell script for Unix Solaris, which will kill all the process manullay, it used to work in my previous env, but now it is throwing this error.. could some one please help me to resolve it This is how we execute the script (and this is the requirement) ... (2 Replies)
Discussion started by: jonnyvic
2 Replies

10. Shell Programming and Scripting

script to monitor process running on server and posting a mail if any process is dead

Hello all, I would be happy if any one could help me with a shell script that would determine all the processes running on a Unix server and post a mail if any of the process is not running or aborted. Thanks in advance Regards, pradeep kulkarni. :mad: (13 Replies)
Discussion started by: pradeepmacha
13 Replies
Login or Register to Ask a Question