diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-07-17 03:32:14 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-07-17 03:32:14 +0000 |
commit | fe548629c50b753e96515ba2cfd8a85e8fba10de (patch) | |
tree | e80b54f71cb7868db3f9f9c97bccf4c48859951a /src/backend/utils/resowner/Makefile | |
parent | f4c069ca8fc80640bd1bff510697371ffaf45267 (diff) | |
download | postgresql-fe548629c50b753e96515ba2cfd8a85e8fba10de.tar.gz |
Invent ResourceOwner mechanism as per my recent proposal, and use it to
keep track of portal-related resources separately from transaction-related
resources. This allows cursors to work in a somewhat sane fashion with
nested transactions. For now, cursor behavior is non-subtransactional,
that is a cursor's state does not roll back if you abort a subtransaction
that fetched from the cursor. We might want to change that later.
Diffstat (limited to 'src/backend/utils/resowner/Makefile')
-rw-r--r-- | src/backend/utils/resowner/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/backend/utils/resowner/Makefile b/src/backend/utils/resowner/Makefile new file mode 100644 index 0000000000..691d316f16 --- /dev/null +++ b/src/backend/utils/resowner/Makefile @@ -0,0 +1,30 @@ +#------------------------------------------------------------------------- +# +# Makefile-- +# Makefile for utils/resowner +# +# IDENTIFICATION +# $PostgreSQL: pgsql/src/backend/utils/resowner/Makefile,v 1.1 2004/07/17 03:30:10 tgl Exp $ +# +#------------------------------------------------------------------------- + +subdir = src/backend/utils/resowner +top_builddir = ../../../.. +include $(top_builddir)/src/Makefile.global + +OBJS = resowner.o + +all: SUBSYS.o + +SUBSYS.o: $(OBJS) + $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS) + +depend dep: + $(CC) -MM $(CFLAGS) *.c >depend + +clean: + rm -f SUBSYS.o $(OBJS) + +ifeq (depend,$(wildcard depend)) +include depend +endif |