1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:17:35 +00:00

Userland: Use Core::ArgsParser for 'purge'

This commit is contained in:
Linus Groh 2020-08-05 20:48:28 +02:00 committed by Andreas Kling
parent 646f6165e2
commit 4565d2d415

View file

@ -25,6 +25,7 @@
*/ */
#include <Kernel/API/Syscall.h> #include <Kernel/API/Syscall.h>
#include <LibCore/ArgsParser.h>
#include <serenity.h> #include <serenity.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
@ -32,18 +33,23 @@
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
int mode = 0; int mode = 0;
if (argc == 1) {
mode = PURGE_ALL_VOLATILE | PURGE_ALL_CLEAN_INODE; bool purge_all_volatile = false;
} else { bool purge_all_clean_inode = false;
if (!strcmp(argv[1], "-c")) {
mode = PURGE_ALL_CLEAN_INODE; Core::ArgsParser args_parser;
} else if (!strcmp(argv[1], "-v")) { args_parser.add_option(purge_all_volatile, "Mode PURGE_ALL_VOLATILE", nullptr, 'v');
mode = PURGE_ALL_VOLATILE; args_parser.add_option(purge_all_clean_inode, "Mode PURGE_ALL_CLEAN_INODE", nullptr, 'c');
} else { args_parser.parse(argc, argv);
fprintf(stderr, "Unknown option: %s\n", argv[1]);
return 1; if (!purge_all_volatile && !purge_all_clean_inode)
} purge_all_volatile = purge_all_clean_inode = true;
}
if (purge_all_volatile)
mode |= PURGE_ALL_VOLATILE;
if (purge_all_clean_inode)
mode |= PURGE_ALL_CLEAN_INODE;
int purged_page_count = purge(mode); int purged_page_count = purge(mode);
if (purged_page_count < 0) { if (purged_page_count < 0) {
perror("purge"); perror("purge");