> > see what my page size is? > > man 2 getpagesize Thanks, that helped. I wrote the following C program which apparently tells me that my pagesize is 4K:
#include <unistd.h>
#include <stdio.h>
int main ()
{
printf ("%d\n", getpagesize ());
return 0;
}
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

