Changes in kernel/generic/src/proc/program.c [b2fa1204:d1e8440] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/program.c
rb2fa1204 rd1e8440 49 49 #include <lib/elf_load.h> 50 50 #include <errno.h> 51 #include < log.h>51 #include <print.h> 52 52 #include <syscall/copy.h> 53 53 #include <proc/program.h> … … 155 155 156 156 program_loader = image_addr; 157 log(LF_OTHER, LVL_NOTE, "Program loader at %p", (void *) image_addr);157 printf("Program loader at %p\n", (void *) image_addr); 158 158 159 159 return EOK; … … 181 181 if (!loader) { 182 182 as_destroy(as); 183 log(LF_OTHER, LVL_ERROR, 184 "Cannot spawn loader as none was registered"); 183 printf("Cannot spawn loader as none was registered\n"); 185 184 return ENOENT; 186 185 } … … 190 189 if (prg->loader_status != EE_OK) { 191 190 as_destroy(as); 192 log(LF_OTHER, LVL_ERROR, "Cannot spawn loader (%s)",191 printf("Cannot spawn loader (%s)\n", 193 192 elf_error(prg->loader_status)); 194 193 return ENOENT;
Note:
See TracChangeset
for help on using the changeset viewer.