Changeset 88be951e in mainline
- Timestamp:
- 2011-07-26T19:09:01Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b2a18234
- Parents:
- 18eb736
- Location:
- uspace/srv/fs/minixfs
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs.h
r18eb736 r88be951e 238 238 mfs_free_zone(struct mfs_instance *inst, uint32_t zone); 239 239 240 /*mfs_utils.c*/ 241 extern uint16_t 242 conv16(bool native, uint16_t n); 243 244 extern uint32_t 245 conv32(bool native, uint32_t n); 246 247 extern uint64_t 248 conv64(bool native, uint64_t n); 249 240 250 #endif 241 251 -
uspace/srv/fs/minixfs/mfs_balloc.c
r18eb736 r88be951e 33 33 #include <stdlib.h> 34 34 #include "mfs.h" 35 #include "mfs_utils.h"36 35 37 36 static int -
uspace/srv/fs/minixfs/mfs_dentry.c
r18eb736 r88be951e 32 32 33 33 #include "mfs.h" 34 #include "mfs_utils.h"35 34 36 35 int -
uspace/srv/fs/minixfs/mfs_inode.c
r18eb736 r88be951e 33 33 #include <stdlib.h> 34 34 #include "mfs.h" 35 #include "mfs_utils.h"36 35 37 36 static int -
uspace/srv/fs/minixfs/mfs_ops.c
r18eb736 r88be951e 35 35 #include <align.h> 36 36 #include "mfs.h" 37 #include "mfs_utils.h"38 37 39 38 static bool check_magic_number(uint16_t magic, bool *native, -
uspace/srv/fs/minixfs/mfs_rw.c
r18eb736 r88be951e 32 32 33 33 #include "mfs.h" 34 #include "mfs_utils.h"35 34 36 35 static int -
uspace/srv/fs/minixfs/mfs_utils.c
r18eb736 r88be951e 33 33 #include <byteorder.h> 34 34 #include "mfs.h" 35 #include "mfs_utils.h"36 35 37 36 uint16_t conv16(bool native, uint16_t n)
Note:
See TracChangeset
for help on using the changeset viewer.