diff options
| author | Richard Brooksby | 2012-09-05 23:45:31 +0100 |
|---|---|---|
| committer | Richard Brooksby | 2012-09-05 23:45:31 +0100 |
| commit | 27c6706791b24c09800f76e37f76817c62df7425 (patch) | |
| tree | 44af05e5f3b72122dc6f5bc52d9f3d892ac02786 /mps/code/pool.c | |
| parent | dda987d8648efafba3be06d1c56e6b14c6a654b7 (diff) | |
| parent | d1e7efe7b6de7914395153db36500645652cc5f2 (diff) | |
| download | emacs-27c6706791b24c09800f76e37f76817c62df7425.tar.gz emacs-27c6706791b24c09800f76e37f76817c62df7425.zip | |
Merging branch/2012-08-21/diagnostic-telemetry.
Copied from Perforce
Change: 179289
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/pool.c')
| -rw-r--r-- | mps/code/pool.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mps/code/pool.c b/mps/code/pool.c index 1b90864cb31..0635bf012b3 100644 --- a/mps/code/pool.c +++ b/mps/code/pool.c | |||
| @@ -250,7 +250,7 @@ void PoolFinish(Pool pool) | |||
| 250 | RingFinish(&pool->bufferRing); | 250 | RingFinish(&pool->bufferRing); |
| 251 | RingFinish(&pool->arenaRing); | 251 | RingFinish(&pool->arenaRing); |
| 252 | 252 | ||
| 253 | EVENT_P(PoolFinish, pool); | 253 | EVENT1(PoolFinish, pool); |
| 254 | } | 254 | } |
| 255 | 255 | ||
| 256 | 256 | ||
| @@ -313,7 +313,7 @@ Res PoolAlloc(Addr *pReturn, Pool pool, Size size, | |||
| 313 | pool->fillMutatorSize += size; | 313 | pool->fillMutatorSize += size; |
| 314 | ArenaGlobals(PoolArena(pool))->fillMutatorSize += size; | 314 | ArenaGlobals(PoolArena(pool))->fillMutatorSize += size; |
| 315 | 315 | ||
| 316 | EVENT_PAW(PoolAlloc, pool, *pReturn, size); | 316 | EVENT3(PoolAlloc, pool, *pReturn, size); |
| 317 | 317 | ||
| 318 | return ResOK; | 318 | return ResOK; |
| 319 | } | 319 | } |
| @@ -330,7 +330,7 @@ void PoolFree(Pool pool, Addr old, Size size) | |||
| 330 | AVER(size > 0); | 330 | AVER(size > 0); |
| 331 | (*pool->class->free)(pool, old, size); | 331 | (*pool->class->free)(pool, old, size); |
| 332 | 332 | ||
| 333 | EVENT_PAW(PoolFree, pool, old, size); | 333 | EVENT3(PoolFree, pool, old, size); |
| 334 | } | 334 | } |
| 335 | 335 | ||
| 336 | 336 | ||