2007-05-11 09:23:11 +04:00
|
|
|
/*
|
|
|
|
* include/linux/anon_inodes.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_ANON_INODES_H
|
|
|
|
#define _LINUX_ANON_INODES_H
|
|
|
|
|
2011-07-12 13:27:20 +04:00
|
|
|
struct file_operations;
|
|
|
|
|
2009-09-23 03:43:57 +04:00
|
|
|
struct file *anon_inode_getfile(const char *name,
|
|
|
|
const struct file_operations *fops,
|
|
|
|
void *priv, int flags);
|
2008-02-23 14:46:49 +03:00
|
|
|
int anon_inode_getfd(const char *name, const struct file_operations *fops,
|
2008-07-24 08:29:22 +04:00
|
|
|
void *priv, int flags);
|
2007-05-11 09:23:11 +04:00
|
|
|
|
|
|
|
#endif /* _LINUX_ANON_INODES_H */
|
|
|
|
|