mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-29 08:31:35 -08:00
This change will be integrated but ignored (-ay) to the gg-epcore/union sources, so that they retain HopeNames. Copied from Perforce Change: 24911 ServerID: perforce.ravenbrook.com
19 lines
414 B
C
19 lines
414 B
C
/* impl.h.mpscamc: MEMORY POOL SYSTEM CLASS "AMC"
|
|
*
|
|
* $Id$
|
|
* Copyright (c) 2001 Ravenbrook Limited.
|
|
*/
|
|
|
|
#ifndef mpscamc_h
|
|
#define mpscamc_h
|
|
|
|
#include "mps.h"
|
|
|
|
extern mps_class_t mps_class_amc(void);
|
|
extern mps_class_t mps_class_amcz(void);
|
|
|
|
extern void mps_amc_apply(mps_pool_t,
|
|
void (*)(mps_addr_t, void *, size_t),
|
|
void *, size_t);
|
|
|
|
#endif /* mpscamc_h */
|