Changeset ce04ea44 in mainline for uspace/srv/devman/match.c


Ignore:
Timestamp:
2017-04-02T12:27:14Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
Children:
d4067a7
Parents:
163fc09
Message:

Rename read() to vfs_read() and write() to vfs_write()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/match.c

    r163fc09 rce04ea44  
    229229        }
    230230       
    231         ssize_t read_bytes = read(fd, (aoff64_t []) {0}, buf, len);
     231        ssize_t read_bytes = vfs_read(fd, (aoff64_t []) {0}, buf, len);
    232232        if (read_bytes <= 0) {
    233233                log_msg(LOG_DEFAULT, LVL_ERROR, "Unable to read file '%s' (%d).", conf_path,
Note: See TracChangeset for help on using the changeset viewer.