mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-07 04:10:27 -08:00
There's no point keeping the definitions of old events, especially since we have changed the event format. name events consistently with initial capital letters and put them in alphabetical order.
Copied from Perforce Change: 195231
This commit is contained in:
parent
08a7e943b6
commit
2965fc9150
3 changed files with 525 additions and 552 deletions
|
|
@ -736,7 +736,7 @@ static Res VMArenaGrow(Arena arena, LocusPref pref, Size size)
|
|||
return res;
|
||||
chunkSize = vmArena->extendBy;
|
||||
|
||||
EVENT3(vmArenaExtendStart, size, chunkSize, ArenaReserved(arena));
|
||||
EVENT3(VMArenaExtendStart, size, chunkSize, ArenaReserved(arena));
|
||||
|
||||
/* .chunk-create.fail: If we fail, try again with a smaller size */
|
||||
{
|
||||
|
|
@ -758,7 +758,7 @@ static Res VMArenaGrow(Arena arena, LocusPref pref, Size size)
|
|||
/* remove slices, down to chunkHalf but no further */
|
||||
for(; chunkSize > chunkHalf; chunkSize -= sliceSize) {
|
||||
if(chunkSize < chunkMin) {
|
||||
EVENT2(vmArenaExtendFail, chunkMin, ArenaReserved(arena));
|
||||
EVENT2(VMArenaExtendFail, chunkMin, ArenaReserved(arena));
|
||||
return res;
|
||||
}
|
||||
res = VMChunkCreate(&newChunk, vmArena, chunkSize);
|
||||
|
|
@ -769,7 +769,7 @@ static Res VMArenaGrow(Arena arena, LocusPref pref, Size size)
|
|||
}
|
||||
|
||||
vmArenaGrow_Done:
|
||||
EVENT2(vmArenaExtendDone, chunkSize, ArenaReserved(arena));
|
||||
EVENT2(VMArenaExtendDone, chunkSize, ArenaReserved(arena));
|
||||
vmArena->extended(arena,
|
||||
newChunk->base,
|
||||
AddrOffset(newChunk->base, newChunk->limit));
|
||||
|
|
|
|||
1069
mps/code/eventdef.h
1069
mps/code/eventdef.h
File diff suppressed because it is too large
Load diff
|
|
@ -1385,7 +1385,7 @@ static Res amcSegScanNailed(Bool *totalReturn, ScanState ss, Pool pool,
|
|||
refset = ScanStateSummary(ss);
|
||||
|
||||
/* A rare event, which might prompt a rare defect to appear. */
|
||||
EVENT6(amcScanNailed, loops, SegSummary(seg), ScanStateWhite(ss),
|
||||
EVENT6(AMCScanNailed, loops, SegSummary(seg), ScanStateWhite(ss),
|
||||
ScanStateUnfixedSummary(ss), ss->fixedSummary, refset);
|
||||
|
||||
ScanStateSetSummary(ss, refset);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue