Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _LINUX_PID_FS_H
3#define _LINUX_PID_FS_H
4
5struct file *pidfs_alloc_file(struct pid *pid, unsigned int flags);
6void __init pidfs_init(void);
7void pidfs_add_pid(struct pid *pid);
8void pidfs_remove_pid(struct pid *pid);
9extern const struct dentry_operations pidfs_dentry_operations;
10
11#endif /* _LINUX_PID_FS_H */