diff options
Diffstat (limited to 'mps/code/mps.h')
| -rw-r--r-- | mps/code/mps.h | 12 |
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 | ||
| 145 | typedef struct mps_sac_s *mps_sac_t; | 145 | typedef 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 | ||
| 149 | typedef struct mps_sac_freelist_block_s { | 149 | typedef 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 | ||
| 156 | typedef struct mps_sac_s { | 156 | typedef 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>. */ |
| 163 | typedef struct mps_sac_class_s { | 163 | typedef struct mps_sac_class_s { |