aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/mps.h
diff options
context:
space:
mode:
Diffstat (limited to 'mps/code/mps.h')
-rw-r--r--mps/code/mps.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/mps/code/mps.h b/mps/code/mps.h
index e47a4ca8e34..d4422c85f47 100644
--- a/mps/code/mps.h
+++ b/mps/code/mps.h
@@ -142,22 +142,22 @@ typedef struct mps_ap_s { /* allocation point descriptor */
142/* Segregated-fit Allocation Caches */ 142/* Segregated-fit Allocation Caches */
143/* .sac: Keep in sync with <code/sac.h>. */ 143/* .sac: Keep in sync with <code/sac.h>. */
144 144
145typedef struct mps_sac_s *mps_sac_t; 145typedef struct _mps_sac_s *mps_sac_t;
146 146
147#define MPS_SAC_CLASS_LIMIT ((size_t)8) 147#define MPS_SAC_CLASS_LIMIT ((size_t)8)
148 148
149typedef struct mps_sac_freelist_block_s { 149typedef struct _mps_sac_freelist_block_s {
150 size_t _size; 150 size_t _size;
151 size_t _count; 151 size_t _count;
152 size_t _count_max; 152 size_t _count_max;
153 mps_addr_t _blocks; 153 mps_addr_t _blocks;
154} mps_sac_freelist_block_s; 154} _mps_sac_freelist_block_s;
155 155
156typedef struct mps_sac_s { 156typedef struct _mps_sac_s {
157 size_t _middle; 157 size_t _middle;
158 mps_bool_t _trapped; 158 mps_bool_t _trapped;
159 mps_sac_freelist_block_s _freelists[2 * MPS_SAC_CLASS_LIMIT]; 159 _mps_sac_freelist_block_s _freelists[2 * MPS_SAC_CLASS_LIMIT];
160} mps_sac_s; 160} _mps_sac_s;
161 161
162/* .sacc: Keep in sync with <code/sac.h>. */ 162/* .sacc: Keep in sync with <code/sac.h>. */
163typedef struct mps_sac_class_s { 163typedef struct mps_sac_class_s {