Changes in uspace/srv/fs/tmpfs/tmpfs_ops.c [69a60c4:19f857a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs_ops.c
r69a60c4 r19f857a 41 41 #include <ipc/ipc.h> 42 42 #include <macros.h> 43 #include < stdint.h>43 #include <limits.h> 44 44 #include <async.h> 45 45 #include <errno.h> … … 736 736 void tmpfs_sync(ipc_callid_t rid, ipc_call_t *request) 737 737 { 738 /* 739 * TMPFS keeps its data structures always consistent, 740 * thus the sync operation is a no-op. 741 */ 738 /* Dummy implementation */ 742 739 ipc_answer_0(rid, EOK); 743 740 }
Note:
See TracChangeset
for help on using the changeset viewer.