Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
03-04-2006, 11:01 PM
|
#1
|
Member
Registered: Aug 2003
Location: Sri Lanka
Distribution: Redhat 9.0
Posts: 104
Rep:
|
kill pid.... won't work with 'pid' variable given..
in my program i capture the pid of a child process by using getpid() and assign that to a variable called pid_R
but when i give :
kill pid_R
this doesnt do anything??
but if i give the exact pid of the child from the terminal kill 3445 this works..
why is that?
|
|
|
03-04-2006, 11:04 PM
|
#2
|
Member
Registered: Aug 2003
Location: Sri Lanka
Distribution: Redhat 9.0
Posts: 104
Original Poster
Rep:
|
The coding that i wrote for it...
#include<stdio.h>
#include<signal.h>
main(void)
{
int pid;
int pidchild;
pid=fork();
if (pid==0)
pidchild=getpid();
printf("sac%d\n",getpid());
kill pidchild;
sleep(10);
printf("parent prints %d\n",getpid()); //this line is printed by the child as well????
return 0;
}
|
|
|
03-04-2006, 11:47 PM
|
#3
|
LQ Guru
Registered: Mar 2004
Distribution: SusE 8.2
Posts: 5,863
Rep:
|
I'm not sure if the code you posted will even compile ("kill pidchild"?)
But this should work:
Code:
#include <stdio.h>
#include <signal.h>
int
main(int argc, char *argv[])
{
int pidparent = getpid ();
int pidchild = fork();
if (pidchild==0)
{
printf ("I'm the child of pid %d, my pid is %d!\n", pidparent, getpid ());
/* Wait indefinitely... */
getchar ();
}
else
{
printf ("I'm the parent of pid %d, my pid is %d!\n", pidchild, getpid ());
/* Wait for the child to start... */
sleep (5);
kill (pidchild, 9);
}
printf ("Pid %d: exiting gracefully...\n", getpid ());
return 0;
}
Please use "[code]" blocks in your posts - it definitely helps!
Last edited by paulsm4; 03-04-2006 at 11:53 PM.
|
|
|
03-05-2006, 06:52 AM
|
#4
|
Member
Registered: Aug 2003
Location: Sri Lanka
Distribution: Redhat 9.0
Posts: 104
Original Poster
Rep:
|
isn't there a way to make the child terminate 'itself'???
can i use the coding
kill (pidchild, 9);
inside the child's coding??
|
|
|
03-05-2006, 08:47 AM
|
#5
|
LQ Guru
Registered: Mar 2004
Distribution: SusE 8.2
Posts: 5,863
Rep:
|
Hi, sachitha -
Do you have a copy of Linux and a compiler?
If so, please try it yourself:
1. Run the code yourself. Verify that each process starts, and verify that the parent kills the child.
2. Modify the code so that both processes start up (and identify themselves with a "printf"), and
then the child terminates itself.
3. How many ways can you think of for this "hello world" child to terminate itself (hint: there are at least three)? Which is "better"? Why?
4. Can you think of a better way for the parent and child to synchronize themselves with each other besides my (dopey, ham-fisted) "sleep()" and "getchar()"?
Please post back what you find (or any questions you encounter while you're looking).
Thanx in advance .. PSM
|
|
|
03-05-2006, 01:47 PM
|
#6
|
Member
Registered: Mar 2005
Distribution: FC4
Posts: 83
Rep:
|
|
|
|
03-06-2006, 07:48 PM
|
#7
|
LQ Guru
Registered: Mar 2004
Distribution: SusE 8.2
Posts: 5,863
Rep:
|
Satchita - did you ever get this working?
My answer to your last question really meant "Yes, of *course* you can have the child terminate itself. And yes, you can do it with a "kill (getpid(), 9)".
You cannot do it with a "kill (pidchild, 9)" ... because pidchild will be "0" in the child process (and a legal PID value only in the parent process).
And you probably *shouldn't* do a "kill" to terminate yourself; using "exit()" is probably a better choice. If you're in "main()", then simply doing a "return" is arguably the best choice of all.
Finally, Intimidator was making the very good point that sometimes processes can't be killed at all, and gave you a link explaining some of the circumstances this might occur.
Please let us know how it goes!
Sincerely .. PSM
|
|
|
All times are GMT -5. The time now is 12:47 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|