SolarisProcessTable.h 645 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef HEADER_SolarisProcessTable
  2. #define HEADER_SolarisProcessTable
  3. /*
  4. htop - SolarisProcessTable.h
  5. (C) 2014 Hisham H. Muhammad
  6. (C) 2017,2018 Guy M. Broome
  7. Released under the GNU GPLv2+, see the COPYING file
  8. in the source distribution for its full text.
  9. */
  10. #include <kstat.h>
  11. #include <stdbool.h>
  12. #include <stdint.h>
  13. #include <sys/param.h>
  14. #include <sys/uio.h>
  15. #include <sys/resource.h>
  16. #include <sys/sysconf.h>
  17. #include <sys/sysinfo.h>
  18. #include "Hashtable.h"
  19. #include "ProcessTable.h"
  20. #include "UsersTable.h"
  21. #include "solaris/SolarisProcess.h"
  22. typedef struct SolarisProcessTable_ {
  23. ProcessTable super;
  24. } SolarisProcessTable;
  25. #endif