aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/mpmtypes.h
diff options
context:
space:
mode:
authorRichard Brooksby2012-03-27 18:12:52 +0100
committerRichard Brooksby2012-03-27 18:12:52 +0100
commitecb147b98f04d2bf193da1a874ea2f2392bf0e66 (patch)
treeed6cd1ed2f453b2a4448bc414f4554b544a82792 /mps/code/mpmtypes.h
parent382d044e970ec1beae9593d6a3ae22156e53a8a4 (diff)
downloademacs-ecb147b98f04d2bf193da1a874ea2f2392bf0e66.tar.gz
emacs-ecb147b98f04d2bf193da1a874ea2f2392bf0e66.zip
Consistently passing closure sizes as size_t and not casting back and forth to size or anything else.
Copied from Perforce Change: 177817 ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/mpmtypes.h')
-rw-r--r--mps/code/mpmtypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mps/code/mpmtypes.h b/mps/code/mpmtypes.h
index b424cb6d341..d1aaa1e4cf2 100644
--- a/mps/code/mpmtypes.h
+++ b/mps/code/mpmtypes.h
@@ -211,7 +211,7 @@ typedef void (*PoolFramePopPendingMethod)(Pool pool, Buffer buf,
211 AllocFrame frame); 211 AllocFrame frame);
212typedef void (*PoolWalkMethod)(Pool pool, Seg seg, 212typedef void (*PoolWalkMethod)(Pool pool, Seg seg,
213 FormattedObjectsStepMethod f, 213 FormattedObjectsStepMethod f,
214 void *v, unsigned long s); 214 void *v, size_t s);
215typedef void (*PoolFreeWalkMethod)(Pool pool, FreeBlockStepMethod f, void *p); 215typedef void (*PoolFreeWalkMethod)(Pool pool, FreeBlockStepMethod f, void *p);
216typedef BufferClass (*PoolBufferClassMethod)(void); 216typedef BufferClass (*PoolBufferClassMethod)(void);
217typedef Res (*PoolDescribeMethod)(Pool pool, mps_lib_FILE *stream); 217typedef Res (*PoolDescribeMethod)(Pool pool, mps_lib_FILE *stream);