mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
Add read-only option
Add command line option to disable all system and process changing features.
This commit is contained in:

committed by
cgzones

parent
812cfcb94d
commit
36880cd61c
@ -130,6 +130,9 @@ static enum CapMode Platform_capabilitiesMode = CAP_MODE_BASIC;
|
||||
#endif
|
||||
|
||||
static Htop_Reaction Platform_actionSetIOPriority(State* st) {
|
||||
if (Settings_isReadonly())
|
||||
return HTOP_OK;
|
||||
|
||||
const LinuxProcess* p = (const LinuxProcess*) Panel_getSelected((Panel*)st->mainPanel);
|
||||
if (!p)
|
||||
return HTOP_OK;
|
||||
@ -873,7 +876,7 @@ bool Platform_getLongOption(int opt, int argc, char** argv) {
|
||||
|
||||
switch (opt) {
|
||||
#ifdef HAVE_LIBCAP
|
||||
case 128: {
|
||||
case 160: {
|
||||
const char* mode = optarg;
|
||||
if (!mode && optind < argc && argv[optind] != NULL &&
|
||||
(argv[optind][0] != '\0' && argv[optind][0] != '-')) {
|
||||
|
@ -85,7 +85,7 @@ static inline void Platform_getRelease(char** string) {
|
||||
|
||||
#ifdef HAVE_LIBCAP
|
||||
#define PLATFORM_LONG_OPTIONS \
|
||||
{"drop-capabilities", optional_argument, 0, 128},
|
||||
{"drop-capabilities", optional_argument, 0, 160},
|
||||
#else
|
||||
#define PLATFORM_LONG_OPTIONS
|
||||
#endif
|
||||
|
@ -195,6 +195,9 @@ dlfailure:
|
||||
#endif /* !BUILD_STATIC || HAVE_LIBSYSTEMD */
|
||||
|
||||
static void updateViaExec(void) {
|
||||
if (Settings_isReadonly())
|
||||
return;
|
||||
|
||||
int fdpair[2];
|
||||
if (pipe(fdpair) < 0)
|
||||
return;
|
||||
|
Reference in New Issue
Block a user