Home
last modified time | relevance | path

Searched refs:pgrp (Results 1 – 5 of 5) sorted by relevance

/busybox-1.35.0/shell/hush_test/hush-signals/
Dsigint1.tests38 # I'd say that emacs need to put itself into a separate pgrp
/busybox-1.35.0/shell/ash_test/ash-signals/
Dsigint1.tests38 # I'd say that emacs need to put itself into a separate pgrp
/busybox-1.35.0/loginutils/
DREADME60 ctty and without session/pgrp properly created...
/busybox-1.35.0/shell/
Dhush.c708 pid_t pgrp; /* process group ID for the job */ member
2180 if (job->pgrp <= 0) in check_and_run_traps()
2182 debug_printf_exec("HUPing pgrp %d\n", job->pgrp); in check_and_run_traps()
2183 if (kill(- job->pgrp, SIGHUP) == 0) in check_and_run_traps()
2184 kill(- job->pgrp, SIGCONT); in check_and_run_traps()
9244 IF_HUSH_JOB(pi->pgrp = -1;) in run_pipe()
9564 pid_t pgrp; in run_pipe() local
9565 pgrp = pi->pgrp; in run_pipe()
9566 if (pgrp < 0) /* true for 1st process only */ in run_pipe()
9567 pgrp = getpid(); in run_pipe()
[all …]
Dash.c4055 xtcsetpgrp(int fd, pid_t pgrp) in xtcsetpgrp() argument
4057 if (tcsetpgrp(fd, pgrp)) in xtcsetpgrp()
4074 int pgrp; in setjobctl() local
4100 pgrp = tcgetpgrp(fd); in setjobctl()
4101 if (pgrp < 0) { in setjobctl()
4107 if (pgrp == getpgrp()) in setjobctl()
4111 initialpgrp = pgrp; in setjobctl()
4116 pgrp = rootpid; in setjobctl()
4117 setpgid(0, pgrp); in setjobctl()
4118 xtcsetpgrp(fd, pgrp); in setjobctl()
[all …]