execve(): disable debug warnings

This commit is contained in:
Balazs Gerofi
2016-12-08 16:33:24 +09:00
parent 3cecafac59
commit c99e36235b
2 changed files with 2 additions and 2 deletions

View File

@ -502,7 +502,7 @@ retry:
/* Check whether the resolved path is a symlink */
if (lstat(path, &sb) == -1) {
fprintf(stderr, "lookup_exec_path(): error stat\n");
__dprintf(stderr, "lookup_exec_path(): error stat\n");
return errno;
}

View File

@ -1884,7 +1884,7 @@ SYSCALL_DECLARE(execve)
ret = do_syscall(&request, ihk_mc_get_processor_id(), 0);
if (ret != 0) {
kprintf("execve(): ERROR: host failed to load elf header, errno: %d\n",
dkprintf("execve(): ERROR: host failed to load elf header, errno: %d\n",
ret);
return -ret;
}