Changeset 132ab5d1 in mainline for uspace/srv/fs/exfat/exfat_fat.c
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (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. - File:
-
- 1 edited
-
uspace/srv/fs/exfat/exfat_fat.c (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_fat.c
r8bfb163 r132ab5d1 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 … … 71 71 * @param max_clusters Maximum number of clusters to visit. 72 72 * 73 * @return EOK on success or a negativeerror code.73 * @return EOK on success or an error code. 74 74 */ 75 75 int … … 120 120 * @param flags Flags passed to libblock. 121 121 * 122 * @return EOK on success or a negativeerror code.122 * @return EOK on success or an error code. 123 123 */ 124 124 int … … 184 184 * @param flags Flags passed to libblock. 185 185 * 186 * @return EOK on success or a negativeerror code.186 * @return EOK on success or an error code. 187 187 */ 188 188 int … … 227 227 * @param value Output argument holding the value of the cluster. 228 228 * 229 * @return EOK or a negativeerror code.229 * @return EOK or an error code. 230 230 */ 231 231 int … … 257 257 * @param value Value to set the cluster with. 258 258 * 259 * @return EOK on success or a negativeerror code.259 * @return EOK on success or an error code. 260 260 */ 261 261 int … … 295 295 * will be returned. 296 296 * 297 * @return EOK on success, a negativeerror code otherwise.297 * @return EOK on success, an error code otherwise. 298 298 */ 299 299 int … … 361 361 * @param firstc First cluster in the chain which is to be freed. 362 362 * 363 * @return EOK on success or a negative returncode.363 * @return EOK on success or an error code. 364 364 */ 365 365 int … … 394 394 * @param lcl Last cluster of the cluster chain to append. 395 395 * 396 * @return EOK on success or a negativeerror code.396 * @return EOK on success or an error code. 397 397 */ 398 398 int … … 438 438 * be chopped off. 439 439 * 440 * @return EOK on success or a negative returncode.440 * @return EOK on success or an error code. 441 441 */ 442 442 int exfat_chop_clusters(exfat_bs_t *bs, exfat_node_t *nodep, exfat_cluster_t lcl)
Note:
See TracChangeset
for help on using the changeset viewer.
