mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-03 10:31:37 -08:00
Fix issues identified in review by gdr.
Copied from Perforce Change: 194339
This commit is contained in:
parent
f7974dc971
commit
ac65a856ac
3 changed files with 8 additions and 8 deletions
|
|
@ -62,7 +62,7 @@ DECLARE_CLASS(Pool, MVDebugPool, MVPool);
|
|||
#define mvBlockPool(mv) MFSPool(&(mv)->blockPoolStruct)
|
||||
#define mvSpanPool(mv) MFSPool(&(mv)->spanPoolStruct)
|
||||
|
||||
#define MVPool(mv) (&(mv)->poolStruct)
|
||||
#define MVPool(mv) RVALUE(&(mv)->poolStruct)
|
||||
#define PoolMV(pool) PARENT(MVStruct, poolStruct, pool)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@
|
|||
* pool, since it is used to implement that pool.
|
||||
*
|
||||
* .purpose: This is a pool class for manually managed objects of
|
||||
* variable size where address-ordered first fit is an appropriate
|
||||
* policy. Provision is made to allocate in reverse.
|
||||
* variable size where address-ordered first (or last) fit is an
|
||||
* appropriate policy.
|
||||
*
|
||||
* .design: <design/poolmvff>
|
||||
*
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
/* poolmvff.h: First Fit Manual Variable Pool
|
||||
*
|
||||
* $Id$
|
||||
* Copyright (c) 2001-2014 Ravenbrook Limited. See end of file for license.
|
||||
* Copyright (c) 2001-2018 Ravenbrook Limited. See end of file for license.
|
||||
* Portions copyright (C) 2002 Global Graphics Software.
|
||||
*
|
||||
* .purpose: This is a pool class for manually managed objects of
|
||||
* variable size where address-ordered first fit is an appropriate
|
||||
* policy. Provision is made to allocate in reverse.
|
||||
* variable size where address-ordered first (or last) fit is an
|
||||
* appropriate policy.
|
||||
*
|
||||
* .design: See <design/poolmvff/>
|
||||
*/
|
||||
|
|
@ -24,7 +24,7 @@ extern PoolClass PoolClassMVFF(void);
|
|||
|
||||
extern Bool MVFFCheck(MVFF mvff);
|
||||
|
||||
#define MVFFPool(mvff) (&(mvff)->poolStruct)
|
||||
#define MVFFPool(mvff) RVALUE(&(mvff)->poolStruct)
|
||||
|
||||
|
||||
#endif /* poolmvff_h */
|
||||
|
|
@ -32,7 +32,7 @@ extern Bool MVFFCheck(MVFF mvff);
|
|||
|
||||
/* C. COPYRIGHT AND LICENSE
|
||||
*
|
||||
* Copyright (C) 2001-2014 Ravenbrook Limited <http://www.ravenbrook.com/>.
|
||||
* Copyright (C) 2001-2018 Ravenbrook Limited <http://www.ravenbrook.com/>.
|
||||
* All rights reserved. This is an open source license. Contact
|
||||
* Ravenbrook for commercial licensing options.
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue