aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code
diff options
context:
space:
mode:
authorRichard Brooksby2012-09-25 22:50:16 +0100
committerRichard Brooksby2012-09-25 22:50:16 +0100
commit181c51305056bf7fae463ffd485f11efc592fd74 (patch)
tree149b96f2680983949b06eb868f8841707eee69c7 /mps/code
parent26f958abb50f12a7c251cf0f5416b0b1200f00e1 (diff)
downloademacs-181c51305056bf7fae463ffd485f11efc592fd74.tar.gz
emacs-181c51305056bf7fae463ffd485f11efc592fd74.zip
Converting some "@@@@" markers to descriptive "todo" actions.
Copied from Perforce Change: 179688 ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code')
-rw-r--r--mps/code/format.c5
-rw-r--r--mps/code/mpmss.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/mps/code/format.c b/mps/code/format.c
index 9867f562167..4aef38928fd 100644
--- a/mps/code/format.c
+++ b/mps/code/format.c
@@ -26,7 +26,10 @@ Bool FormatCheck(Format format)
26 || format->variety == FormatVarietyAutoHeader); 26 || format->variety == FormatVarietyAutoHeader);
27 CHECKL(RingCheck(&format->arenaRing)); 27 CHECKL(RingCheck(&format->arenaRing));
28 CHECKL(AlignCheck(format->alignment)); 28 CHECKL(AlignCheck(format->alignment));
29 /* @@@@ alignment should be less than maximum allowed */ 29 /* TODO: Define the concept of the maximum alignment it is possible to
30 request from the MPS, document and provide an interface to it, and then
31 check that this alignment is not greater than that, as well as all other
32 alignments. */
30 CHECKL(FUNCHECK(format->scan)); 33 CHECKL(FUNCHECK(format->scan));
31 CHECKL(format->variety == FormatVarietyFixed 34 CHECKL(format->variety == FormatVarietyFixed
32 ? format->skip == NULL : FUNCHECK(format->skip)); 35 ? format->skip == NULL : FUNCHECK(format->skip));
diff --git a/mps/code/mpmss.c b/mps/code/mpmss.c
index 5c98b1da9ac..e98961986cf 100644
--- a/mps/code/mpmss.c
+++ b/mps/code/mpmss.c
@@ -15,7 +15,9 @@
15#include <stdarg.h> 15#include <stdarg.h>
16 16
17 17
18/* @@@@ Hack due to missing mpscmfs.h */ 18/* TODO: Decide whether we should support the MPS pool class externally,
19 create mpscmfs.h, and replace this extern with proper use of its
20 interface. */
19extern mps_class_t PoolClassMFS(void); 21extern mps_class_t PoolClassMFS(void);
20 22
21 23