Changes in contrib/arch/uspace/srv/loader/loader.adl [6d4c549:96b02eb9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/uspace/srv/loader/loader.adl
r6d4c549 r96b02eb9 1 1 interface loader extends service { 2 2 /* Set task pathname */ 3 ipcarg_t set_pathname(in_copy string pathname);3 sysarg_t set_pathname(in_copy string pathname); 4 4 5 5 /* Set task arguments */ 6 ipcarg_t set_args(in_copy stream args);6 sysarg_t set_args(in_copy stream args); 7 7 8 8 /* Set task initial files */ 9 ipcarg_t set_files(in_copy stream files);9 sysarg_t set_files(in_copy stream files); 10 10 11 11 /* Get task ID */ 12 ipcarg_t get_taskid(out_copy stream id);12 sysarg_t get_taskid(out_copy stream id); 13 13 14 14 /* Load binary */ 15 ipcarg_t load(void);15 sysarg_t load(void); 16 16 17 17 /* Run binary */ 18 ipcarg_t run(void);18 sysarg_t run(void); 19 19 protocol: 20 20 [loader.bp]
Note:
See TracChangeset
for help on using the changeset viewer.