Changeset 5e6e50b in mainline for uspace/srv/fs
- Timestamp:
- 2011-05-17T09:20:34Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2aaf804
- Parents:
- a29529b (diff), 3375bd4 (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
ra29529b r5e6e50b 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
ra29529b r5e6e50b 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
ra29529b r5e6e50b 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
ra29529b r5e6e50b 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
ra29529b r5e6e50b 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
ra29529b r5e6e50b 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.
