Home
last modified time | relevance | path

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

/linux-5.19.10/tools/power/x86/intel-speed-select/
Disst-daemon.c134 static void daemonize(char *rundir, char *pidfile) argument
191 pid_file_handle = open(pidfile, O_RDWR | O_CREAT, 0600);
/linux-5.19.10/kernel/
Dfork.c1985 struct file *pidfile = NULL; in copy_process() local
2277 pidfile = anon_inode_getfile("[pidfd]", &pidfd_fops, pid, in copy_process()
2279 if (IS_ERR(pidfile)) { in copy_process()
2281 retval = PTR_ERR(pidfile); in copy_process()
2465 if (pidfile) in copy_process()
2466 fd_install(pidfd, pidfile); in copy_process()
2487 fput(pidfile); in copy_process()