Changeset 04803bf in mainline for uspace/lib/c/include/loader
- Timestamp:
- 2011-03-21T22:00:17Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 143932e3
- Parents:
- b50b5af2 (diff), 7308e84 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace/lib/c/include/loader
- Files:
-
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/loader/loader.h
rb50b5af2 r04803bf 49 49 extern loader_t *loader_connect(void); 50 50 extern int loader_get_task_id(loader_t *, task_id_t *); 51 extern int loader_set_cwd(loader_t *); 51 52 extern int loader_set_pathname(loader_t *, const char *); 52 extern int loader_set_args(loader_t *, c har *const[]);53 extern int loader_set_args(loader_t *, const char *const[]); 53 54 extern int loader_set_files(loader_t *, fdi_node_t *const[]); 54 55 extern int loader_load_program(loader_t *); -
uspace/lib/c/include/loader/pcb.h
rb50b5af2 r04803bf 53 53 entry_point_t entry; 54 54 55 /** Current working directory. */ 56 char *cwd; 57 55 58 /** Number of command-line arguments. */ 56 59 int argc;
Note:
See TracChangeset
for help on using the changeset viewer.