├── .clang-format ├── .github └── workflows │ └── manual.yml ├── .gitignore ├── CMakeLists.txt ├── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── images ├── monitor.png └── starting_monitor.png ├── include ├── format.h ├── linux_parser.h ├── ncurses_display.h ├── process.h ├── processor.h └── system.h └── src ├── format.cpp ├── linux_parser.cpp ├── main.cpp ├── ncurses_display.cpp ├── process.cpp ├── processor.cpp └── system.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/README.md -------------------------------------------------------------------------------- /images/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/images/monitor.png -------------------------------------------------------------------------------- /images/starting_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/images/starting_monitor.png -------------------------------------------------------------------------------- /include/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/include/format.h -------------------------------------------------------------------------------- /include/linux_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/include/linux_parser.h -------------------------------------------------------------------------------- /include/ncurses_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/include/ncurses_display.h -------------------------------------------------------------------------------- /include/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/include/process.h -------------------------------------------------------------------------------- /include/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/include/processor.h -------------------------------------------------------------------------------- /include/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/include/system.h -------------------------------------------------------------------------------- /src/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/src/format.cpp -------------------------------------------------------------------------------- /src/linux_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/src/linux_parser.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ncurses_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/src/ncurses_display.cpp -------------------------------------------------------------------------------- /src/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/src/process.cpp -------------------------------------------------------------------------------- /src/processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/src/processor.cpp -------------------------------------------------------------------------------- /src/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CppND-System-Monitor-Project-Updated/HEAD/src/system.cpp --------------------------------------------------------------------------------