From: Robert Haas Date: Mon, 9 Jun 2014 17:32:41 +0000 (-0400) Subject: Comment adjustments. X-Git-Url: http://git.postgresql.org/gitweb/static/close/reject?a=commitdiff_plain;h=4d6169ad8cac74d2c3e93edc7fde6b3d294211db;p=users%2Frhaas%2Fpostgres.git Comment adjustments. --- diff --git a/src/backend/utils/mmgr/balloc.c b/src/backend/utils/mmgr/balloc.c index b9e454b9d4..3928c85ca0 100644 --- a/src/backend/utils/mmgr/balloc.c +++ b/src/backend/utils/mmgr/balloc.c @@ -188,12 +188,12 @@ static void BlockAllocatorUnlinkSpan(char *base, BlockAllocatorHeap *heap, */ static MemoryContextMethods BlockAllocatorMethods = { BlockAllocatorAlloc, - NULL, /* XXX BlockAllocatorFree, */ - NULL, /* XXX BlockAllocatorRealloc, */ + NULL, /* free: What do we do here? Existing API doesn't work. */ + NULL, /* repalloc: What do we do here? Existing API doesn't work. */ BlockAllocatorInit, BlockAllocatorReset, BlockAllocatorDelete, - NULL, /* XXX BlockAllocatorGetChunkSpace, */ + NULL, /* chunk space: What do we do here? Existing API doesn't work. */ NULL, /* XXX BlockAllocatorIsEmpty, */ NULL /* XXX BlockAllocatorStats */ #ifdef MEMORY_CONTEXT_CHECKING