Changeset bdca26a in mainline for uspace/srv/loader/main.c
- Timestamp:
- 2019-05-26T13:21:50Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8aea932
- Parents:
- 967e7a1
- git-author:
- Matthieu Riolo <matthieu.riolo@…> (2019-05-17 14:27:34)
- git-committer:
- Jakub Jermář <jakub@…> (2019-05-26 13:21:50)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/main.c
r967e7a1 rbdca26a 290 290 DPRINTF("LOADER_LOAD()\n"); 291 291 292 int rc = elf_load(program_fd, &prog_info);293 if (rc != E E_OK) {292 errno_t rc = elf_load(program_fd, &prog_info); 293 if (rc != EOK) { 294 294 DPRINTF("Failed to load executable for '%s'.\n", progname); 295 295 async_answer_0(req, EINVAL);
Note:
See TracChangeset
for help on using the changeset viewer.