Searched refs:kill (Results 1 - 7 of 7) sorted by relevance

/u-boot/test/py/
H A Du_boot_console_sandbox.py85 def kill(self, sig): member in class:ConsoleSandbox
95 self.log.action('kill %d' % sig)
96 self.p.kill(sig)
H A Du_boot_utils.py349 def waitpid(pid, timeout=60, kill=False):
358 kill: Whether to forcibly kill the process after timeout.
369 os.kill(pid, 0)
372 if kill:
373 os.kill(pid, signal.SIGKILL)
H A Du_boot_spawn.py75 def kill(self, sig): member in class:Spawn
85 os.kill(self.pid, sig)
/u-boot/test/py/tests/
H A Dtest_sandbox_exit.py20 u_boot_console.kill(signal.SIGINT)
/u-boot/test/py/tests/test_fs/
H A Dconftest.py208 util.waitpid(pid, kill=True)
/u-boot/common/
H A Dcli_hush.c691 if ( (i=kill(- pi->pgrp, SIGCONT)) < 0) {
695 perror_msg("kill (SIGCONT)");
2716 /* XXX In case of a syntax error, should we try to kill the child?
3353 kill (- shell_pgrp, SIGTTIN);
H A Dcli_hush_upstream.c262 //config: bool "kill builtin (supports kill %jobspec)"
1255 BLTIN("kill" , builtin_kill , "Send signals to processes"),
1941 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1943 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
2301 if (kill(- job->pgrp, SIGHUP) == 0)
2302 kill(- job->pgrp, SIGCONT);
2822 * (while kill -INT $$; do sleep 1; done) &
2824 * trap 'echo I' int; (while kill -INT $$; do sleep 1; done) &
2826 * trap 'echo T' term; (while kill
[all...]

Completed in 205 milliseconds