diff options
Diffstat (limited to 'firmware/include')
| -rw-r--r-- | firmware/include/dircache.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/include/dircache.h b/firmware/include/dircache.h index 48f2980..4141254 100644 --- a/firmware/include/dircache.h +++ b/firmware/include/dircache.h @@ -46,6 +46,12 @@ struct dircache_maindata { struct dircache_entry *root_entry; }; +#define MAX_PENDING_BINDINGS 2 +struct fdbind_queue { + char path[MAX_PATH]; + int fd; +}; + /* Exported structures. */ struct dircache_entry { struct dircache_entry *next; |