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.sh386 local pidfile
388 pidfile=$(mktemp "${PIDFILE_TEMPLATE}")
389 PIDFILES["${pidfile}"]=1
391 echo "${pidfile}"
395 local pidfile
397 for pidfile in "$@"; do
398 if [[ -s "${pidfile}" ]]; then
399 pkill -SIGTERM -F "${pidfile}" > /dev/null 2>&1
402 if [[ -e "${pidfile}" ]]; then
403 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.c1973 struct file *pidfile = NULL; in copy_process() local
2259 retval = pidfd_prepare(pid, flags | PIDFD_STALE, &pidfile); in copy_process()
2462 if (pidfile) in copy_process()
2463 fd_install(pidfd, pidfile); in copy_process()
2486 fput(pidfile); in copy_process()