mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-29 10:11:58 -07:00
Correcting return type of nreclaim to match changes in other pools.
Copied from Perforce Change: 190085 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
406959d43c
commit
7db37748e3
1 changed files with 3 additions and 1 deletions
|
|
@ -235,7 +235,7 @@ static Res NFix(Pool pool, ScanState ss, Seg seg, Ref *refIO)
|
|||
|
||||
/* NReclaim -- reclaim method for class N */
|
||||
|
||||
static void NReclaim(Pool pool, Trace trace, Seg seg)
|
||||
static Bool NReclaim(Pool pool, Trace trace, Seg seg)
|
||||
{
|
||||
PoolN poolN;
|
||||
|
||||
|
|
@ -246,6 +246,8 @@ static void NReclaim(Pool pool, Trace trace, Seg seg)
|
|||
AVERT(Trace, trace);
|
||||
AVERT(Seg, seg);
|
||||
/* all unmarked and white objects reclaimed */
|
||||
|
||||
return FALSE; /* segment wasn't deleted */
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue