diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-08-08 20:43:30 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-08-08 20:43:30 +0200 |
commit | d6bce37756273948a59a7bada52643186f9090ee (patch) | |
tree | 9de6530d9c8c2059db5f51b06d687e45461f1660 /Applications/ProcessManager/Makefile | |
parent | 899366da9d8b61317226ed3003defea7139e7bc8 (diff) | |
download | serenity-d6bce37756273948a59a7bada52643186f9090ee.zip |
ProcessManager: Add a "Network" tab with live adapter and socket stats
This fetches info from /proc/netadapters and /proc/net_tcp, updating
every second. Very cool. :^)
Diffstat (limited to 'Applications/ProcessManager/Makefile')
-rw-r--r-- | Applications/ProcessManager/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Applications/ProcessManager/Makefile b/Applications/ProcessManager/Makefile index 56a75d48eb..f8fca1d467 100644 --- a/Applications/ProcessManager/Makefile +++ b/Applications/ProcessManager/Makefile @@ -10,6 +10,9 @@ OBJS = \ ProcessMemoryMapModel.o \ ProcessFileDescriptorMapWidget.o \ ProcessFileDescriptorMapModel.o \ + NetworkStatisticsWidget.o \ + NetworkAdapterModel.o \ + SocketModel.o \ main.o APP = ProcessManager |