test-journal-flush.c revision 2678031a179a9b91fc799f8ef951a548c66c4b49
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2013 Lennart Poettering
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 <fcntl.h>
#include "sd-journal.h"
#include "journal-file.h"
#include "journal-internal.h"
sd_journal *j = NULL;
unsigned n = 0;
int r;
assert_se(r >= 0);
r = sd_journal_open(&j, 0);
assert_se(r >= 0);
SD_JOURNAL_FOREACH(j) {
Object *o;
JournalFile *f;
f = j->current_file;
assert(f && f->current_offset > 0);
assert(r >= 0);
assert(r >= 0);
n++;
if (n > 10000)
break;
}
sd_journal_close(j);
return 0;
}