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.sh400 local pidfile
402 pidfile=$(mktemp "${PIDFILE_TEMPLATE}")
403 PIDFILES["${pidfile}"]=1
405 echo "${pidfile}"
409 local pidfile
411 for pidfile in "$@"; do
412 if [[ -s "${pidfile}" ]]; then
413 pkill -SIGTERM -F "${pidfile}" > /dev/null 2>&1
416 if [[ -e "${pidfile}" ]]; then
417 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.sh156 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.c1978 struct file *pidfile = NULL; in copy_process() local
2305 retval = pidfd_prepare(pid, flags, &pidfile); in copy_process()
2516 if (pidfile) in copy_process()
2517 fd_install(pidfd, pidfile); in copy_process()
2544 fput(pidfile); in copy_process()