Changeset 96b02eb9 in mainline for uspace/srv/fs/devfs/devfs_ops.c


Ignore:
Timestamp:
2010-12-14T12:52:38Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6b10dab
Parents:
554debd
Message:

more unification of basic types

  • use sysarg_t and native_t (unsigned and signed variant) in both kernel and uspace
  • remove ipcarg_t in favour of sysarg_t

(no change in functionality)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/devfs/devfs_ops.c

    r554debd r96b02eb9  
    420420       
    421421        /* Accept the mount options */
    422         ipcarg_t retval = async_data_write_accept((void **) &opts, true, 0, 0,
     422        sysarg_t retval = async_data_write_accept((void **) &opts, true, 0, 0,
    423423            0, NULL);
    424424        if (retval != EOK) {
     
    584584               
    585585                /* Wait for reply from the driver. */
    586                 ipcarg_t rc;
     586                sysarg_t rc;
    587587                async_wait_for(msg, &rc);
    588588                size_t bytes = IPC_GET_ARG1(answer);
     
    648648               
    649649                /* Wait for reply from the driver. */
    650                 ipcarg_t rc;
     650                sysarg_t rc;
    651651                async_wait_for(msg, &rc);
    652652                size_t bytes = IPC_GET_ARG1(answer);
     
    752752               
    753753                /* Wait for reply from the driver */
    754                 ipcarg_t rc;
     754                sysarg_t rc;
    755755                async_wait_for(msg, &rc);
    756756               
Note: See TracChangeset for help on using the changeset viewer.