diff --git a/src/sys/kernel/exec.c b/src/sys/kernel/exec.c index 65fb66e..f4c5ab4 100644 --- a/src/sys/kernel/exec.c +++ b/src/sys/kernel/exec.c @@ -296,7 +296,6 @@ tmpFd = fopen(file,"r"); _current->imageFd = tmpFd; - kprintf("a"); /* If We Dont Find the File Return */ if (tmpFd == 0x0) { kprintf("Couldn't open file %s\n",file); @@ -410,6 +409,15 @@ /*** $Log$ + Revision 1.53 2004/07/28 00:17:05 reddawg + Major: + Disconnected page 0x0 from the system... Unfortunately this broke many things + all of which have been fixed. This was good because nothing deferences NULL + any more. + + Things affected: + malloc,kmalloc,getfreepage,getfreevirtualpage,pagefault,fork,exec,ld,ld.so,exec,file + Revision 1.52 2004/07/27 07:27:50 reddawg chg: I was fooled thought we failed but it was a casting issue