├── .editorconfig ├── .gitignore ├── .travis.yml ├── AUTHORS ├── Action.c ├── Action.h ├── Affinity.c ├── Affinity.h ├── AffinityPanel.c ├── AffinityPanel.h ├── AvailableColumnsPanel.c ├── AvailableColumnsPanel.h ├── AvailableMetersPanel.c ├── AvailableMetersPanel.h ├── BatteryMeter.c ├── BatteryMeter.h ├── CONTRIBUTING.md ├── COPYING ├── CPUMeter.c ├── CPUMeter.h ├── CRT.c ├── CRT.h ├── CategoriesPanel.c ├── CategoriesPanel.h ├── ChangeLog ├── CheckItem.c ├── CheckItem.h ├── ClockMeter.c ├── ClockMeter.h ├── ColorsPanel.c ├── ColorsPanel.h ├── ColumnsPanel.c ├── ColumnsPanel.h ├── DisplayOptionsPanel.c ├── DisplayOptionsPanel.h ├── EnvScreen.c ├── EnvScreen.h ├── FunctionBar.c ├── FunctionBar.h ├── Hashtable.c ├── Hashtable.h ├── Header.c ├── Header.h ├── HostnameMeter.c ├── HostnameMeter.h ├── IncSet.c ├── IncSet.h ├── InfoScreen.c ├── InfoScreen.h ├── ListItem.c ├── ListItem.h ├── LoadAverageMeter.c ├── LoadAverageMeter.h ├── MainPanel.c ├── MainPanel.h ├── Makefile.am ├── MemoryMeter.c ├── MemoryMeter.h ├── Meter.c ├── Meter.h ├── MetersPanel.c ├── MetersPanel.h ├── NEWS ├── Object.c ├── Object.h ├── OpenFilesScreen.c ├── OpenFilesScreen.h ├── Panel.c ├── Panel.h ├── Process.c ├── Process.h ├── ProcessList.c ├── ProcessList.h ├── README ├── README.md ├── RichString.c ├── RichString.h ├── ScreenManager.c ├── ScreenManager.h ├── Settings.c ├── Settings.h ├── SignalsPanel.c ├── SignalsPanel.h ├── StringUtils.c ├── StringUtils.h ├── SwapMeter.c ├── SwapMeter.h ├── TESTPLAN ├── TasksMeter.c ├── TasksMeter.h ├── TraceScreen.c ├── TraceScreen.h ├── UptimeMeter.c ├── UptimeMeter.h ├── UsersTable.c ├── UsersTable.h ├── Vector.c ├── Vector.h ├── XAlloc.c ├── XAlloc.h ├── autogen.sh ├── configure.ac ├── darwin ├── Battery.c ├── Battery.h ├── DarwinCRT.c ├── DarwinCRT.h ├── DarwinProcess.c ├── DarwinProcess.h ├── DarwinProcessList.c ├── DarwinProcessList.h ├── Platform.c └── Platform.h ├── dragonflybsd ├── Battery.c ├── Battery.h ├── DragonFlyBSDCRT.c ├── DragonFlyBSDCRT.h ├── DragonFlyBSDProcess.c ├── DragonFlyBSDProcess.h ├── DragonFlyBSDProcessList.c ├── DragonFlyBSDProcessList.h ├── Platform.c └── Platform.h ├── freebsd ├── Battery.c ├── Battery.h ├── FreeBSDCRT.c ├── FreeBSDCRT.h ├── FreeBSDProcess.c ├── FreeBSDProcess.h ├── FreeBSDProcessList.c ├── FreeBSDProcessList.h ├── Platform.c └── Platform.h ├── htop.1.in ├── htop.c ├── htop.desktop ├── htop.h ├── htop.png ├── linux ├── Battery.c ├── Battery.h ├── IOPriority.c ├── IOPriority.h ├── IOPriorityPanel.c ├── IOPriorityPanel.h ├── LinuxCRT.c ├── LinuxCRT.h ├── LinuxProcess.c ├── LinuxProcess.h ├── LinuxProcessList.c ├── LinuxProcessList.h ├── Platform.c └── Platform.h ├── openbsd ├── Battery.c ├── Battery.h ├── OpenBSDCRT.c ├── OpenBSDCRT.h ├── OpenBSDProcess.c ├── OpenBSDProcess.h ├── OpenBSDProcessList.c ├── OpenBSDProcessList.h ├── Platform.c └── Platform.h ├── scripts └── MakeHeader.py ├── solaris ├── Battery.c ├── Battery.h ├── Platform.c ├── Platform.h ├── SolarisCRT.c ├── SolarisCRT.h ├── SolarisProcess.c ├── SolarisProcess.h ├── SolarisProcessList.c └── SolarisProcessList.h ├── test_spec.lua └── unsupported ├── Battery.c ├── Battery.h ├── Platform.c ├── Platform.h ├── UnsupportedCRT.c ├── UnsupportedCRT.h ├── UnsupportedProcess.c ├── UnsupportedProcess.h ├── UnsupportedProcessList.c └── UnsupportedProcessList.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Hisham H. Muhammad 2 | -------------------------------------------------------------------------------- /Action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Action.c -------------------------------------------------------------------------------- /Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Action.h -------------------------------------------------------------------------------- /Affinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Affinity.c -------------------------------------------------------------------------------- /Affinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Affinity.h -------------------------------------------------------------------------------- /AffinityPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/AffinityPanel.c -------------------------------------------------------------------------------- /AffinityPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/AffinityPanel.h -------------------------------------------------------------------------------- /AvailableColumnsPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/AvailableColumnsPanel.c -------------------------------------------------------------------------------- /AvailableColumnsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/AvailableColumnsPanel.h -------------------------------------------------------------------------------- /AvailableMetersPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/AvailableMetersPanel.c -------------------------------------------------------------------------------- /AvailableMetersPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/AvailableMetersPanel.h -------------------------------------------------------------------------------- /BatteryMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/BatteryMeter.c -------------------------------------------------------------------------------- /BatteryMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/BatteryMeter.h -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/COPYING -------------------------------------------------------------------------------- /CPUMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/CPUMeter.c -------------------------------------------------------------------------------- /CPUMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/CPUMeter.h -------------------------------------------------------------------------------- /CRT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/CRT.c -------------------------------------------------------------------------------- /CRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/CRT.h -------------------------------------------------------------------------------- /CategoriesPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/CategoriesPanel.c -------------------------------------------------------------------------------- /CategoriesPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/CategoriesPanel.h -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ChangeLog -------------------------------------------------------------------------------- /CheckItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/CheckItem.c -------------------------------------------------------------------------------- /CheckItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/CheckItem.h -------------------------------------------------------------------------------- /ClockMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ClockMeter.c -------------------------------------------------------------------------------- /ClockMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ClockMeter.h -------------------------------------------------------------------------------- /ColorsPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ColorsPanel.c -------------------------------------------------------------------------------- /ColorsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ColorsPanel.h -------------------------------------------------------------------------------- /ColumnsPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ColumnsPanel.c -------------------------------------------------------------------------------- /ColumnsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ColumnsPanel.h -------------------------------------------------------------------------------- /DisplayOptionsPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/DisplayOptionsPanel.c -------------------------------------------------------------------------------- /DisplayOptionsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/DisplayOptionsPanel.h -------------------------------------------------------------------------------- /EnvScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/EnvScreen.c -------------------------------------------------------------------------------- /EnvScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/EnvScreen.h -------------------------------------------------------------------------------- /FunctionBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/FunctionBar.c -------------------------------------------------------------------------------- /FunctionBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/FunctionBar.h -------------------------------------------------------------------------------- /Hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Hashtable.c -------------------------------------------------------------------------------- /Hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Hashtable.h -------------------------------------------------------------------------------- /Header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Header.c -------------------------------------------------------------------------------- /Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Header.h -------------------------------------------------------------------------------- /HostnameMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/HostnameMeter.c -------------------------------------------------------------------------------- /HostnameMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/HostnameMeter.h -------------------------------------------------------------------------------- /IncSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/IncSet.c -------------------------------------------------------------------------------- /IncSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/IncSet.h -------------------------------------------------------------------------------- /InfoScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/InfoScreen.c -------------------------------------------------------------------------------- /InfoScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/InfoScreen.h -------------------------------------------------------------------------------- /ListItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ListItem.c -------------------------------------------------------------------------------- /ListItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ListItem.h -------------------------------------------------------------------------------- /LoadAverageMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/LoadAverageMeter.c -------------------------------------------------------------------------------- /LoadAverageMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/LoadAverageMeter.h -------------------------------------------------------------------------------- /MainPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/MainPanel.c -------------------------------------------------------------------------------- /MainPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/MainPanel.h -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Makefile.am -------------------------------------------------------------------------------- /MemoryMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/MemoryMeter.c -------------------------------------------------------------------------------- /MemoryMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/MemoryMeter.h -------------------------------------------------------------------------------- /Meter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Meter.c -------------------------------------------------------------------------------- /Meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Meter.h -------------------------------------------------------------------------------- /MetersPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/MetersPanel.c -------------------------------------------------------------------------------- /MetersPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/MetersPanel.h -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/NEWS -------------------------------------------------------------------------------- /Object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Object.c -------------------------------------------------------------------------------- /Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Object.h -------------------------------------------------------------------------------- /OpenFilesScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/OpenFilesScreen.c -------------------------------------------------------------------------------- /OpenFilesScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/OpenFilesScreen.h -------------------------------------------------------------------------------- /Panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Panel.c -------------------------------------------------------------------------------- /Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Panel.h -------------------------------------------------------------------------------- /Process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Process.c -------------------------------------------------------------------------------- /Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Process.h -------------------------------------------------------------------------------- /ProcessList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ProcessList.c -------------------------------------------------------------------------------- /ProcessList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ProcessList.h -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /RichString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/RichString.c -------------------------------------------------------------------------------- /RichString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/RichString.h -------------------------------------------------------------------------------- /ScreenManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ScreenManager.c -------------------------------------------------------------------------------- /ScreenManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/ScreenManager.h -------------------------------------------------------------------------------- /Settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Settings.c -------------------------------------------------------------------------------- /Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Settings.h -------------------------------------------------------------------------------- /SignalsPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/SignalsPanel.c -------------------------------------------------------------------------------- /SignalsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/SignalsPanel.h -------------------------------------------------------------------------------- /StringUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/StringUtils.c -------------------------------------------------------------------------------- /StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/StringUtils.h -------------------------------------------------------------------------------- /SwapMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/SwapMeter.c -------------------------------------------------------------------------------- /SwapMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/SwapMeter.h -------------------------------------------------------------------------------- /TESTPLAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/TESTPLAN -------------------------------------------------------------------------------- /TasksMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/TasksMeter.c -------------------------------------------------------------------------------- /TasksMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/TasksMeter.h -------------------------------------------------------------------------------- /TraceScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/TraceScreen.c -------------------------------------------------------------------------------- /TraceScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/TraceScreen.h -------------------------------------------------------------------------------- /UptimeMeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/UptimeMeter.c -------------------------------------------------------------------------------- /UptimeMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/UptimeMeter.h -------------------------------------------------------------------------------- /UsersTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/UsersTable.c -------------------------------------------------------------------------------- /UsersTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/UsersTable.h -------------------------------------------------------------------------------- /Vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Vector.c -------------------------------------------------------------------------------- /Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/Vector.h -------------------------------------------------------------------------------- /XAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/XAlloc.c -------------------------------------------------------------------------------- /XAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/XAlloc.h -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mkdir -p m4 3 | autoreconf --install --force 4 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/configure.ac -------------------------------------------------------------------------------- /darwin/Battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/darwin/Battery.c -------------------------------------------------------------------------------- /darwin/Battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/darwin/Battery.h -------------------------------------------------------------------------------- /darwin/DarwinCRT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/darwin/DarwinCRT.c -------------------------------------------------------------------------------- /darwin/DarwinCRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/darwin/DarwinCRT.h -------------------------------------------------------------------------------- /darwin/DarwinProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/darwin/DarwinProcess.c -------------------------------------------------------------------------------- /darwin/DarwinProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/darwin/DarwinProcess.h -------------------------------------------------------------------------------- /darwin/DarwinProcessList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/darwin/DarwinProcessList.c -------------------------------------------------------------------------------- /darwin/DarwinProcessList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/darwin/DarwinProcessList.h -------------------------------------------------------------------------------- /darwin/Platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/darwin/Platform.c -------------------------------------------------------------------------------- /darwin/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/darwin/Platform.h -------------------------------------------------------------------------------- /dragonflybsd/Battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/dragonflybsd/Battery.c -------------------------------------------------------------------------------- /dragonflybsd/Battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/dragonflybsd/Battery.h -------------------------------------------------------------------------------- /dragonflybsd/DragonFlyBSDCRT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/dragonflybsd/DragonFlyBSDCRT.c -------------------------------------------------------------------------------- /dragonflybsd/DragonFlyBSDCRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/dragonflybsd/DragonFlyBSDCRT.h -------------------------------------------------------------------------------- /dragonflybsd/DragonFlyBSDProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/dragonflybsd/DragonFlyBSDProcess.c -------------------------------------------------------------------------------- /dragonflybsd/DragonFlyBSDProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/dragonflybsd/DragonFlyBSDProcess.h -------------------------------------------------------------------------------- /dragonflybsd/DragonFlyBSDProcessList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/dragonflybsd/DragonFlyBSDProcessList.c -------------------------------------------------------------------------------- /dragonflybsd/DragonFlyBSDProcessList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/dragonflybsd/DragonFlyBSDProcessList.h -------------------------------------------------------------------------------- /dragonflybsd/Platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/dragonflybsd/Platform.c -------------------------------------------------------------------------------- /dragonflybsd/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/dragonflybsd/Platform.h -------------------------------------------------------------------------------- /freebsd/Battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/freebsd/Battery.c -------------------------------------------------------------------------------- /freebsd/Battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/freebsd/Battery.h -------------------------------------------------------------------------------- /freebsd/FreeBSDCRT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/freebsd/FreeBSDCRT.c -------------------------------------------------------------------------------- /freebsd/FreeBSDCRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/freebsd/FreeBSDCRT.h -------------------------------------------------------------------------------- /freebsd/FreeBSDProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/freebsd/FreeBSDProcess.c -------------------------------------------------------------------------------- /freebsd/FreeBSDProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/freebsd/FreeBSDProcess.h -------------------------------------------------------------------------------- /freebsd/FreeBSDProcessList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/freebsd/FreeBSDProcessList.c -------------------------------------------------------------------------------- /freebsd/FreeBSDProcessList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/freebsd/FreeBSDProcessList.h -------------------------------------------------------------------------------- /freebsd/Platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/freebsd/Platform.c -------------------------------------------------------------------------------- /freebsd/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/freebsd/Platform.h -------------------------------------------------------------------------------- /htop.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/htop.1.in -------------------------------------------------------------------------------- /htop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/htop.c -------------------------------------------------------------------------------- /htop.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/htop.desktop -------------------------------------------------------------------------------- /htop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/htop.h -------------------------------------------------------------------------------- /htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/htop.png -------------------------------------------------------------------------------- /linux/Battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/Battery.c -------------------------------------------------------------------------------- /linux/Battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/Battery.h -------------------------------------------------------------------------------- /linux/IOPriority.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/IOPriority.c -------------------------------------------------------------------------------- /linux/IOPriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/IOPriority.h -------------------------------------------------------------------------------- /linux/IOPriorityPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/IOPriorityPanel.c -------------------------------------------------------------------------------- /linux/IOPriorityPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/IOPriorityPanel.h -------------------------------------------------------------------------------- /linux/LinuxCRT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/LinuxCRT.c -------------------------------------------------------------------------------- /linux/LinuxCRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/LinuxCRT.h -------------------------------------------------------------------------------- /linux/LinuxProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/LinuxProcess.c -------------------------------------------------------------------------------- /linux/LinuxProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/LinuxProcess.h -------------------------------------------------------------------------------- /linux/LinuxProcessList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/LinuxProcessList.c -------------------------------------------------------------------------------- /linux/LinuxProcessList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/LinuxProcessList.h -------------------------------------------------------------------------------- /linux/Platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/Platform.c -------------------------------------------------------------------------------- /linux/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/linux/Platform.h -------------------------------------------------------------------------------- /openbsd/Battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/openbsd/Battery.c -------------------------------------------------------------------------------- /openbsd/Battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/openbsd/Battery.h -------------------------------------------------------------------------------- /openbsd/OpenBSDCRT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/openbsd/OpenBSDCRT.c -------------------------------------------------------------------------------- /openbsd/OpenBSDCRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/openbsd/OpenBSDCRT.h -------------------------------------------------------------------------------- /openbsd/OpenBSDProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/openbsd/OpenBSDProcess.c -------------------------------------------------------------------------------- /openbsd/OpenBSDProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/openbsd/OpenBSDProcess.h -------------------------------------------------------------------------------- /openbsd/OpenBSDProcessList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/openbsd/OpenBSDProcessList.c -------------------------------------------------------------------------------- /openbsd/OpenBSDProcessList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/openbsd/OpenBSDProcessList.h -------------------------------------------------------------------------------- /openbsd/Platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/openbsd/Platform.c -------------------------------------------------------------------------------- /openbsd/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/openbsd/Platform.h -------------------------------------------------------------------------------- /scripts/MakeHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/scripts/MakeHeader.py -------------------------------------------------------------------------------- /solaris/Battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/solaris/Battery.c -------------------------------------------------------------------------------- /solaris/Battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/solaris/Battery.h -------------------------------------------------------------------------------- /solaris/Platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/solaris/Platform.c -------------------------------------------------------------------------------- /solaris/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/solaris/Platform.h -------------------------------------------------------------------------------- /solaris/SolarisCRT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/solaris/SolarisCRT.c -------------------------------------------------------------------------------- /solaris/SolarisCRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/solaris/SolarisCRT.h -------------------------------------------------------------------------------- /solaris/SolarisProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/solaris/SolarisProcess.c -------------------------------------------------------------------------------- /solaris/SolarisProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/solaris/SolarisProcess.h -------------------------------------------------------------------------------- /solaris/SolarisProcessList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/solaris/SolarisProcessList.c -------------------------------------------------------------------------------- /solaris/SolarisProcessList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/solaris/SolarisProcessList.h -------------------------------------------------------------------------------- /test_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/test_spec.lua -------------------------------------------------------------------------------- /unsupported/Battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/unsupported/Battery.c -------------------------------------------------------------------------------- /unsupported/Battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/unsupported/Battery.h -------------------------------------------------------------------------------- /unsupported/Platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/unsupported/Platform.c -------------------------------------------------------------------------------- /unsupported/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/unsupported/Platform.h -------------------------------------------------------------------------------- /unsupported/UnsupportedCRT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/unsupported/UnsupportedCRT.c -------------------------------------------------------------------------------- /unsupported/UnsupportedCRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/unsupported/UnsupportedCRT.h -------------------------------------------------------------------------------- /unsupported/UnsupportedProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/unsupported/UnsupportedProcess.c -------------------------------------------------------------------------------- /unsupported/UnsupportedProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/unsupported/UnsupportedProcess.h -------------------------------------------------------------------------------- /unsupported/UnsupportedProcessList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/unsupported/UnsupportedProcessList.c -------------------------------------------------------------------------------- /unsupported/UnsupportedProcessList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/htop/HEAD/unsupported/UnsupportedProcessList.h --------------------------------------------------------------------------------