1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-24 06:20:43 -08:00

Merge custom cet mainline into the master sources. this includes fixes for job003519 (clock values in text telemetry logs on windows have top 32 bits zero), job003536 (cet office can't replicate 100k snowmen in reasonable time), job003651 (stack overflows are not reliably handled).

Copied from Perforce
 Change: 183926
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2014-01-10 14:16:08 +00:00
parent 38b1ef8506
commit ea9df0b2b7
23 changed files with 317 additions and 46 deletions

View file

@ -154,12 +154,14 @@ static void testInArena(mps_arena_t arena)
int i;
die(mps_pool_create(&hipool, arena, mps_class_mvff(),
chunkSize, chunkSize, 1024,
chunkSize, chunkSize,
(mps_align_t)1024,
TRUE, TRUE, TRUE),
"Create HI MFFV");
die(mps_pool_create(&lopool, arena, mps_class_mvff(),
chunkSize, chunkSize, 1024,
chunkSize, chunkSize,
(mps_align_t)1024,
FALSE, FALSE, TRUE),
"Create LO MFFV");