summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/libcgroup.h5
-rw-r--r--src/libcgroup-internal.h4
2 files changed, 4 insertions, 5 deletions
diff --git a/include/libcgroup.h b/include/libcgroup.h
index 8a24bf7..6a262e2 100644
--- a/include/libcgroup.h
+++ b/include/libcgroup.h
@@ -47,11 +47,6 @@ enum cgflags {
CGFLAG_USECACHE = 0x01,
};
-/**
- * per thread errno variable, to be used when return code is ECGOTHER
- */
-extern __thread int last_errno;
-
enum cgroup_errors {
ECGROUPNOTCOMPILED=50000,
ECGROUPNOTMOUNTED,
diff --git a/src/libcgroup-internal.h b/src/libcgroup-internal.h
index b9ef442..8c5cc2f 100644
--- a/src/libcgroup-internal.h
+++ b/src/libcgroup-internal.h
@@ -108,6 +108,10 @@ struct cgroup_tree_handle {
int flags;
};
+/**
+ * per thread errno variable, to be used when return code is ECGOTHER
+ */
+extern __thread int last_errno;
/* Internal API */
char *cg_build_path(char *name, char *path, char *type);