DarwinProcessTable.h 426 B

12345678910111213141516171819202122
  1. #ifndef HEADER_DarwinProcessTable
  2. #define HEADER_DarwinProcessTable
  3. /*
  4. htop - DarwinProcessTable.h
  5. (C) 2014 Hisham H. Muhammad
  6. Released under the GNU GPLv2+, see the COPYING file
  7. in the source distribution for its full text.
  8. */
  9. #include <mach/mach_host.h>
  10. #include <sys/sysctl.h>
  11. #include "ProcessTable.h"
  12. typedef struct DarwinProcessTable_ {
  13. ProcessTable super;
  14. uint64_t global_diff;
  15. } DarwinProcessTable;
  16. #endif