aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/mps.h
diff options
context:
space:
mode:
authorGareth Rees2013-03-08 12:10:44 +0000
committerGareth Rees2013-03-08 12:10:44 +0000
commit8232da84809ee4a2ea9fc63e8ba294bfd87920d8 (patch)
tree13df704221f460ec15e278e7d1abb99969597f6f /mps/code/mps.h
parentd9c1b37fad2e1f7cb3da1c738e7361e924de39f8 (diff)
downloademacs-8232da84809ee4a2ea9fc63e8ba294bfd87920d8.tar.gz
emacs-8232da84809ee4a2ea9fc63e8ba294bfd87920d8.zip
Private symbols _mps_sac_s and _mps_sac_freelist_block_s now start with underscores, as per external interface policy.
Copied from Perforce Change: 181092 ServerID: perforce.ravenbrook.com
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 {