diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-13 21:19:42 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-13 21:19:42 +0200 |
| commit | bf7c6ade292a6444877797c8d699d147aceb57cc (patch) | |
| tree | 4f7b7498c973126aefe32dd60b8ccbd0ccc9ef68 /lib/Loadbars/Shared.pm | |
| parent | 79627ce3c419a6a6d6e03c83e7c62333b60345d8 (diff) | |
Revert "Replace Perl threads with fork() for multi-host monitoring"
This reverts commit 79627ce3c419a6a6d6e03c83e7c62333b60345d8.
Diffstat (limited to 'lib/Loadbars/Shared.pm')
| -rw-r--r-- | lib/Loadbars/Shared.pm | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/Loadbars/Shared.pm b/lib/Loadbars/Shared.pm index 4240c71..1cf6e80 100644 --- a/lib/Loadbars/Shared.pm +++ b/lib/Loadbars/Shared.pm @@ -19,24 +19,24 @@ our @EXPORT = qw( %I ); -our %PIDS; +our %PIDS : shared; -our %CPUSTATS; -our %AVGSTATS; -our %AVGSTATS_HAS; +our %CPUSTATS : shared; +our %AVGSTATS : shared; +our %AVGSTATS_HAS : shared; -our %MEMSTATS; -our %MEMSTATS_HAS; +our %MEMSTATS : shared; +our %MEMSTATS_HAS : shared; -our %NETSTATS; -our %NETSTATS_HAS; -our %NETSTATS_INT; +our %NETSTATS : shared; +our %NETSTATS_HAS : shared; +our %NETSTATS_INT : shared; # Global configuration hash -our %C; +our %C : shared; # Global configuration hash for internal settings (not configurable) -our %I; +our %I : shared; # Setting defaults %C = ( |
