![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| threads per process | digdarshan | UNIX for Advanced & Expert Users | 1 | 01-27-2009 09:08 PM |
| kill(0,-9) don't kill the process | umen | High Level Programming | 9 | 06-19-2007 06:09 AM |
| how to start a process and make it sleep for 5 mins and then kill that process | shrao | Shell Programming and Scripting | 6 | 03-27-2007 12:54 PM |
| how to kill threads in solaris | izy100 | UNIX for Advanced & Expert Users | 9 | 01-07-2007 10:51 PM |
| When kill doesnt work, how to kill a process ? | VijayHegde | UNIX for Advanced & Expert Users | 3 | 05-12-2006 04:24 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Can SIGTERM to main process kill the detached threads?
Hi,
I am stuck up with a strange problem. I am writing an application - a kinda tracker that reads data from memcache and invokes theads to process each record of the memcache. I dont want to join all my threads because my tracker should poll the cache in regular intervals say sum 300 seconds without waiting for the child thread completion. To accomplish the above task, I created a detachable tracker thread for each poll of memcache which in turn creates worker threads n joins them. so my main tracker thread need not wait for the detached thread and can start polling the cache at a stipulated time. Now, when i tried to give a "kill <process_id>", i observed that only my main thread is killed whereas the detached thread and worker threads are still running!!! ![]() Ideally , a kill to main should quit all my detached threads too...ne ideas/thoughts on how to handle this?? Kindly help |
|
||||
|
kill command is for a process ( which in turn is the main thread ) and not for sub threads created out of main thread.
Shouldn't the main thread have a signal handler to kill all the threads it had created ( if it has to ) before exiting ? |
|
||||
|
Not enough details.
A signal that terminates a single multithreaded process, as matrix notes, should terminate all threads. That being said I don't know what the default result for SIGTERM is in your environment Signals and threads are always a problem. If there is a way to avoid this kind of situation I'd suggest trying hard to do it. What it sounds like (naively) is that you need to ignore all signals in tracker and workers and use thread conditionals (events)..for pthreads: man -k pthread_cond. Last edited by ramen_noodle; 07-31-2008 at 02:16 PM.. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|