Show
Ignore:
Timestamp:
06/20/05 18:37:59 (4 years ago)
Author:
zoeloelip
Message:

Set the test value shared memory to 32mb instead of 64mb because the

test will fail on 2.6 kernels where 32mb is the default value. (#1203253)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/trunk/mm.c

    r100 r108  
    12371237int main() { 
    12381238  char key[] = "/tmp/mm"; 
    1239   size_t size = 64*1024*1024; 
     1239  size_t size = 32*1024*1024; 
    12401240  MM *mm = mm_create(size, key); 
    12411241  if (mm == NULL) {