2007-05-11 07:23:11 +02: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 12:46:49 +01:00
|
|
|
int anon_inode_getfd(const char *name, const struct file_operations *fops,
|
2007-05-11 07:23:11 +02:00
|
|
|
void *priv);
|
|
|
|
|
|
|
|
#endif /* _LINUX_ANON_INODES_H */
|
|
|
|
|