Changeset f73b291 in mainline for uspace/lib
- Timestamp:
- 2012-08-16T18:40:56Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dbf2ca4
- Parents:
- 13c4fe0
- Location:
- uspace/lib
- Files:
-
- 16 edited
- 2 moved
-
block/Makefile (modified) (1 diff)
-
block/block.c (moved) (moved from uspace/lib/block/libblock.c ) (3 diffs)
-
block/block.h (moved) (moved from uspace/lib/block/libblock.h )
-
ext2/libext2_block_group.h (modified) (1 diff)
-
ext2/libext2_directory.h (modified) (1 diff)
-
ext2/libext2_filesystem.c (modified) (1 diff)
-
ext2/libext2_filesystem.h (modified) (1 diff)
-
ext2/libext2_inode.h (modified) (1 diff)
-
ext2/libext2_superblock.c (modified) (1 diff)
-
ext2/libext2_superblock.h (modified) (1 diff)
-
ext4/libext4_bitmap.c (modified) (1 diff)
-
ext4/libext4_block_group.h (modified) (1 diff)
-
ext4/libext4_filesystem.h (modified) (1 diff)
-
ext4/libext4_inode.c (modified) (1 diff)
-
ext4/libext4_inode.h (modified) (1 diff)
-
ext4/libext4_superblock.c (modified) (1 diff)
-
ext4/libext4_superblock.h (modified) (1 diff)
-
ext4/libext4_types.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/block/Makefile
r13c4fe0 rf73b291 32 32 33 33 SOURCES = \ 34 libblock.c34 block.c 35 35 36 36 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/block/block.c
r13c4fe0 rf73b291 37 37 */ 38 38 39 #include "libblock.h"40 39 #include "../../srv/vfs/vfs.h" 41 40 #include <ipc/loc.h> … … 56 55 #include <sys/typefmt.h> 57 56 #include <stacktrace.h> 57 #include "block.h" 58 58 59 59 /** Lock protecting the device connection list */ … … 839 839 memcpy(data, buffer + offset, bytes); 840 840 free(buffer); 841 841 842 842 return EOK; 843 843 } -
uspace/lib/ext2/libext2_block_group.h
r13c4fe0 rf73b291 37 37 #define LIBEXT2_LIBEXT2_BLOCK_GROUP_H_ 38 38 39 #include < libblock.h>39 #include <block.h> 40 40 41 41 typedef struct ext2_block_group { -
uspace/lib/ext2/libext2_directory.h
r13c4fe0 rf73b291 37 37 #define LIBEXT2_LIBEXT2_DIRECTORY_H_ 38 38 39 #include < libblock.h>39 #include <block.h> 40 40 #include "libext2_filesystem.h" 41 41 #include "libext2_inode.h" -
uspace/lib/ext2/libext2_filesystem.c
r13c4fe0 rf73b291 39 39 #include "libext2_inode.h" 40 40 #include <errno.h> 41 #include < libblock.h>41 #include <block.h> 42 42 #include <malloc.h> 43 43 #include <assert.h> -
uspace/lib/ext2/libext2_filesystem.h
r13c4fe0 rf73b291 37 37 #define LIBEXT2_LIBEXT2_FILESYSTEM_H_ 38 38 39 #include < libblock.h>39 #include <block.h> 40 40 #include "libext2_superblock.h" 41 41 #include "libext2_block_group.h" -
uspace/lib/ext2/libext2_inode.h
r13c4fe0 rf73b291 37 37 #define LIBEXT2_LIBEXT2_INODE_H_ 38 38 39 #include < libblock.h>39 #include <block.h> 40 40 #include "libext2_superblock.h" 41 41 -
uspace/lib/ext2/libext2_superblock.c
r13c4fe0 rf73b291 37 37 #include <errno.h> 38 38 #include <malloc.h> 39 #include < libblock.h>39 #include <block.h> 40 40 #include <byteorder.h> 41 41 -
uspace/lib/ext2/libext2_superblock.h
r13c4fe0 rf73b291 37 37 #define LIBEXT2_LIBEXT2_SUPERBLOCK_H_ 38 38 39 #include < libblock.h>39 #include <block.h> 40 40 41 41 typedef struct ext2_superblock { -
uspace/lib/ext4/libext4_bitmap.c
r13c4fe0 rf73b291 36 36 37 37 #include <errno.h> 38 #include < libblock.h>38 #include <block.h> 39 39 #include <sys/types.h> 40 40 #include "libext4.h" -
uspace/lib/ext4/libext4_block_group.h
r13c4fe0 rf73b291 34 34 #define LIBEXT4_LIBEXT4_BLOCK_GROUP_H_ 35 35 36 #include < libblock.h>36 #include <block.h> 37 37 #include <sys/types.h> 38 38 #include "libext4_types.h" -
uspace/lib/ext4/libext4_filesystem.h
r13c4fe0 rf73b291 34 34 #define LIBEXT4_LIBEXT4_FILESYSTEM_H_ 35 35 36 #include < libblock.h>36 #include <block.h> 37 37 #include "libext4_types.h" 38 38 -
uspace/lib/ext4/libext4_inode.c
r13c4fe0 rf73b291 37 37 #include <byteorder.h> 38 38 #include <errno.h> 39 #include < libblock.h>39 #include <block.h> 40 40 #include "libext4.h" 41 41 -
uspace/lib/ext4/libext4_inode.h
r13c4fe0 rf73b291 34 34 #define LIBEXT4_LIBEXT4_INODE_H_ 35 35 36 #include < libblock.h>36 #include <block.h> 37 37 #include <sys/types.h> 38 38 #include "libext4_types.h" -
uspace/lib/ext4/libext4_superblock.c
r13c4fe0 rf73b291 38 38 #include <byteorder.h> 39 39 #include <errno.h> 40 #include < libblock.h>40 #include <block.h> 41 41 #include <malloc.h> 42 42 #include "libext4.h" -
uspace/lib/ext4/libext4_superblock.h
r13c4fe0 rf73b291 34 34 #define LIBEXT4_LIBEXT4_SUPERBLOCK_H_ 35 35 36 #include < libblock.h>36 #include <block.h> 37 37 #include <sys/types.h> 38 38 #include "libext4_types.h" -
uspace/lib/ext4/libext4_types.h
r13c4fe0 rf73b291 34 34 #define LIBEXT4_LIBEXT4_TYPES_H_ 35 35 36 #include < libblock.h>36 #include <block.h> 37 37 38 38 /*
Note:
See TracChangeset
for help on using the changeset viewer.
