mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-18 23:18:20 +00:00
13 lines
341 B
C
13 lines
341 B
C
|
#ifndef _RELAY_H
|
||
|
#define _RELAY_H
|
||
|
|
||
|
struct dentry *relayfs_create_file(const char *name,
|
||
|
struct dentry *parent,
|
||
|
int mode,
|
||
|
struct rchan *chan);
|
||
|
extern int relayfs_remove(struct dentry *dentry);
|
||
|
extern int relay_buf_empty(struct rchan_buf *buf);
|
||
|
extern void relay_destroy_channel(struct kref *kref);
|
||
|
|
||
|
#endif /* _RELAY_H */
|