summaryrefslogtreecommitdiff
path: root/src/journal/journal-vacuum.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-08-16 01:51:54 +0200
committerLennart Poettering <lennart@poettering.net>2012-08-16 17:10:57 +0200
commit0284adc6a60ce0af1107cb0b50041a65d731f39e (patch)
treef42ec94abfa00f66e1fa98a9aeaff86199b96c9b /src/journal/journal-vacuum.h
parentf65425cbc4385b4f5b20ded641cbb07ad6a0938f (diff)
journal: split up journal-file.c
Diffstat (limited to 'src/journal/journal-vacuum.h')
-rw-r--r--src/journal/journal-vacuum.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/journal/journal-vacuum.h b/src/journal/journal-vacuum.h
new file mode 100644
index 000000000..9841d72de
--- /dev/null
+++ b/src/journal/journal-vacuum.h
@@ -0,0 +1,26 @@
+/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
+
+#pragma once
+
+/***
+ This file is part of systemd.
+
+ Copyright 2011 Lennart Poettering
+
+ systemd is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ systemd is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with systemd; If not, see <http://www.gnu.org/licenses/>.
+***/
+
+#include <inttypes.h>
+
+int journal_directory_vacuum(const char *directory, uint64_t max_use, uint64_t min_free);