anon_inodes.h 455 B

1234567891011121314151617181920
  1. /*
  2. * include/linux/anon_inodes.h
  3. *
  4. * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
  5. *
  6. */
  7. #ifndef _LINUX_ANON_INODES_H
  8. #define _LINUX_ANON_INODES_H
  9. struct file_operations;
  10. struct file *anon_inode_getfile(const char *name,
  11. const struct file_operations *fops,
  12. void *priv, int flags);
  13. int anon_inode_getfd(const char *name, const struct file_operations *fops,
  14. void *priv, int flags);
  15. #endif /* _LINUX_ANON_INODES_H */