sleep.c revision eb2672893108e14d50bd79b7fc714b75c5427c0b
/*-*- 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;
}
log_info("Suspending system...");
else
log_info("Hibernating system...");
fputc('\n', f);
fflush(f);
log_info("System resumed.");
else
log_info("System thawed.");
fclose(f);
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}