Changeset 3375bd4 in mainline for uspace/srv/fs
- Timestamp:
- 2011-05-17T07:44:17Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 04c418d, 2586860, 5e6e50b
- Parents:
- 72cd53d (diff), 0d8a304 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/srv/fs
- Files:
-
- 6 edited
-
devfs/Makefile (modified) (1 diff)
-
fat/Makefile (modified) (1 diff)
-
fat/fat_fat.c (modified) (1 diff)
-
fat/fat_idx.c (modified) (1 diff)
-
fat/fat_ops.c (modified) (1 diff)
-
tmpfs/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/devfs/Makefile
r72cd53d r3375bd4 32 32 EXTRA_CFLAGS += -I$(LIBFS_PREFIX) 33 33 BINARY = devfs 34 STATIC_NEEDED = y 34 35 35 36 SOURCES = \ -
uspace/srv/fs/fat/Makefile
r72cd53d r3375bd4 32 32 EXTRA_CFLAGS += -I$(LIBBLOCK_PREFIX) -I$(LIBFS_PREFIX) 33 33 BINARY = fat 34 STATIC_NEEDED = y 34 35 35 36 SOURCES = \ -
uspace/srv/fs/fat/fat_fat.c
r72cd53d r3375bd4 47 47 #include <assert.h> 48 48 #include <fibril_synch.h> 49 #include <malloc.h> 49 50 #include <mem.h> 50 51 -
uspace/srv/fs/fat/fat_idx.c
r72cd53d r3375bd4 44 44 #include <assert.h> 45 45 #include <fibril_synch.h> 46 #include <malloc.h> 46 47 47 48 /** Each instance of this type describes one interval of freed VFS indices. */ -
uspace/srv/fs/fat/fat_ops.c
r72cd53d r3375bd4 55 55 #include <sys/mman.h> 56 56 #include <align.h> 57 #include <malloc.h> 57 58 58 59 #define FAT_NODE(node) ((node) ? (fat_node_t *) (node)->data : NULL) -
uspace/srv/fs/tmpfs/Makefile
r72cd53d r3375bd4 32 32 EXTRA_CFLAGS += -I$(LIBBLOCK_PREFIX) -I$(LIBFS_PREFIX) 33 33 BINARY = tmpfs 34 STATIC_NEEDED = y 34 35 35 36 SOURCES = \
Note:
See TracChangeset
for help on using the changeset viewer.
