Add interfaces to support un-initializing a granule allocator.

This commit is contained in:
Gregory Nutt 2014-09-23 16:05:32 -06:00
parent 835c91b03a
commit ee0d20d44c
1 changed files with 2 additions and 2 deletions

View File

@ -36,8 +36,8 @@
# An optional granule allocator
ifeq ($(CONFIG_GRAN),y)
CSRCS += mm_graninit.c mm_granreserve.c mm_granalloc.c mm_granmark.c
CSRCS += mm_granfree.c mm_grancritical.c
CSRCS += mm_graninit.c mm_granrelease.c mm_granreserve.c mm_granalloc.c
CSRCS += mm_granmark.c mm_granfree.c mm_grancritical.c
# A page allocator based on the granule allocator