From 8232da84809ee4a2ea9fc63e8ba294bfd87920d8 Mon Sep 17 00:00:00 2001 From: Gareth Rees Date: Fri, 8 Mar 2013 12:10:44 +0000 Subject: 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 --- mps/code/mps.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'mps/code/mps.h') 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 */ /* Segregated-fit Allocation Caches */ /* .sac: Keep in sync with . */ -typedef struct mps_sac_s *mps_sac_t; +typedef struct _mps_sac_s *mps_sac_t; #define MPS_SAC_CLASS_LIMIT ((size_t)8) -typedef struct mps_sac_freelist_block_s { +typedef struct _mps_sac_freelist_block_s { size_t _size; size_t _count; size_t _count_max; mps_addr_t _blocks; -} mps_sac_freelist_block_s; +} _mps_sac_freelist_block_s; -typedef struct mps_sac_s { +typedef struct _mps_sac_s { size_t _middle; mps_bool_t _trapped; - mps_sac_freelist_block_s _freelists[2 * MPS_SAC_CLASS_LIMIT]; -} mps_sac_s; + _mps_sac_freelist_block_s _freelists[2 * MPS_SAC_CLASS_LIMIT]; +} _mps_sac_s; /* .sacc: Keep in sync with . */ typedef struct mps_sac_class_s { -- cgit v1.2.1