summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDhaval Giani <dhaval@linux.vnet.ibm.com>2008-09-30 15:59:18 +0000
committerDhaval Giani <dhaval@linux.vnet.ibm.com>2008-09-30 15:59:18 +0000
commit42d0d8774e8c638655ef40e21ac0ca78ddfddb7d (patch)
treefcb99e5bd039cef62680572ed25bc2a420799e03
parent3a581d5f2dfe420c30dfd12c3be80628d7c953bf (diff)
downloadlibcg-42d0d8774e8c638655ef40e21ac0ca78ddfddb7d.tar.gz
libcg-42d0d8774e8c638655ef40e21ac0ca78ddfddb7d.tar.xz
libcg-42d0d8774e8c638655ef40e21ac0ca78ddfddb7d.zip
libcgroup: ABI guarantee
From: Balbir Singh <balbir@linux.vnet.ibm.com> Versioning all the symbols, in order to provide ABI guarantee. Bringing Balbir's patch up to date, and changing the version to 0.32. Please review. [dhaval@linux.vnet.ibm.com: updated with latest symbols] Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com> Signed-off-by: Dhaval Giani <dhaval@linux.vnet.ibm.com> git-svn-id: https://libcg.svn.sourceforge.net/svnroot/libcg/trunk@203 4f4bb910-9a46-0410-90c8-c897d4f1cd53
-rw-r--r--Makefile9
-rw-r--r--Makefile.in7
-rw-r--r--libcgroup.map42
3 files changed, 51 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index c92d48f..1524049 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ bindir=${exec_prefix}/bin
sbindir=${exec_prefix}/sbin
libdir=${exec_prefix}/lib
includedir=${prefix}/include
-prefix=/usr
+prefix=/usr/local
exec_prefix=${prefix}
INSTALL=install
INSTALL_DATA=install -m 644
@@ -32,7 +32,7 @@ VERSION=1
all: libcgroup.so cgconfigparser cgexec cgclassify cgrulesengd
cgconfigparser: libcgroup.so cgconfig.c libcgroup.h
- $(CC) $(CFLAGS) -Wall -o $@ cgconfig.c $(LDFLAGS) $(LIBS)
+ $(CC) $(CFLAGS) $(INC) -Wall -o $@ cgconfig.c $(LDFLAGS) $(LIBS)
cgexec: libcgroup.so cgexec.c libcgroup.h
$(CC) $(CFLAGS) -Wall -o $@ cgexec.c $(LDFLAGS) $(LIBS)
@@ -51,8 +51,9 @@ lex.yy.c: lex.l
$(LEX) lex.l
libcgroup.so: api.c libcgroup.h wrapper.c config.c lex.yy.c y.tab.c
- $(CC) $(CFLAGS) -shared -fPIC -Wl,--soname,$@.$(VERSION) -o $@ api.c \
- wrapper.c lex.yy.c y.tab.c config.c
+ $(CC) $(CFLAGS) -shared -fPIC -Wl,--soname,$@.$(VERSION) -o $@ \
+ -Wl,--version-script,libcgroup.map,--allow-shlib-undefined \
+ api.c wrapper.c lex.yy.c y.tab.c config.c
ln -sf $@ $@.$(VERSION)
test:
diff --git a/Makefile.in b/Makefile.in
index 74601cc..c24420f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -32,7 +32,7 @@ VERSION=1
all: libcgroup.so cgconfigparser cgexec cgclassify cgrulesengd
cgconfigparser: libcgroup.so cgconfig.c libcgroup.h
- $(CC) $(CFLAGS) -Wall -o $@ cgconfig.c $(LDFLAGS) $(LIBS)
+ $(CC) $(CFLAGS) $(INC) -Wall -o $@ cgconfig.c $(LDFLAGS) $(LIBS)
cgexec: libcgroup.so cgexec.c libcgroup.h
$(CC) $(CFLAGS) -Wall -o $@ cgexec.c $(LDFLAGS) $(LIBS)
@@ -51,8 +51,9 @@ lex.yy.c: lex.l
$(LEX) lex.l
libcgroup.so: api.c libcgroup.h wrapper.c config.c lex.yy.c y.tab.c
- $(CC) $(CFLAGS) -shared -fPIC -Wl,--soname,$@.$(VERSION) -o $@ api.c \
- wrapper.c lex.yy.c y.tab.c config.c
+ $(CC) $(CFLAGS) -shared -fPIC -Wl,--soname,$@.$(VERSION) -o $@ \
+ -Wl,--version-script,libcgroup.map,--allow-shlib-undefined \
+ api.c wrapper.c lex.yy.c y.tab.c config.c
ln -sf $@ $@.$(VERSION)
test:
diff --git a/libcgroup.map b/libcgroup.map
new file mode 100644
index 0000000..61ae3ba
--- /dev/null
+++ b/libcgroup.map
@@ -0,0 +1,42 @@
+CGROUP_0.32 {
+global:
+ cgroup_init;
+ cgroup_attach_task;
+ cgroup_modify_cgroup;
+ cgroup_create_cgroup;
+ cgroup_delete_cgroup;
+ cgroup_attach_task_pid;
+ cgroup_get_cgroup;
+ cgroup_create_cgroup_from_parent;
+ cgroup_copy_cgroup;
+ cgroup_change_cgroup_uid_gid;
+ cgroup_change_cgroup_path;
+ cgroup_new_cgroup;
+ cgroup_add_controller;
+ cgroup_free;
+ cgroup_free_controllers;
+ cgroup_add_value_string;
+ cgroup_add_value_int64;
+ cgroup_add_value_uint64;
+ cgroup_add_value_bool;
+ cgroup_compare_cgroup;
+ cgroup_compare_controllers;
+ cgroup_set_uid_gid;
+ cgroup_get_uid_gid;
+ cgroup_get_value_string;
+ cgroup_set_value_string;
+ cgroup_get_value_int64;
+ cgroup_set_value_int64;
+ cgroup_get_value_uint64;
+ cgroup_set_value_uint64;
+ cgroup_get_value_bool;
+ cgroup_set_value_bool;
+ cgroup_change_cgroup_uid_gid_flags;
+ cgroup_print_rules_config;
+ cgroup_reload_cached_rules;
+ cgroup_init_rules_cache;
+ cgroup_get_current_controller_path;
+ cgroup_config_load_config;
+local:
+ *;
+};