Lines Matching +full:signal +full:- +full:exit
7 import sys, os, signal, time, subprocess, fcntl
18 # TODO (crosbug.com/38224)- sbasi: Remove extra logging.
25 os.kill(os.getpid(), signal.SIGTERM)
26 signal.signal(signal.SIGCHLD, kill_self)
33 argv = ['tail', '--retry', '--follow=name', '--bytes=+%d' % start, path]
34 # stdout=sys.stdout fails on pre-2.5 python (bug in subprocess module)
48 if time.time() - start_time >= 30:
54 # watch the exit code file for an exit
62 exit_code = -signal.SIGKILL # autotestd was nuked
77 signal.signal(signal.SIGCHLD, signal.SIG_DFL)
78 os.kill(stdout_pump.pid, signal.SIGTERM)
79 os.kill(stderr_pump.pid, signal.SIGTERM)
82 # exit (with the same code as autotestd)
83 sys.exit(exit_code)