make sure USPACE is large enough to hold our struct pcb

This commit is contained in:
jmcneill 2011-09-08 10:49:41 +00:00
parent 90932ffc48
commit dac37bf7e9

View File

@ -51,6 +51,9 @@ EOF
elif [ "$hdr" = "ptrace.h" ]; then
echo "#undef __HAVE_PTRACE_MACHDEP" >> ${hdr}
echo "#undef __HAVE_PROCFS_MACHDEP" >> ${hdr}
elif [ "$hdr" = "param.h" ]; then
echo "#undef USPACE" >> ${hdr}
echo "#define USPACE (PAGE_SIZE*4)" >> ${hdr}
fi
echo >>${hdr}