throw out exec debugging message.
This commit is contained in:
parent
2c56b7eebc
commit
8d9aa1fe4f
2 changed files with 0 additions and 5 deletions
|
@ -160,8 +160,6 @@ int result;
|
|||
{
|
||||
if (rmp->mp_flags & PARTIAL_EXEC)
|
||||
{
|
||||
printf("partial exec; killing process\n");
|
||||
|
||||
/* Use SIGILL signal that something went wrong */
|
||||
rmp->mp_sigstatus = SIGILL;
|
||||
exit_proc(rmp, 0, FALSE /*dump_core*/);
|
||||
|
|
|
@ -238,7 +238,6 @@ printf("return at %s, %d\n", __FILE__, __LINE__);
|
|||
|
||||
if (r != OK)
|
||||
{
|
||||
printf("return at %s, %d\n", __FILE__, __LINE__);
|
||||
return r;
|
||||
}
|
||||
|
||||
|
@ -590,8 +589,6 @@ phys_bytes seg_bytes; /* how much is to be transferred? */
|
|||
|
||||
/* Make sure that the file is big enough */
|
||||
if (vp->v_size < off+seg_bytes) {
|
||||
printf("VFS: read_seg: file isn't big enough (size %ld, need %ld)\n",
|
||||
vp->v_size, off+seg_bytes);
|
||||
return EIO;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue