fiss

Friedel's Initialization and Service Supervision
Log | Files | Refs | LICENSE

commit c90fa44273c305ca4cd4846cc67c49985ae93af2
parent 86d0aec17263077550400a6de3e323cf5584a197
Author: Friedel Schon <[email protected]>
Date:   Tue, 25 Apr 2023 12:41:40 +0200

long options for zzz

Diffstat:
Msrc/exec/zzz.c | 17+++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/src/exec/zzz.c b/src/exec/zzz.c @@ -15,10 +15,20 @@ int main(int argc, char** argv) { int sys_state, sys_disk, opt; - const char *new_state = "suspend", + const char *new_state = "mem", *new_disk = NULL; - while ((opt = getopt(argc, argv, "nSzZRH")) != -1) { + struct option long_options[] = { + { "noop", no_argument, 0, 'n' }, + { "freeze", no_argument, 0, 'S' }, + { "suspend", no_argument, 0, 'z' }, + { "hibernate", no_argument, 0, 'Z' }, + { "reboot", no_argument, 0, 'R' }, + { "hybrid", no_argument, 0, 'H' }, + { 0 }, + }; + + while ((opt = getopt_long(argc, argv, "nSzZRH", long_options, NULL)) != -1) { switch (opt) { case 'n': new_state = NULL; @@ -41,6 +51,9 @@ int main(int argc, char** argv) { new_state = "disk"; new_disk = "suspend"; break; + case 's': + new_state = "suspend"; + break; default: printf("zzz [-n] [-S] [-z] [-Z] [-R] [-H]\n"); return 1;