-
Notifications
You must be signed in to change notification settings - Fork 10
/
runfs.h
40 lines (31 loc) · 1.28 KB
/
runfs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
runfs: a self-cleaning filesystem for runtime state.
Copyright (C) 2015 Jude Nelson
This program is dual-licensed: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3 or later as
published by the Free Software Foundation. For the terms of this
license, see LICENSE.LGPLv3+ or <http://www.gnu.org/licenses/>.
You are free to use this program under the terms of the GNU General
Public License, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
Alternatively, you are free to use this program under the terms of the
Internet Software Consortium License, but WITHOUT ANY WARRANTY; without
even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
For the terms of this license, see LICENSE.ISC or
<http://www.isc.org/downloads/software-support-policy/isc-license/>.
*/
#ifndef _RUNFS_H_
#define _RUNFS_H_
#include "fskit/fskit.h"
#include "fskit/fuse/fskit_fuse.h"
#include "deferred.h"
#include "inode.h"
#include "os.h"
#include "util.h"
#include "wq.h"
struct runfs_state {
struct fskit_core* core;
struct runfs_wq* deferred_unlink_wq;
};
#endif