Changeset 108

Show
Ignore:
Timestamp:
06/20/05 18:37:59 (3 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/ChangeLog

    r107 r108  
    112005-06-20 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
     2        * Set the test value shared memory to 32mb instead of 64mb because the 
     3          test will fail on 2.6 kernels where 32mb is the default value. (#1203253) 
    24        * Reverted the patch for the gc_maxlifetime setting when using 
    35          user functions for the session handler. I can't find a way to 
  • 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) {