Merge pull request #1073 from urbit/change-allocation-size

Shrink preallocation of cells from 262.144 cells to 4.096
This commit is contained in:
Elliot Glaysher 2018-11-26 11:25:55 -08:00 committed by GitHub
commit 489a96707f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -772,7 +772,7 @@ u3a_celloc(void)
return u3a_walloc(c3_wiseof(u3a_cell));
}
else {
if ( c3n == u3a_cellblock(256 << 10) ) {
if ( c3n == u3a_cellblock(4096) ) {
return u3a_walloc(c3_wiseof(u3a_cell));
}
cel_p = u3R->all.cel_p;