Tagged Questions

On Unix and Unix-like computer operating systems, a zombie process or defunct process is a process that has completed execution but still has an entry in the process table. This entry is still needed to allow the process that started the (now zombie) process to read its exit status.

learn more… | top users | synonyms (2)

10
votes
3answers
2k views

Python-daemon doesn't kill its kids

When using python-daemon, I'm creating subprocesses likeso: import multiprocessing class Worker(multiprocessing.Process): def __init__(self, queue): self.queue = queue # we wait for things ...
7
votes
2answers
178 views

How do zombies harm?

From perlipc/Signals: eval { local $SIG{ALRM} = sub { die "alarm clock restart" }; alarm 10; flock(FH, 2); # blocking write lock alarm 0; }; if ($@ and $@ !~ /alarm clock restart/) { die } ...
7
votes
3answers
541 views

How can I avoid zombies in Perl CGI scripts run under Apache 1.3?

Various Perl scripts (Server Side Includes) are calling a Perl module with many functions on a website. EDIT: The scripts are using use lib to reference the libraries from a folder. During busy ...
6
votes
6answers
6k views

Ensuring subprocesses are dead on exiting Python program

Is there a way to ensure all created subprocess are dead at exit time of a Python program? By subprocess I mean those created with subprocess.Popen(). If not, should I iterate over all of the issuing ...
5
votes
2answers
1k views

What are Zombies and what causes them? Are there Zombie processes and Zombie objects?

I can find questions about zombies but none that directly addresses what they are and why and how they occur. There are a couple that address what zombie processes are in the context of answering a ...
4
votes
1answer
558 views

Zombie process in python multiprocessing daemon

After researching python daemons, this walk through seemed to be the most robust: http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/ Now I am trying to implement a pool of ...
3
votes
1answer
221 views

Question about zombie processess and threads

i had these questions in my mind since i was reading some new topics on processes and threads. I would be glad if somebody could help me out. 1) What happens if a thread is marked uncancelable, and ...
3
votes
5answers
429 views

BOT/Spider Trap Ideas

I have a client whose domain seems to be getting hit pretty hard by what appears to be a DDoS. In the logs it's normal looking user agents with random IPs but they're flipping through pages too fast ...
3
votes
2answers
286 views

How to run Esoteric Language ZOMBIE

Can anyone please tell me how can I compile and run a program written on ZOMBIE? For example, if I wrote the following source cord to print out “hello world” on to the screen, how can I make an .exe ...
3
votes
4answers
3k views

Why do processes spawned by cron end up defunct?

I have some processes showing up as <defunct> in top (and ps). I've boiled things down from the real scripts and programs. In my crontab: * * * * * /tmp/launcher.sh /tmp/tester.sh The ...
2
votes
2answers
53 views

zombie java interpreter after launching applet prevents java console to reappear if relaunched

I have a java application that can be run as a JFrame or as an applet. Launching the applet in the browser adds a new tab in the browser and also makes the Java Console appear. After I close both of ...
2
votes
2answers
81 views

Starting a daemon from PHP

For a website, I need to be able to start and stop a daemon process. What I am currently doing is exec("sudo /etc/init.d/daemonToStart start"); The daemon process is started, but Apache/PHP hangs. ...
2
votes
2answers
116 views

Killing a process leaves zombie process to haunt me… :(

I have a program wherein i use fork. In the child process, i just login to a remote server and executes a command. In the parent process, i wait for the child to finish its task. If it doesnot finish ...
2
votes
5answers
291 views

c# MSOffice Interop Word will not kill winword.exe

I'm writing an application that needed a MSWord document parser. I'm using Microsoft.Office.Interop.Word.Document to extract the texts from the documents, but even if i use doc.Close() the document, ...
2
votes
1answer
215 views

How do twisted and multiprocessing.Process create zombies?

In python, using twisted loopingcall, multiprocessing.Process, and multiprocessing.Queue; is it possible to create a zombie process. And, if so, then how?
2
votes
5answers
340 views

zombie process can't be killed

Is there a way to kill a zombie process? I've tried calling exit to kill the process and even sending SIGINT signal to the process, but it seems that nothing can kill it. I'm programming for Linux.
2
votes
1answer
137 views

multiprocessing + psycopg2 zombie children

I am trying to insert and update a few million rows using psycopg and multiprocessing. Going by the documentation found in http://initd.org/psycopg/docs/usage.html#thread-and-process-safety, each ...
2
votes
3answers
155 views

Perl: creating zombies through open() without close()

Here is the problem: I've a daemon which get requests from a client, executes a function (from some module) due to the request and returns an answer to the client. After the fork() i close ...
2
votes
3answers
579 views

ADO.NET zombie transaction bug? How to ensure that commands will not be executed on implicit transaction?

e.g. When deadlock occurs, following SQL commands are successfully executed, even if they have assigned SQL transaction that is after rollback. It seems, it is caused by a new implicit transaction ...
2
votes
1answer
1k views

How to detect defunct processes on Linux?

I have a parent and a child process written in C language. Somewhere in the parent process HUP signal is sent to the child. I want my parent process to detect if the child is dead. But when I send ...
2
votes
1answer
244 views

Zombie Processes Appearing When I Spawn Processes

I have a pieces of code where i spawn off children processes to make it more efficient. However, they appear to create all sorts of zombie processes which block sockets and bring down the site. ...
2
votes
3answers
1k views

Why isn't my Perl program reaping children processes after fork?

I have been trying to write a bare-bones ping scanner using Perl for internal use. Since it scans a 24-bit CIDR network the script takes too long to run if it runs in a single thread. I have tried ...
2
votes
4answers
650 views

Handling ungraceful shutdowns when using fork and sockets

I have a server that listens for socket connections and perform different kind of actions, depending on the request. One of them is long lived database queries, for which the server forks. The server ...
2
votes
3answers
841 views

What's the reason for cookies mysteriously reappearing?

I'm developing a web application using a cookie to store session information. I've manually deleted the session cookies because I'm working on another part of the code where I don't want a login ...
1
vote
0answers
47 views

Message sent to deallocated instance, crash in UIKit framework, how to debug?

Hey all you smart guys; A tough crash bug debugging for many days but still don't find the root cause, thirst for your tips and guidance. It is a a table view controller, but more complicated since ...
1
vote
1answer
66 views

An unreaped child and its future

So when a child dies parent gets SIGCHLD but if parent dies before doing wait(), the child is reparented to init. At this point in time the child is a zombie i.e. <defunct>. What happens next? ...
1
vote
1answer
95 views

SIGCHLD not delivered in a process tree

I am trying to create a process that manage some other process in the way that if a child die then the parent restart the process and the process that depend from it. The problem is that I notice ...
1
vote
1answer
225 views

how this program creates zombie process?

How the below program works and create a Zombie process under linux? #include <stdlib.h> #include <sys/types.h> #include <unistd.h> int main () { pid_t child_pid; child_pid = ...
1
vote
2answers
249 views

Avoid Zombie processes from the shell?

I'm writing a couple shell scripts which do a few things: main.sh run under screen, it sets some variables, then calls: start.sh in the foreground (no &) start.sh is run, it sets some Java ...
1
vote
1answer
344 views

How to use Popen to run backgroud process and avoid zombie?

I've a listener server running new thread to for each client handler. Each handler can use: proc = subprocess.Popen(argv, executable = "./Main.py", stdout = _stdout, stderr = subprocess.STDOUT, ...
1
vote
0answers
148 views

iphone zombie not detected by instruments

Using the simulator with xcode 4, when I push a new view onto my navigation controller I get an exc_bad_access error. With NSZombies enabled, I run the profiler, but no zombies are detected. I've ...
1
vote
1answer
367 views

how do i spawn a process in perl without it becoming defunct or a zombie when the parent exits?

I have a perl script which i'd like to spawn a process. It can take a while and most times the parent script will exit. How do I spawn this process so that when the parent is gone it wont turn into a ...
1
vote
2answers
462 views

Zombie process and fork

i have a code like this... c = fork(); if(c==0) { close(fd[READ]); if (dup2(fd[WRITE],STDOUT_FILENO) != -1) execlp("ssh", "ssh", host, "ls" , NULL); _exit(1); } ...
1
vote
1answer
184 views

Parent process does not catch all his child processes

I have following problem: I have main (parent) procces, which creates another processes (childs) using fork function. I am catching child's status to eliminate zombies. When there is 1 child process, ...
1
vote
1answer
2k views

Kill a 10 minute old zombie process in linux bash script

I've been tinkering with a regex answer by yukondude with little success. I'm trying to kill processes that are older than 10 minutes. I already know what the process IDs are. I'm looping over an ...
1
vote
0answers
290 views

init never reaping zombie/defunct processes

On my Fedora Core 9 webserver with kernel 2.6.18, init isn't reaping zombie processes. This would be bearable if it wasn't for the process table eventually reaching an upper limit where no new ...
1
vote
3answers
598 views

NSZombieEnabled doesn't report the type of object causing an EXC_BAD_ACCESS error

I have a crash that is happening deep within UIKit for some reason; an EXC_BAD_ACCESS error is happening something like 8 calls deep into a dismissModalViewController call. I tried enabling ...
1
vote
3answers
1k views

Why does my program crash when accessing a property with self. and a synthesized accessor?

I have data object class: @interface Item: NSObject { NSString *title; NSString *text; } @property (copy) NSString *title; @property (copy) NSString *text; @end @implementation Item ...
1
vote
4answers
1k views

How to determine the state of a process (i.e. if it is a zombie)

how can I get information on the state of a process (i.e. if it is a zombie) using C under Linux? After reading the answers so far I want to narrow my question somewhat: I would prefer a pure C ...
0
votes
2answers
27 views

Objective-C Object gone due to memory management in NSMutableArray

I have a problem regarding the memory management when adding objects to a NSMutableArray. Weird thing is that it's all working fine for the first 8 objects I add, but when adding a 9th, the ...
0
votes
1answer
60 views

iOS: UIActionsheet (or UIPopoverController view) becomes zombie

I have an UIViewController. Within it the user may launch an UIActionsheet or a popover. If the device rotates, the UIViewController is intentionally released. The problem is that the UIActionsheet / ...
0
votes
1answer
78 views

XCode Debugging / Tracing Zombies / Leaks in Instruments

Before I updated Xcode I used to be able to double click a zombie/leak in Instruments and it would take me directly to the instigating code, but now I cannot seem to do that and I dont know why, any ...
0
votes
0answers
15 views

PHP return page to requester, then perform a forked task - without creating loads of zombies

I'm trying to create a script that will return quickly to the requesting client and perform a task in the background via the mechanism of fork() Perhaps/Certainly a message queue would be a better ...
0
votes
2answers
62 views

Pylons and zombie processes

I'm trying to write an application that will allow the user to start long-running calculation processes (a few hours, for example). To do so, I use Python Popen() function. As long as the main Pylons ...
0
votes
1answer
50 views

Locating zombie mySQL connections

I have a colleague who has been using PHP's mysql_pconnect() without my knowing it. We have had a number of instances where connections were denied due to a large number of zombie connections (per ...
0
votes
0answers
173 views

-[CFRunLoopTimer invalidate] iphone sdk

i am creating a app to change images according to the time. there are categories in image sets. each category has 6 images. That 6 images are repeating on by one for 6 seconds and 1 category looping ...
0
votes
1answer
523 views

Use an each block to print the names of all the Zombie

I'm trying to do the 'rails for zombies' course on codeschool, but I'm stuck on this one: http://railsforzombies.org/levels/3/challenges/3 The frustrating thing about this course, is that you can't ...
0
votes
1answer
252 views

Can gdb attach a zombie process(<defunct>)?

I have a program who run as zombie process. I want to debug it. But I got a gdb error. mobile:/usr/local/ads5/bin# ps axf | grep ads_resolver 5583 pts/2 S 0:00 ./ads_resolver main.cfg 5584 ...
0
votes
0answers
52 views

forked process manager not performing correctly

Alright, I am sure that this problem comes down to a misunderstanding of the fork() function and it's behavior on a parent/child. I am working on a very simple process manager that runs in the ...
0
votes
2answers
426 views

apache zombie processes on debian, what is the cause?

In top I keep seeing zombie processes (not more than one at a time), they disappear quickly (within 10 seconds), but a new zombie pops up a few seconds later. My server runs 3 sites, 2 written in PHP, ...

1 2