We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 425a973 commit 8dc1d6bCopy full SHA for 8dc1d6b
contrib/pg_cgroups/Makefile
@@ -0,0 +1,19 @@
1
+# contrib/pg_cgroups/Makefile
2
+
3
+MODULE_big = pg_cgroups
4
+OBJS = pg_cgroups.o $(WIN32RES)
5
6
+EXTENSION = pg_cgroups
7
+DATA = pg_cgroups--1.0
8
+PGFILEDESC = "pg_cgroups - limit resource usage"
9
10
+ifdef USE_PGXS
11
+PG_CONFIG = pg_config
12
+PGXS := $(shell $(PG_CONFIG) --pgxs)
13
+include $(PGXS)
14
+else
15
+subdir = contrib/pg_cgroups
16
+top_builddir = ../..
17
+include $(top_builddir)/src/Makefile.global
18
+include $(top_srcdir)/contrib/contrib-global.mk
19
+endif
contrib/pg_cgroups/pg_cgroups.c
contrib/pg_cgroups/pg_cgroups.control
@@ -0,0 +1,5 @@
+# pg_cgroups extension
+comment = 'limit PostgreSQL resource usage'
+default_version = '1.0'
+module_pathname = '$libdir/pg_cgroups'
+relocatable = true
0 commit comments