Rev 4389 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4389 | Rev 4691 | ||
|---|---|---|---|
| Line 36... | Line 36... | ||
| 36 | #include <ipc/ipc.h> |
36 | #include <ipc/ipc.h> |
| 37 | #include <libfs.h> |
37 | #include <libfs.h> |
| 38 | #include <atomic.h> |
38 | #include <atomic.h> |
| 39 | #include <sys/types.h> |
39 | #include <sys/types.h> |
| 40 | #include <bool.h> |
40 | #include <bool.h> |
| 41 | #include <libadt/hash_table.h> |
41 | #include <adt/hash_table.h> |
| 42 | 42 | ||
| 43 | #ifndef dprintf |
43 | #ifndef dprintf |
| 44 | #define dprintf(...) printf(__VA_ARGS__) |
44 | #define dprintf(...) printf(__VA_ARGS__) |
| 45 | #endif |
45 | #endif |
| 46 | 46 | ||
| Line 84... | Line 84... | ||
| 84 | extern void tmpfs_mount(ipc_callid_t, ipc_call_t *); |
84 | extern void tmpfs_mount(ipc_callid_t, ipc_call_t *); |
| 85 | extern void tmpfs_lookup(ipc_callid_t, ipc_call_t *); |
85 | extern void tmpfs_lookup(ipc_callid_t, ipc_call_t *); |
| 86 | extern void tmpfs_read(ipc_callid_t, ipc_call_t *); |
86 | extern void tmpfs_read(ipc_callid_t, ipc_call_t *); |
| 87 | extern void tmpfs_write(ipc_callid_t, ipc_call_t *); |
87 | extern void tmpfs_write(ipc_callid_t, ipc_call_t *); |
| 88 | extern void tmpfs_truncate(ipc_callid_t, ipc_call_t *); |
88 | extern void tmpfs_truncate(ipc_callid_t, ipc_call_t *); |
| - | 89 | extern void tmpfs_stat(ipc_callid_t, ipc_call_t *); |
|
| - | 90 | extern void tmpfs_close(ipc_callid_t, ipc_call_t *); |
|
| 89 | extern void tmpfs_destroy(ipc_callid_t, ipc_call_t *); |
91 | extern void tmpfs_destroy(ipc_callid_t, ipc_call_t *); |
| - | 92 | extern void tmpfs_open_node(ipc_callid_t, ipc_call_t *); |
|
| - | 93 | extern void tmpfs_sync(ipc_callid_t, ipc_call_t *); |
|
| 90 | 94 | ||
| 91 | extern bool tmpfs_restore(dev_handle_t); |
95 | extern bool tmpfs_restore(dev_handle_t); |
| 92 | 96 | ||
| 93 | #endif |
97 | #endif |
| 94 | 98 | ||