Files
linux-kernelorg-stable/include/linux/pidfs.h
T

13 lines
398 B
C
Raw Normal View History

2024-02-12 16:32:38 +01:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_PID_FS_H
#define _LINUX_PID_FS_H
struct file *pidfs_alloc_file(struct pid *pid, unsigned int flags);
void __init pidfs_init(void);
2024-12-14 22:01:28 +01:00
void pidfs_add_pid(struct pid *pid);
2024-11-29 14:02:23 +01:00
void pidfs_remove_pid(struct pid *pid);
void pidfs_exit(struct task_struct *tsk);
2024-12-19 18:01:32 +01:00
extern const struct dentry_operations pidfs_dentry_operations;
2024-02-12 16:32:38 +01:00
#endif /* _LINUX_PID_FS_H */