Changes in uspace/srv/fs/fat/fat_fat.c [cde999a:db8626d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_fat.c
rcde999a rdb8626d 48 48 #include <assert.h> 49 49 #include <fibril_synch.h> 50 #include <malloc.h> 50 51 #include <mem.h> 51 #include <stdlib.h>52 52 53 53 #define IS_ODD(number) (number & 0x1) … … 71 71 * @param max_clusters Maximum number of clusters to visit. 72 72 * 73 * @return EOK on success or a nerror code.73 * @return EOK on success or a negative error code. 74 74 */ 75 75 int … … 121 121 * @param flags Flags passed to libblock. 122 122 * 123 * @return EOK on success or a nerror code.123 * @return EOK on success or a negative error code. 124 124 */ 125 125 int … … 186 186 * @param flags Flags passed to libblock. 187 187 * 188 * @return EOK on success or a nerror code.188 * @return EOK on success or a negative error code. 189 189 */ 190 190 int … … 235 235 * @param pos Position in the last node block. 236 236 * 237 * @return EOK on success or a nerror code.237 * @return EOK on success or a negative error code. 238 238 */ 239 239 int … … 287 287 * @param value Output argument holding the value of the cluster. 288 288 * 289 * @return EOK or a nerror code.289 * @return EOK or a negative error code. 290 290 */ 291 291 static int … … 357 357 * @param value Output argument holding the value of the cluster. 358 358 * 359 * @return EOK or a nerror code.359 * @return EOK or a negative error code. 360 360 */ 361 361 static int … … 388 388 * @param value Output argument holding the value of the cluster. 389 389 * 390 * @return EOK or a nerror code.390 * @return EOK or a negative error code. 391 391 */ 392 392 static int … … 421 421 * @param value Output argument holding the value of the cluster. 422 422 * 423 * @return EOK or a nerror code.423 * @return EOK or a negative error code. 424 424 */ 425 425 int … … 449 449 * @param value Value to set the cluster with. 450 450 * 451 * @return EOK on success or a nerror code.451 * @return EOK on success or a negative error code. 452 452 */ 453 453 static int … … 537 537 * @param value Value to set the cluster with. 538 538 * 539 * @return EOK on success or a nerror code.539 * @return EOK on success or a negative error code. 540 540 */ 541 541 static int … … 570 570 * @param value Value to set the cluster with. 571 571 * 572 * @return EOK on success or a nerror code.572 * @return EOK on success or a negative error code. 573 573 */ 574 574 static int … … 607 607 * @param value Value to set the cluster with. 608 608 * 609 * @return EOK on success or a nerror code.609 * @return EOK on success or a negative error code. 610 610 */ 611 611 int … … 634 634 * @param nclsts Number of clusters in the lifo chain. 635 635 * 636 * @return EOK on success or a nerror code.636 * @return EOK on success or a negative error code. 637 637 */ 638 638 int fat_alloc_shadow_clusters(fat_bs_t *bs, service_id_t service_id, … … 671 671 * will be returned. 672 672 * 673 * @return EOK on success, a nerror code otherwise.673 * @return EOK on success, a negative error code otherwise. 674 674 */ 675 675 int … … 742 742 * @param firstc First cluster in the chain which is to be freed. 743 743 * 744 * @return EOK on success or a n errorcode.744 * @return EOK on success or a negative return code. 745 745 */ 746 746 int … … 780 780 * @param lcl Last cluster of the cluster chain to append. 781 781 * 782 * @return EOK on success or a nerror code.782 * @return EOK on success or a negative error code. 783 783 */ 784 784 int fat_append_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t mcl, … … 827 827 * be chopped off. 828 828 * 829 * @return EOK on success or a n errorcode.829 * @return EOK on success or a negative return code. 830 830 */ 831 831 int fat_chop_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t lcl)
Note:
See TracChangeset
for help on using the changeset viewer.