devpts_i.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- linux-c -*- --------------------------------------------------------- *
  2.  *
  3.  * linux/fs/devpts/devpts_i.h
  4.  *
  5.  *  Copyright 1998 H. Peter Anvin -- All Rights Reserved
  6.  *
  7.  * This file is part of the Linux kernel and is made available under
  8.  * the terms of the GNU General Public License, version 2, or at your
  9.  * option, any later version, incorporated herein by reference.
  10.  *
  11.  * ------------------------------------------------------------------------- */
  12. #include <linux/fs.h>
  13. #include <linux/tty.h>
  14. #include <linux/types.h>
  15. #define BUILDING_DEVPTS 1
  16. #include <linux/devpts_fs.h>
  17. struct devpts_sb_info {
  18. u32 magic;
  19. int setuid;
  20. int setgid;
  21. uid_t   uid;
  22. gid_t   gid;
  23. umode_t mode;
  24. unsigned int max_ptys;
  25. struct inode **inodes;
  26. };
  27. #define DEVPTS_SUPER_MAGIC 0x1cd1
  28. #define DEVPTS_SBI_MAGIC   0x01da1d02
  29. extern inline struct devpts_sb_info *SBI(struct super_block *sb)
  30. {
  31. return (struct devpts_sb_info *)(sb->u.generic_sbp);
  32. }
  33. extern struct inode_operations devpts_root_inode_operations;
  34. extern struct file_operations devpts_root_operations;