1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-23 06:00:41 -08:00

Added a pool argument to cbs creation so that cbss can share a pool. in particular, per-zone allocation cbss for the arena can share a single special block pool.

Copied from Perforce
 Change: 184469
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Brooksby 2014-02-15 15:00:39 +00:00
parent 2151d00c7f
commit f0b07f7bbe
7 changed files with 74 additions and 29 deletions

View file

@ -99,6 +99,11 @@ Bool ArgCheckdouble(Arg arg) {
return TRUE;
}
Bool ArgCheckPool(Arg arg) {
CHECKD(Pool, arg->val.pool);
return TRUE;
}
ARG_DEFINE_KEY(args_end, Shouldnt);