2007-05-11 05:23:11 +00: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 09:27:20 +00:00
|
|
|
struct file_operations;
|
|
|
|
|
2009-09-22 23:43:57 +00:00
|
|
|
struct file *anon_inode_getfile(const char *name,
|
|
|
|
const struct file_operations *fops,
|
|
|
|
void *priv, int flags);
|
2008-02-23 11:46:49 +00:00
|
|
|
int anon_inode_getfd(const char *name, const struct file_operations *fops,
|
2008-07-24 04:29:22 +00:00
|
|
|
void *priv, int flags);
|
2007-05-11 05:23:11 +00:00
|
|
|
|
|
|
|
#endif /* _LINUX_ANON_INODES_H */
|
|
|
|
|