Browse code

mpool: bb#5827

David Raynor authored on 2012/09/20 23:43:11
Showing 1 changed files
... ...
@@ -168,7 +168,12 @@ static const unsigned int fragsz[] = {
168 168
 2097152,
169 169
 4194304,
170 170
 8388608,
171
+16777216,
172
+33554432,
173
+67108864,
174
+134217728,
171 175
  /* MAX_ALLOCATION is 184549376 but that's really not need here */
176
+ /* ^^ This MAX_ALLOCATION warning for Mac OS should now be fixed */
172 177
 };
173 178
 
174 179
 #else
... ...
@@ -351,6 +356,10 @@ static const unsigned int fragsz[] = {
351 351
     2097152,
352 352
     4194304,
353 353
     8388608,
354
+   16777216,
355
+   33554432,
356
+   67108864,
357
+  134217728,
354 358
 };
355 359
 #endif
356 360
 #define FRAGSBITS (sizeof(fragsz)/sizeof(fragsz[0]))