Blame view

include/linux/anon_inodes.h 455 Bytes
5dc8bf813   Davide Libenzi   signal/timer/even...
1
2
3
4
5
6
7
8
9
  /*
   *  include/linux/anon_inodes.h
   *
   *  Copyright (C) 2007  Davide Libenzi <davidel@xmailserver.org>
   *
   */
  
  #ifndef _LINUX_ANON_INODES_H
  #define _LINUX_ANON_INODES_H
e46ebd278   Tomasz Stanislawski   anonfd: fix missi...
10
  struct file_operations;
562787a5c   Davide Libenzi   anonfd: split int...
11
12
13
  struct file *anon_inode_getfile(const char *name,
  				const struct file_operations *fops,
  				void *priv, int flags);
2030a42ce   Al Viro   [PATCH] sanitize ...
14
  int anon_inode_getfd(const char *name, const struct file_operations *fops,
7d9dbca34   Ulrich Drepper   flag parameters: ...
15
  		     void *priv, int flags);
5dc8bf813   Davide Libenzi   signal/timer/even...
16
17
  
  #endif /* _LINUX_ANON_INODES_H */