Home
last modified time | relevance | path

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

/linux/tools/testing/selftests/vsock/
H A Dvmtest.sh203 local pidfile
205 pidfile=$(mktemp "${PIDFILE_TEMPLATE}")
206 PIDFILES["${pidfile}"]=1
208 echo "${pidfile}"
212 local pidfile
214 for pidfile in "$@"; do
215 if [[ -s "${pidfile}" ]]; then
216 pkill -SIGTERM -F "${pidfile}" > /dev/null 2>&1
219 if [[ -e "${pidfile}" ]]; then
220 rm -f "${pidfile}"
[all …]
/linux/tools/power/x86/intel-speed-select/
H A Disst-daemon.c147 static void daemonize(char *rundir, char *pidfile) argument
203 pid_file_handle = open(pidfile, O_RDWR | O_CREAT, 0600);
/linux/tools/perf/tests/shell/
H A Dkvm.sh129 if ! $qemu -enable-kvm -display none -daemonize -pidfile "${qemu_pid_file}" -monitor none; then
/linux/tools/mm/
H A Dthpmaps440 with open(f'{cgroup}/cgroup.procs') as pidfile:
441 for line in pidfile.readlines():
/linux/kernel/
H A Dfork.c1975 struct file *pidfile = NULL; in copy_process() local
2257 retval = pidfd_prepare(pid, flags | PIDFD_STALE, &pidfile); in copy_process()
2460 if (pidfile) in copy_process()
2461 fd_install(pidfd, pidfile); in copy_process()
2484 fput(pidfile); in copy_process()