Changeset 61042de in mainline for uspace/srv/fs
- Timestamp:
- 2017-03-18T20:58:08Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 61600e7
- Parents:
- b7f69f2
- Location:
- uspace/srv/fs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.h
rb7f69f2 r61042de 41 41 #include <sys/types.h> 42 42 #include <stdbool.h> 43 #include <macros.h> 43 44 #include "../../vfs/vfs.h" 44 45 … … 46 47 #define dprintf(...) printf(__VA_ARGS__) 47 48 #endif 48 49 #define min(a, b) ((a) < (b) ? (a) : (b))50 49 51 50 /* -
uspace/srv/fs/mfs/mfs.h
rb7f69f2 r61042de 45 45 #include <assert.h> 46 46 #include <stdbool.h> 47 #include <macros.h> 47 48 #include "../../vfs/vfs.h" 48 49 … … 50 51 51 52 /* #define DEBUG_MODE */ 52 53 #define min(a, b) ((a) < (b) ? (a) : (b))54 53 55 54 #ifdef DEBUG_MODE -
uspace/srv/fs/tmpfs/tmpfs_ops.c
rb7f69f2 r61042de 54 54 #include <libfs.h> 55 55 56 #define min(a, b) ((a) < (b) ? (a) : (b))57 #define max(a, b) ((a) > (b) ? (a) : (b))58 59 56 /** All root nodes have index 0. */ 60 57 #define TMPFS_SOME_ROOT 0
Note:
See TracChangeset
for help on using the changeset viewer.