commit 54cdd8db73651e02b364ab3db462005c50593132
parent 1c7f322771ce0ec8e4f0c937fb3210d0460f3271
Author: Friedel Schön <[email protected]>
Date: Tue, 26 Dec 2023 16:47:18 +0100
adding ZZZ and zzz-test
Diffstat:
3 files changed, 20 insertions(+), 1 deletion(-)
diff --git a/bin/ZZZ.lnk b/bin/ZZZ.lnk
@@ -0,0 +1 @@
+zzz
+\ No newline at end of file
diff --git a/bin/zzz-test.lnk b/bin/zzz-test.lnk
@@ -0,0 +1 @@
+zzz
+\ No newline at end of file
diff --git a/bin/zzz.c b/bin/zzz.c
@@ -34,9 +34,24 @@ int main(int argc, char** argv) {
int opt;
pid_t pid;
struct stat st;
- const char *new_state = "mem",
+
+ const char *new_state = NULL,
*new_disk = NULL;
+ if (streq(argv[0], "zzz")) {
+ new_state = "mem";
+ new_disk = NULL;
+ } else if (streq(argv[0], "ZZZ")) {
+ new_state = "disk";
+ new_disk = "platform";
+ } else if (streq(argv[0], "zzz-test")) {
+ new_state = NULL;
+ new_disk = NULL;
+ } else {
+ fprintf(stderr, "error: program-name `%s` invalid\n", argv[0]);
+ return 1;
+ }
+
struct option long_options[] = {
{ "noop", no_argument, 0, 'n' },
{ "freeze", no_argument, 0, 'S' },