Changeset 132ab5d1 in mainline for uspace/srv/fs/exfat/exfat_fat.c


Ignore:
Timestamp:
2018-01-30T03:20:45Z (8 years ago)
Author:
Jenda <jenda.jzqk73@…>
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.
Message:

Merge commit '6a5d05bd2551e64111bea4f9332dd7448c26ce84' into forwardport

Separate return value from error code in gen_irq_code*().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/exfat/exfat_fat.c

    r8bfb163 r132ab5d1  
    4848#include <assert.h>
    4949#include <fibril_synch.h>
    50 #include <malloc.h>
    5150#include <mem.h>
     51#include <stdlib.h>
    5252#include <str.h>
    5353
     
    7171 * @param max_clusters  Maximum number of clusters to visit.
    7272 *
    73  * @return              EOK on success or a negative error code.
     73 * @return              EOK on success or an error code.
    7474 */
    7575int
     
    120120 * @param flags         Flags passed to libblock.
    121121 *
    122  * @return              EOK on success or a negative error code.
     122 * @return              EOK on success or an error code.
    123123 */
    124124int
     
    184184 * @param flags         Flags passed to libblock.
    185185 *
    186  * @return              EOK on success or a negative error code.
     186 * @return              EOK on success or an error code.
    187187 */
    188188int
     
    227227 * @param value         Output argument holding the value of the cluster.
    228228 *
    229  * @return              EOK or a negative error code.
     229 * @return              EOK or an error code.
    230230 */
    231231int
     
    257257 * @param value         Value to set the cluster with.
    258258 *
    259  * @return              EOK on success or a negative error code.
     259 * @return              EOK on success or an error code.
    260260 */
    261261int
     
    295295 *                      will be returned.
    296296 *
    297  * @return              EOK on success, a negative error code otherwise.
     297 * @return              EOK on success, an error code otherwise.
    298298 */
    299299int
     
    361361 * @param firstc        First cluster in the chain which is to be freed.
    362362 *
    363  * @return              EOK on success or a negative return code.
     363 * @return              EOK on success or an error code.
    364364 */
    365365int
     
    394394 * @param lcl           Last cluster of the cluster chain to append.
    395395 *
    396  * @return              EOK on success or a negative error code.
     396 * @return              EOK on success or an error code.
    397397 */
    398398int
     
    438438 *                      be chopped off.
    439439 *
    440  * @return              EOK on success or a negative return code.
     440 * @return              EOK on success or an error code.
    441441 */
    442442int 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.