ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/savqstr.c
(Generate patch)

Comparing ray/src/common/savqstr.c (file contents):
Revision 2.5 by greg, Mon Mar 10 17:13:29 2003 UTC vs.
Revision 2.6 by greg, Thu May 15 05:13:35 2003 UTC

# Line 51 | Line 51 | char  *s;
51   *  large blocks to optimize paging in VM environments.
52   */
53  
54 < #ifdef  BIGMEM
54 > #ifdef  SMLMEM
55   #ifndef  MINBLOCK
56 < #define  MINBLOCK       (1<<12)         /* minimum allocation block size */
56 > #define  MINBLOCK       (1<<10)         /* minimum allocation block size */
57   #endif
58   #ifndef  MAXBLOCK
59 < #define  MAXBLOCK       (1<<16)         /* maximum allocation block size */
59 > #define  MAXBLOCK       (1<<14)         /* maximum allocation block size */
60   #endif
61   #else
62   #ifndef  MINBLOCK
63 < #define  MINBLOCK       (1<<10)         /* minimum allocation block size */
63 > #define  MINBLOCK       (1<<12)         /* minimum allocation block size */
64   #endif
65   #ifndef  MAXBLOCK
66 < #define  MAXBLOCK       (1<<14)         /* maximum allocation block size */
66 > #define  MAXBLOCK       (1<<16)         /* maximum allocation block size */
67   #endif
68   #endif
69  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines