sleep.c revision 6edd7d0a09171ea5ae8e01b7b1cbcb0bdfbfeb16
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2012 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 <stdio.h>
#include <errno.h>
#include <string.h>
#include "log.h"
#include "util.h"
const char *verb;
char* arguments[4];
int r;
FILE *f;
log_open();
if (argc != 2) {
log_error("Invalid number of arguments.");
r = -EINVAL;
goto finish;
}
verb = "mem";
verb = "disk";
else {
r = -EINVAL;
goto finish;
}
if (!f) {
r = -errno;
goto finish;
}
fputc('\n', f);
fflush(f);
fclose(f);
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}