Changeset 76ca3f7 in mainline for uspace/srv/fs
- Timestamp:
- 2010-03-23T20:49:54Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e417b96
- Parents:
- b48ebd19 (diff), 63f8966 (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:
-
- 9 edited
-
devfs/Makefile (modified) (2 diffs)
-
devfs/devfs_ops.c (modified) (1 diff)
-
fat/Makefile (modified) (2 diffs)
-
fat/fat_dentry.c (modified) (1 diff)
-
fat/fat_idx.c (modified) (1 diff)
-
fat/fat_ops.c (modified) (1 diff)
-
tmpfs/Makefile (modified) (2 diffs)
-
tmpfs/tmpfs_dump.c (modified) (1 diff)
-
tmpfs/tmpfs_ops.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/devfs/Makefile
rb48ebd19 r76ca3f7 29 29 30 30 USPACE_PREFIX = ../../.. 31 LIBS = $(LIBFS_PREFIX)/libfs.a $(LIBC_PREFIX)/libc.a31 LIBS = $(LIBFS_PREFIX)/libfs.a 32 32 EXTRA_CFLAGS += -I$(LIBFS_PREFIX) 33 34 OUTPUT = devfs 33 BINARY = devfs 35 34 36 35 SOURCES = \ … … 38 37 devfs_ops.c 39 38 40 include ../../Makefile.common39 include $(USPACE_PREFIX)/Makefile.common -
uspace/srv/fs/devfs/devfs_ops.c
rb48ebd19 r76ca3f7 41 41 #include <errno.h> 42 42 #include <malloc.h> 43 #include <str ing.h>43 #include <str.h> 44 44 #include <libfs.h> 45 45 #include <fibril_synch.h> -
uspace/srv/fs/fat/Makefile
rb48ebd19 r76ca3f7 29 29 30 30 USPACE_PREFIX = ../../.. 31 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBFS_PREFIX)/libfs.a $(LIBC_PREFIX)/libc.a31 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBFS_PREFIX)/libfs.a 32 32 EXTRA_CFLAGS += -I$(LIBBLOCK_PREFIX) -I$(LIBFS_PREFIX) 33 34 OUTPUT = fat 33 BINARY = fat 35 34 36 35 SOURCES = \ … … 41 40 fat_fat.c 42 41 43 include ../../Makefile.common42 include $(USPACE_PREFIX)/Makefile.common -
uspace/srv/fs/fat/fat_dentry.c
rb48ebd19 r76ca3f7 38 38 #include "fat_dentry.h" 39 39 #include <ctype.h> 40 #include <str ing.h>40 #include <str.h> 41 41 42 42 static bool is_d_char(const char ch) -
uspace/srv/fs/fat/fat_idx.c
rb48ebd19 r76ca3f7 39 39 #include "../../vfs/vfs.h" 40 40 #include <errno.h> 41 #include <str ing.h>41 #include <str.h> 42 42 #include <adt/hash_table.h> 43 43 #include <adt/list.h> -
uspace/srv/fs/fat/fat_ops.c
rb48ebd19 r76ca3f7 48 48 #include <async.h> 49 49 #include <errno.h> 50 #include <str ing.h>50 #include <str.h> 51 51 #include <byteorder.h> 52 52 #include <adt/hash_table.h> -
uspace/srv/fs/tmpfs/Makefile
rb48ebd19 r76ca3f7 29 29 30 30 USPACE_PREFIX = ../../.. 31 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBFS_PREFIX)/libfs.a $(LIBC_PREFIX)/libc.a31 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBFS_PREFIX)/libfs.a 32 32 EXTRA_CFLAGS += -I$(LIBBLOCK_PREFIX) -I$(LIBFS_PREFIX) 33 34 OUTPUT = tmpfs 33 BINARY = tmpfs 35 34 36 35 SOURCES = \ … … 39 38 tmpfs_dump.c 40 39 41 include ../../Makefile.common40 include $(USPACE_PREFIX)/Makefile.common -
uspace/srv/fs/tmpfs/tmpfs_dump.c
rb48ebd19 r76ca3f7 41 41 #include <errno.h> 42 42 #include <stdlib.h> 43 #include <str ing.h>43 #include <str.h> 44 44 #include <sys/types.h> 45 45 #include <as.h> -
uspace/srv/fs/tmpfs/tmpfs_ops.c
rb48ebd19 r76ca3f7 46 46 #include <atomic.h> 47 47 #include <stdlib.h> 48 #include <str ing.h>48 #include <str.h> 49 49 #include <stdio.h> 50 50 #include <assert.h>
Note:
See TracChangeset
for help on using the changeset viewer.
