Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_ipc.c

    r6ad454f rb7fd2a0  
    4242       
    4343        int outfd = -1;
    44         int rc = vfs_op_clone(oldfd, newfd, desc, &outfd);
     44        errno_t rc = vfs_op_clone(oldfd, newfd, desc, &outfd);
    4545        async_answer_1(rid, rc, outfd);
    4646}
     
    5353        vfs_fs_probe_info_t info;
    5454        size_t len;
    55         int rc;
     55        errno_t rc;
    5656       
    5757        /*
     
    8888        size_t len;
    8989        vfs_fstypes_t fstypes;
    90         int rc;
     90        errno_t rc;
    9191
    9292        rc = vfs_get_fstypes(&fstypes);
     
    129129       
    130130        /* Now we expect to receive the mount options. */
    131         int rc = async_data_write_accept((void **) &opts, true, 0,
     131        errno_t rc = async_data_write_accept((void **) &opts, true, 0,
    132132            MAX_MNTOPTS_LEN, 0, NULL);
    133133        if (rc != EOK) {
     
    161161        int mode = IPC_GET_ARG2(*request);
    162162
    163         int rc = vfs_op_open(fd, mode);
     163        errno_t rc = vfs_op_open(fd, mode);
    164164        async_answer_0(rid, rc);
    165165}
     
    168168{
    169169        int fd = IPC_GET_ARG1(*request);
    170         int rc = vfs_op_put(fd);
     170        errno_t rc = vfs_op_put(fd);
    171171        async_answer_0(rid, rc);
    172172}
     
    179179
    180180        size_t bytes = 0;
    181         int rc = vfs_op_read(fd, pos, &bytes);
     181        errno_t rc = vfs_op_read(fd, pos, &bytes);
    182182        async_answer_1(rid, rc, bytes);
    183183}
     
    189189        char *old = NULL;
    190190        char *new = NULL;
    191         int rc;
     191        errno_t rc;
    192192       
    193193        basefd = IPC_GET_ARG1(*request);
     
    231231        int fd = IPC_GET_ARG1(*request);
    232232        int64_t size = MERGE_LOUP32(IPC_GET_ARG2(*request), IPC_GET_ARG3(*request));
    233         int rc = vfs_op_resize(fd, size);
     233        errno_t rc = vfs_op_resize(fd, size);
    234234        async_answer_0(rid, rc);
    235235}
     
    238238{
    239239        int fd = IPC_GET_ARG1(*request);
    240         int rc = vfs_op_stat(fd);
     240        errno_t rc = vfs_op_stat(fd);
    241241        async_answer_0(rid, rc);
    242242}
     
    246246        int fd = (int) IPC_GET_ARG1(*request);
    247247       
    248         int rc = vfs_op_statfs(fd);
     248        errno_t rc = vfs_op_statfs(fd);
    249249        async_answer_0(rid, rc);
    250250}
     
    253253{
    254254        int fd = IPC_GET_ARG1(*request);
    255         int rc = vfs_op_sync(fd);
     255        errno_t rc = vfs_op_sync(fd);
    256256        async_answer_0(rid, rc);
    257257}
     
    263263       
    264264        char *path;
    265         int rc = async_data_write_accept((void **) &path, true, 0, 0, 0, NULL);
     265        errno_t rc = async_data_write_accept((void **) &path, true, 0, 0, 0, NULL);
    266266        if (rc == EOK)
    267267                rc = vfs_op_unlink(parentfd, expectfd, path);
     
    273273{
    274274        int mpfd = IPC_GET_ARG1(*request);
    275         int rc = vfs_op_unmount(mpfd);
     275        errno_t rc = vfs_op_unmount(mpfd);
    276276        async_answer_0(rid, rc);
    277277}
     
    281281        bool high_fd = IPC_GET_ARG1(*request);
    282282        int fd = -1;
    283         int rc = vfs_op_wait_handle(high_fd, &fd);
     283        errno_t rc = vfs_op_wait_handle(high_fd, &fd);
    284284        async_answer_1(rid, rc, fd);
    285285}
     
    296296        int fd = 0;
    297297        char *path;
    298         int rc = async_data_write_accept((void **)&path, true, 0, 0, 0, NULL);
     298        errno_t rc = async_data_write_accept((void **)&path, true, 0, 0, 0, NULL);
    299299        if (rc == EOK) {
    300300                rc = vfs_op_walk(parentfd, flags, path, &fd);
     
    311311
    312312        size_t bytes = 0;
    313         int rc = vfs_op_write(fd, pos, &bytes);
     313        errno_t rc = vfs_op_write(fd, pos, &bytes);
    314314        async_answer_1(rid, rc, bytes);
    315315}
Note: See TracChangeset for help on using the changeset viewer.