Changeset fcab7ef in mainline for uspace/lib/c/include


Ignore:
Timestamp:
2017-03-26T20:46:56Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fe91f66
Parents:
f644472
Message:

Merge dup2() into vfs_clone()

Location:
uspace/lib/c/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/ipc/vfs.h

    rf644472 rfcab7ef  
    7373        VFS_IN_REGISTER,
    7474        VFS_IN_RENAME,
    75         VFS_IN_DUP,
    7675        VFS_IN_WAIT_HANDLE,
    7776        VFS_IN_STATFS,
  • uspace/lib/c/include/unistd.h

    rf644472 rfcab7ef  
    5858#define getpagesize()  (PAGE_SIZE)
    5959
    60 extern int dup2(int, int);
    61 
    6260extern ssize_t write(int, aoff64_t *, const void *, size_t);
    6361extern ssize_t read(int, aoff64_t *, void *, size_t);
  • uspace/lib/c/include/vfs/vfs.h

    rf644472 rfcab7ef  
    6969extern int vfs_receive_handle(bool);
    7070
    71 extern int vfs_clone(int, bool);
     71extern int vfs_clone(int, int, bool);
    7272extern int vfs_root(void);
    7373extern void vfs_root_set(int);
Note: See TracChangeset for help on using the changeset viewer.