Changeset 368ee04 in mainline for uspace/lib/c/include/loader/pcb.h
- Timestamp:
- 2017-04-05T18:10:39Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 93ad8166
- Parents:
- 39f892a9 (diff), 2166728 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/loader/pcb.h
r39f892a9 r368ee04 41 41 typedef void (*entry_point_t)(void); 42 42 43 struct pcb_inbox_entry { 44 char *name; 45 int file; 46 }; 47 43 48 /** Program Control Block. 44 49 * … … 60 65 char **argv; 61 66 62 /** Number of preset files. */ 63 unsigned int filc; 67 /** List of inbox files. */ 68 struct pcb_inbox_entry *inbox; 69 int inbox_entries; 64 70 65 71 /*
Note:
See TracChangeset
for help on using the changeset viewer.