mirror of
https://github.com/postgres/postgres.git
synced 2026-04-21 14:19:26 -04:00
Add new style of memory allocator, known as Generational appropriate for use in cases where memory is allocated and then freed in roughly oldest first order (FIFO). Use new allocator for logical decoding’s reorderbuffer to significantly reduce memory usage and improve performance. Author: Tomas Vondra Reviewed-by: Simon Riggs
17 lines
483 B
Makefile
17 lines
483 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for utils/mmgr
|
|
#
|
|
# IDENTIFICATION
|
|
# src/backend/utils/mmgr/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/utils/mmgr
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS = aset.o dsa.o freepage.o generation.o mcxt.o memdebug.o portalmem.o slab.o
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|