mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-01 20:04:09 +03:00
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:
commit
489a96707f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user