Changeset 301ff30 in mainline for uspace/lib/libc/include/vfs/vfs.h


Ignore:
Timestamp:
2009-06-03T22:47:08Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
99272a3
Parents:
98000fb
Message:

rename libc's fs_node_t to inode_t to avoid type conflict with VFS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/include/vfs/vfs.h

    r98000fb r301ff30  
    4545        dev_handle_t dev_handle;
    4646        fs_index_t index;
    47 } fs_node_t;
     47} inode_t;
    4848
    4949extern char *absolutize(const char *, size_t *);
     
    5252    unsigned int flags);
    5353
    54 extern int open_node(fs_node_t *node, int oflag);
     54extern int open_node(inode_t *node, int oflag);
    5555extern int fd_phone(int);
    56 extern void fd_node(int, fs_node_t *);
     56extern void fd_node(int, inode_t *);
    5757
    58 extern FILE *fopen_node(fs_node_t *node, const char *);
     58extern FILE *fopen_node(inode_t *node, const char *);
    5959extern int fphone(FILE *);
    60 extern void fnode(FILE *stream, fs_node_t *node);
     60extern void fnode(FILE *stream, inode_t *node);
    6161
    6262#endif
Note: See TracChangeset for help on using the changeset viewer.