Lines Matching refs:pid
39 pid = os.fork()
40 if pid > 0:
54 pid = os.fork()
55 if pid > 0:
75 pid = str(os.getpid())
76 file(self.pidfile, 'w+').write("%s\n" % pid)
88 pid = int(pf.read().strip())
91 pid = None
93 if pid:
109 pid = int(pf.read().strip())
112 pid = None
114 if not pid:
122 os.kill(pid, SIGINT)
125 os.kill(pid, SIGTERM)