oopsagain

This commit is contained in:
Elliot Lee 2004-12-23 20:33:08 +00:00
parent c420d8118c
commit 10acd6f6ec
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
- printf (_("max total shared memory (pages) = %lu\n"),
- (unsigned long) shminfo.shmall);
+ printf (_("max total shared memory (kbytes) = %lu\n"),
+ (getpagesize()*((unsigned long) shminfo.shmall)/1024UL);
+ (getpagesize()*((unsigned long) shminfo.shmall))/1024UL);
printf (_("min seg size (bytes) = %lu\n"),
(unsigned long) shminfo.shmmin);
return;