cregit-Linux how code gets into the kernel

Release 4.7 include/linux/devpts_fs.h

Directory: include/linux
/* -*- linux-c -*- --------------------------------------------------------- *
 *
 * linux/include/linux/devpts_fs.h
 *
 *  Copyright 1998-2004 H. Peter Anvin -- All Rights Reserved
 *
 * This file is part of the Linux kernel and is made available under
 * the terms of the GNU General Public License, version 2, or at your
 * option, any later version, incorporated herein by reference.
 *
 * ------------------------------------------------------------------------- */

#ifndef _LINUX_DEVPTS_FS_H

#define _LINUX_DEVPTS_FS_H

#include <linux/errno.h>

#ifdef CONFIG_UNIX98_PTYS

struct pts_fs_info;

struct pts_fs_info *devpts_acquire(struct file *);
void devpts_release(struct pts_fs_info *);

int devpts_new_index(struct pts_fs_info *);
void devpts_kill_index(struct pts_fs_info *, int);

/* mknod in devpts */
struct dentry *devpts_pty_new(struct pts_fs_info *, int, void *);
/* get private structure */
void *devpts_get_priv(struct dentry *);
/* unlink */
void devpts_pty_kill(struct dentry *);

#endif


#endif /* _LINUX_DEVPTS_FS_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git2021.74%18.33%
sukadev bhattiprolusukadev bhattiprolu1819.57%216.67%
linus torvaldslinus torvalds1718.48%216.67%
andrew mortonandrew morton1314.13%216.67%
herton ronaldo krzesinskiherton ronaldo krzesinski1111.96%18.33%
jiri slabyjiri slaby88.70%325.00%
eric w. biedermaneric w. biederman55.43%18.33%
Total92100.00%12100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}