diff options
author | Richard Purdie <richard@openedhand.com> | 2006-12-06 16:29:08 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-12-06 16:29:08 +0000 |
commit | aac2b8d7471c74d8e5d559c17df2140b110fa170 (patch) | |
tree | 9ef7c89c53b91906fdf0e1043f6e05cd5081b1a3 | |
parent | c690f8956385b2f2c62ea280d37b370742302d4e (diff) | |
download | openembedded-core-aac2b8d7471c74d8e5d559c17df2140b110fa170.tar.gz openembedded-core-aac2b8d7471c74d8e5d559c17df2140b110fa170.tar.bz2 openembedded-core-aac2b8d7471c74d8e5d559c17df2140b110fa170.zip |
runqueue.py: Send SIGINT upon Ctrl+C, not SIGNTERM
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1014 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 5768e3cf19..4da543ffc8 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -422,7 +422,7 @@ class RunQueue: # Bypass finally below active_builds = 0 # Stop Ctrl+C being sent to children - signal.signal(signal.SIGINT, signal.SIG_IGN) + # signal.signal(signal.SIGINT, signal.SIG_IGN) # Make the child the process group leader os.setpgid(0, 0) sys.stdin = open('/dev/null', 'r') @@ -472,9 +472,9 @@ class RunQueue: if len(failed_fnids) > 0: return failed_fnids except: - bb.msg.note(1, bb.msg.domain.RunQueue, "Sending SIGTERM to remaining %s tasks" % active_builds) + bb.msg.note(1, bb.msg.domain.RunQueue, "Sending SIGINT to remaining %s tasks" % active_builds) for k, v in build_pids.iteritems(): - os.kill(-k, signal.SIGTERM) + os.kill(-k, signal.SIGINT) raise # Sanity Checks |