Changeset 38d150e in mainline for uspace/srv/fs/exfat
- Timestamp:
- 2017-12-02T09:44:11Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 40feeac
- Parents:
- b5abaf7
- Location:
- uspace/srv/fs/exfat
- Files:
-
- 4 edited
-
exfat_directory.c (modified) (1 diff)
-
exfat_fat.c (modified) (1 diff)
-
exfat_idx.c (modified) (1 diff)
-
exfat_ops.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_directory.c
rb5abaf7 r38d150e 43 43 #include <byteorder.h> 44 44 #include <mem.h> 45 #include < malloc.h>45 #include <stdlib.h> 46 46 #include <str.h> 47 47 #include <align.h> -
uspace/srv/fs/exfat/exfat_fat.c
rb5abaf7 r38d150e 48 48 #include <assert.h> 49 49 #include <fibril_synch.h> 50 #include <malloc.h>51 50 #include <mem.h> 51 #include <stdlib.h> 52 52 #include <str.h> 53 53 -
uspace/srv/fs/exfat/exfat_idx.c
rb5abaf7 r38d150e 45 45 #include <assert.h> 46 46 #include <fibril_synch.h> 47 #include < malloc.h>47 #include <stdlib.h> 48 48 49 49 /** Each instance of this type describes one interval of freed VFS indices. */ -
uspace/srv/fs/exfat/exfat_ops.c
rb5abaf7 r38d150e 59 59 #include <fibril_synch.h> 60 60 #include <align.h> 61 #include <malloc.h>62 61 #include <stdio.h> 62 #include <stdlib.h> 63 63 64 64 /** Mutex protecting the list of cached free FAT nodes. */
Note:
See TracChangeset
for help on using the changeset viewer.
