Changeset 301ff30 in mainline for uspace/lib/libc/include
- Timestamp:
- 2009-06-03T22:47:08Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 99272a3
- Parents:
- 98000fb
- Location:
- uspace/lib/libc/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/loader/loader.h
r98000fb r301ff30 51 51 extern int loader_set_pathname(loader_t *, const char *); 52 52 extern int loader_set_args(loader_t *, char *const[]); 53 extern int loader_set_files(loader_t *, fs_node_t *const[]);53 extern int loader_set_files(loader_t *, inode_t *const[]); 54 54 extern int loader_load_program(loader_t *); 55 55 extern int loader_run(loader_t *); -
uspace/lib/libc/include/loader/pcb.h
r98000fb r301ff30 61 61 int filc; 62 62 /** Preset files. */ 63 fs_node_t **filv;63 inode_t **filv; 64 64 65 65 /* -
uspace/lib/libc/include/vfs/vfs.h
r98000fb r301ff30 45 45 dev_handle_t dev_handle; 46 46 fs_index_t index; 47 } fs_node_t;47 } inode_t; 48 48 49 49 extern char *absolutize(const char *, size_t *); … … 52 52 unsigned int flags); 53 53 54 extern int open_node( fs_node_t *node, int oflag);54 extern int open_node(inode_t *node, int oflag); 55 55 extern int fd_phone(int); 56 extern void fd_node(int, fs_node_t *);56 extern void fd_node(int, inode_t *); 57 57 58 extern FILE *fopen_node( fs_node_t *node, const char *);58 extern FILE *fopen_node(inode_t *node, const char *); 59 59 extern int fphone(FILE *); 60 extern void fnode(FILE *stream, fs_node_t *node);60 extern void fnode(FILE *stream, inode_t *node); 61 61 62 62 #endif
Note:
See TracChangeset
for help on using the changeset viewer.