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